@@ -15,6 +15,7 @@ mod hashlib;
1515mod imp;
1616pub mod io;
1717mod itertools;
18+ mod json;
1819#[ cfg( feature = "rustpython-parser" ) ]
1920mod keyword;
2021mod marshal;
@@ -71,14 +72,15 @@ pub fn get_module_inits() -> HashMap<String, StdlibInitFunc> {
7172 let mut modules = hashmap ! {
7273 "array" . to_owned( ) => Box :: new( array:: make_module) as StdlibInitFunc ,
7374 "binascii" . to_owned( ) => Box :: new( binascii:: make_module) ,
74- "dis" . to_owned( ) => Box :: new( dis:: make_module) ,
7575 "_collections" . to_owned( ) => Box :: new( collections:: make_module) ,
7676 "_csv" . to_owned( ) => Box :: new( csv:: make_module) ,
77- "_functools " . to_owned( ) => Box :: new( functools :: make_module) ,
77+ "dis " . to_owned( ) => Box :: new( dis :: make_module) ,
7878 "errno" . to_owned( ) => Box :: new( errno:: make_module) ,
79+ "_functools" . to_owned( ) => Box :: new( functools:: make_module) ,
7980 "hashlib" . to_owned( ) => Box :: new( hashlib:: make_module) ,
8081 "itertools" . to_owned( ) => Box :: new( itertools:: make_module) ,
8182 "_io" . to_owned( ) => Box :: new( io:: make_module) ,
83+ "_json" . to_owned( ) => Box :: new( json:: make_module) ,
8284 "marshal" . to_owned( ) => Box :: new( marshal:: make_module) ,
8385 "math" . to_owned( ) => Box :: new( math:: make_module) ,
8486 "_operator" . to_owned( ) => Box :: new( operator:: make_module) ,
0 commit comments