8000 Add 3.12 typing features to the compiler by dchiquito · Pull Request #5302 · RustPython/RustPython · GitHub
[go: up one dir, main page]

Skip to content

Add 3.12 typing features to the compiler #5302

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
May 10, 2024
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 to default imports
  • Loading branch information
dchiquito committed May 7, 2024
commit 55f916c48d710dc956efd727b9e69f88275116eb
1 change: 1 addition & 0 deletions vm/src/vm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ impl VirtualMachine {
stdlib::sys::init_module(self, &self.sys_module, &self.builtins);

let mut essential_init = || -> PyResult {
import::import_builtin(self, "_typing")?;
#[cfg(not(target_arch = "wasm32"))]
import::import_builtin(self, "_signal")?;
#[cfg(any(feature = "parser", feature = "compiler"))]
Expand Down
0