[red-knot] Add type inference for basic for loops (#13195)

This commit is contained in:
Alex Waygood 2024-09-04 11:19:50 +01:00 committed by GitHub
parent 57289099bb
commit 46a457318d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 331 additions and 131 deletions

View file

@ -10,7 +10,6 @@ pub use python_version::PythonVersion;
pub use semantic_model::{HasTy, SemanticModel};
pub mod ast_node_ref;
mod builtins;
mod db;
mod module_name;
mod module_resolver;
@ -20,6 +19,7 @@ mod python_version;
pub mod semantic_index;
mod semantic_model;
pub(crate) mod site_packages;
mod stdlib;
pub mod types;
type FxOrderSet<V> = ordermap::set::OrderSet<V, BuildHasherDefault<FxHasher>>;