Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add _typing module to stdlib
  • Loading branch information
dchiquito committed May 7, 2024
commit d6261f59a274d3b2f90bbd63ad9101b723cbc6b9
2 changes: 2 additions & 0 deletions vm/src/stdlib/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ mod sysconfigdata;
#[cfg(feature = "threading")]
pub mod thread;
pub mod time;
pub mod typing;
pub mod warnings;
mod weakref;

Expand Down Expand Up @@ -85,6 +86,7 @@ pub fn get_module_inits() -> StdlibMap {
"_sre" => sre::make_module,
"_string" => string::make_module,
"time" => time::make_module,
"_typing" => typing::make_module,
"_weakref" => weakref::make_module,
"_imp" => imp::make_module,
"_warnings" => warnings::make_module,
Expand Down