-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[red-knot] Respect typeshed's
VERSIONS
file when resolving stdlib m…
…odules (#12141)
- Loading branch information
1 parent
8198723
commit a62a432
Showing
17 changed files
with
1,991 additions
and
581 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
mod db; | ||
mod module; | ||
mod module_name; | ||
mod path; | ||
mod resolver; | ||
mod state; | ||
mod supported_py_version; | ||
mod typeshed; | ||
|
||
pub use db::{Db, Jar}; | ||
pub use module::{Module, ModuleKind, ModuleName}; | ||
pub use resolver::{resolve_module, set_module_resolution_settings, ModuleResolutionSettings}; | ||
pub use typeshed::versions::TypeshedVersions; | ||
pub use module::{Module, ModuleKind}; | ||
pub use module_name::ModuleName; | ||
pub use resolver::{resolve_module, set_module_resolution_settings, RawModuleResolutionSettings}; | ||
pub use supported_py_version::TargetVersion; | ||
pub use typeshed::{TypeshedVersionsParseError, TypeshedVersionsParseErrorKind}; |
Oops, something went wrong.