type-python 0.1.1__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {type_python-0.1.1 → type_python-0.2.0}/Cargo.lock +27 -12
- {type_python-0.1.1 → type_python-0.2.0}/Cargo.toml +2 -1
- {type_python-0.1.1 → type_python-0.2.0}/PKG-INFO +1 -1
- {type_python-0.1.1 → type_python-0.2.0}/README.md +5 -5
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/Cargo.toml +2 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/benches/checker.rs +2 -0
- type_python-0.2.0/crates/typepython_checking/proptest-regressions/tests/property_based.txt +9 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/lib.rs +144 -4
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/tests/advanced.rs +12 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/tests/mod.rs +127 -0
- type_python-0.2.0/crates/typepython_checking/src/tests/property_based.rs +214 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_system/contextual.rs +208 -3
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_system/flow.rs +2 -24
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/Cargo.toml +2 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/migration.rs +3 -3
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/pipeline/loading.rs +5 -5
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/pipeline.rs +53 -27
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/tests/migration.rs +12 -6
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/tests/mod.rs +8 -4
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/tests/pipeline.rs +221 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/tests/verification.rs +366 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/verification.rs +376 -14
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_config/Cargo.toml +1 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_config/src/lib.rs +175 -20
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/runtime.rs +41 -10
- type_python-0.2.0/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_native_pep695_surface.snap +10 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/stubs.rs +11 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/tests.rs +69 -5
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_incremental/Cargo.toml +1 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_incremental/src/lib.rs +187 -7
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/Cargo.toml +1 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/core.rs +670 -206
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/lib.rs +3 -0
- type_python-0.2.0/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_fallback_defaults_312.snap +11 -0
- type_python-0.2.0/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_generics_313.snap +11 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/tests.rs +240 -10
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/analysis.rs +1 -1
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/tests.rs +1 -1
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/workspace/lifecycle.rs +17 -5
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_project/src/lib.rs +68 -9
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/Cargo.toml +1 -0
- type_python-0.2.0/crates/typepython_syntax/src/lib.rs +72 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/ast_backed.rs +15 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/tests.rs +20 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/formatting.rs +25 -0
- type_python-0.2.0/crates/typepython_target/Cargo.toml +15 -0
- type_python-0.2.0/crates/typepython_target/src/lib.rs +221 -0
- {type_python-0.1.1 → type_python-0.2.0}/pyproject.toml +1 -1
- type_python-0.2.0/stdlib/BASELINE.toml +23 -0
- {type_python-0.1.1 → type_python-0.2.0}/type_python.egg-info/PKG-INFO +1 -1
- {type_python-0.1.1 → type_python-0.2.0}/type_python.egg-info/SOURCES.txt +10 -1
- type_python-0.2.0/typepython/__init__.py +13 -0
- type_python-0.2.0/typepython/annotation_compat.py +142 -0
- type_python-0.1.1/crates/typepython_syntax/src/lib.rs +0 -18
- type_python-0.1.1/typepython/__init__.py +0 -5
- {type_python-0.1.1 → type_python-0.2.0}/LICENSE +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/MANIFEST.in +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/README-PyPI.md +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_binding/Cargo.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_binding/src/binding_impl.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_binding/src/lib.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_binding/src/tests.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_binding/src/types.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/assignments.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/calls/call_diagnostics.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/calls/callable_resolution.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/calls/dataclass.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/calls/member_access.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/calls/mod.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/calls/reporting.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/declaration_semantics.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/declarations.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/generic_solver.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/semantic.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/stubs.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/tests/advanced_generics.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/tests/calls.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/tests/semantic.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/tests/typed_dict.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_core.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_system/assignability.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_system/expressions.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_system/imports.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_system/members.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_checking/src/type_system/mod.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/scripts/runtime_importability.py +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/cli.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/discovery.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/main.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/pipeline/stubs.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_cli/src/tests/consistency.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_diagnostics/Cargo.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_diagnostics/src/lib.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/Cargo.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/lib.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/planning.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_migration_stub.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_shadow_stub.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_async_function.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_basic_module.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_class_with_methods.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_overloaded_function.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_graph/Cargo.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_graph/benches/graph.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_graph/src/lib.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/benches/lower.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_combined_typepython_constructs.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_imports_312.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_qualified_names_310.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class_with_bases.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_class_and_function.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_interface.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_typealias.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface_with_bases.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_lambda_annotation.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_nested_unsafe_in_function.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_overload_def.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_paramspec.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_passthrough_python_source.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class_with_bases.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_type_param_with_bounds_constraints_defaults.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typealias.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typeddict_keyword_stripping.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_unsafe_block.snap +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lowering/src/typeddict.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/Cargo.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/benches/incremental.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/formatting.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/lib.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/analysis/code_actions.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/analysis/mod.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/analysis/symbols.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/analysis/text.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/analysis/typing.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/mod.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/protocol.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/signature_help.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/sources.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/requests/symbols.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/scheduler.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/server.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/workspace/discovery.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/workspace/mod.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_lsp/src/workspace/state.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_project/Cargo.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/benches/parse.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/proptest-regressions/lib.txt +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/calls.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/control_flow.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/expr_metadata.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/guards.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/lambdas.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction/syntax_extensions.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/extraction.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/metadata_collectors.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/mod.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/parsing.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/surface.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/crates/typepython_syntax/src/syntax_parts/type_expr.rs +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/rust-toolchain.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/rustfmt.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/setup.cfg +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/setup.py +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/VERSIONS +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/__future__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/__main__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_ast.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_asyncio.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_bisect.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_blake2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_bootlocale.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_bz2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_codecs.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_collections_abc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_compat_pickle.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_compression.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_contextvars.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_csv.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_ctypes.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_curses.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_curses_panel.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_dbm.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_decimal.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_frozen_importlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_frozen_importlib_external.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_gdbm.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_hashlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_heapq.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_imp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_interpchannels.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_interpqueues.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_interpreters.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_io.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_json.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_locale.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_lsprof.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_lzma.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_markupbase.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_msi.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_multibytecodec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_operator.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_osx_support.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_pickle.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_posixsubprocess.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_py_abc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_pydecimal.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_queue.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_random.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_sitebuiltins.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_socket.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_sqlite3.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_ssl.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_stat.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_struct.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_thread.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_threading_local.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_tkinter.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_tracemalloc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_typeshed/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_typeshed/dbapi.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_typeshed/importlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_typeshed/wsgi.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_typeshed/xml.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_warnings.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_weakref.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_weakrefset.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_winapi.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/_zstd.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/abc/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/abc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/aifc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/annotationlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/antigravity.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/argparse.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/array.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ast.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asynchat.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/base_events.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/base_futures.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/base_subprocess.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/base_tasks.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/constants.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/coroutines.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/events.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/exceptions.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/format_helpers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/futures.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/graph.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/locks.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/log.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/mixins.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/proactor_events.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/protocols.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/queues.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/runners.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/selector_events.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/sslproto.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/staggered.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/streams.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/subprocess.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/taskgroups.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/tasks.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/threads.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/timeouts.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/tools.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/transports.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/trsock.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/unix_events.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/windows_events.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncio/windows_utils.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/asyncore.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/atexit.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/audioop.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/base64.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/bdb.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/binascii.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/binhex.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/bisect.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/builtins.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/bz2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/cProfile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/calendar.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/cgi.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/cgitb.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/chunk.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/cmath.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/cmd.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/code.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/codecs.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/codeop.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/collections/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/collections/abc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/colorsys.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compileall.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/_common/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/_common/_streams.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/bz2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/gzip.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/lzma.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/zlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/zstd/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/compression/zstd/_zstdfile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/futures/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/futures/_base.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/futures/interpreter.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/futures/process.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/futures/thread.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/interpreters/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/interpreters/_crossinterp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/concurrent/interpreters/_queues.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/configparser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/contextlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/contextvars.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/copy.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/copyreg.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/crypt.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/csv.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/_endian.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/macholib/framework.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ctypes/wintypes.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/curses/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/curses/ascii.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/curses/has_key.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/curses/panel.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/curses/textpad.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/dataclasses.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/datetime.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/dbm/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/dbm/dumb.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/dbm/gnu.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/dbm/ndbm.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/dbm/sqlite3.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/decimal.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/difflib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/dis.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/_msvccompiler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/archive_util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/bcppcompiler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/ccompiler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/cmd.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/bdist.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/build.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/build_clib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/build_ext.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/build_py.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/build_scripts.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/check.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/clean.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/config.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/install.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/install_data.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/install_headers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/install_lib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/install_scripts.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/register.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/sdist.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/command/upload.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/config.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/core.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/debug.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/dep_util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/dir_util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/dist.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/errors.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/extension.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/fancy_getopt.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/file_util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/filelist.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/log.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/msvccompiler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/spawn.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/sysconfig.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/text_file.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/unixccompiler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/distutils/version.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/doctest.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/_header_value_parser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/_policybase.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/base64mime.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/charset.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/contentmanager.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/encoders.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/errors.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/feedparser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/generator.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/header.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/headerregistry.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/iterators.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/message.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/application.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/audio.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/base.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/image.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/message.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/multipart.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/nonmultipart.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/mime/text.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/parser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/policy.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/quoprimime.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/email/utils.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/aliases.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/ascii.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/base64_codec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/big5.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/big5hkscs.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/bz2_codec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/charmap.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp037.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1006.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1026.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1125.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1140.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1250.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1251.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1252.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1253.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1254.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1255.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1256.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1257.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp1258.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp273.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp424.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp437.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp500.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp720.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp737.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp775.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp850.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp852.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp855.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp856.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp857.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp858.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp860.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp861.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp862.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp863.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp864.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp865.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp866.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp869.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp874.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp875.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp932.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp949.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/cp950.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/euc_jp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/euc_kr.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/gb18030.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/gb2312.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/gbk.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/hex_codec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/hp_roman8.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/hz.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/idna.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso2022_jp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso2022_kr.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_1.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_10.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_11.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_13.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_14.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_15.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_16.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_3.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_4.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_5.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_6.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_7.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_8.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/iso8859_9.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/johab.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/koi8_r.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/koi8_t.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/koi8_u.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/kz1048.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/latin_1.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_arabic.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_croatian.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_farsi.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_greek.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_iceland.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_latin2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_roman.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_romanian.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mac_turkish.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/mbcs.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/oem.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/palmos.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/ptcp154.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/punycode.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/quopri_codec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/rot_13.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/shift_jis.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/tis_620.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/undefined.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/unicode_escape.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_16.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_16_be.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_16_le.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_32.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_32_be.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_32_le.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_7.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_8.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/utf_8_sig.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/uu_codec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/encodings/zlib_codec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ensurepip/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/enum/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/enum.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/errno.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/faulthandler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/fcntl.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/filecmp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/fileinput.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/fnmatch.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/formatter.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/fractions.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ftplib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/functools.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/gc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/genericpath.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/getopt.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/getpass.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/gettext.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/glob.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/graphlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/grp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/gzip.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/hashlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/heapq.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/hmac.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/html/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/html/entities.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/html/parser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/http/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/http/client.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/http/cookiejar.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/http/cookies.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/http/server.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/imaplib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/imghdr.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/imp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/_abc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/_bootstrap.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/abc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/machinery.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/metadata/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/metadata/_meta.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/readers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/resources/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/resources/_common.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/resources/_functional.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/resources/abc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/resources/readers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/resources/simple.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/simple.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/importlib/util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/inspect.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/io.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ipaddress.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/itertools.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/json/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/json/decoder.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/json/encoder.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/json/scanner.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/json/tool.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/keyword.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixer_base.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/main.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pygram.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/pytree.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lib2to3/refactor.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/linecache.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/locale.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/logging/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/logging/config.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/logging/handlers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/lzma.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/mailbox.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/mailcap.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/marshal.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/math.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/mimetypes.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/mmap.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/modulefinder.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/msilib/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/msilib/schema.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/msilib/sequence.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/msilib/text.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/msvcrt.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/connection.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/context.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/forkserver.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/heap.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/managers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/pool.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/process.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/queues.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/reduction.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/spawn.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/synchronize.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/multiprocessing/util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/netrc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/nis.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/nntplib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/nt.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ntpath.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/nturl2path.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/numbers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/numpy/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/numpy/linalg/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/numpy/typing/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/opcode.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/operator.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/optparse.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/os/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/os/path.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ossaudiodev.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pandas/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/parser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pathlib/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pathlib/types.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pdb.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pickle.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pickletools.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pipes.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pkgutil.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/platform.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/plistlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/poplib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/posix.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/posixpath.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pprint.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/profile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pstats.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pty.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pwd.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/py_compile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pyclbr.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pydoc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pydoc_data/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pydoc_data/topics.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pyexpat/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pyexpat/errors.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/pyexpat/model.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/queue.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/quopri.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/random.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/re.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/readline.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/reprlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/requests/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/requests/sessions.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/resource.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/rlcompleter.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/runpy.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sched.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/secrets.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/select.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/selectors.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/shelve.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/shlex.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/shutil.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/signal.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/site.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/smtpd.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/smtplib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sndhdr.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/socket.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/socketserver.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/spwd.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sqlite3/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sqlite3/dbapi2.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sqlite3/dump.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sre_compile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sre_constants.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sre_parse.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/ssl.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/stat.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/statistics.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/string/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/string/templatelib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/stringprep.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/struct.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/subprocess.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sunau.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/symbol.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/symtable.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sys/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sys/_monitoring.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/sysconfig.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/syslog.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tabnanny.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tarfile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/telnetlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tempfile.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/termios.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/textwrap.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/this.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/threading.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/time.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/timeit.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/colorchooser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/commondialog.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/constants.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/dialog.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/dnd.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/filedialog.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/font.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/messagebox.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/scrolledtext.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/simpledialog.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/tix.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tkinter/ttk.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/token.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tokenize.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tomllib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/torch/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/torch/nn/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/trace.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/traceback.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tracemalloc.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/tty.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/turtle.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/types.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/typing.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/typing_extensions.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unicodedata.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/_log.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/async_case.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/case.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/loader.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/main.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/mock.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/result.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/runner.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/signals.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/suite.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/unittest/util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/urllib/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/urllib/error.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/urllib/parse.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/urllib/request.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/urllib/response.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/urllib/robotparser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/uu.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/uuid.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/venv/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/warnings.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wave.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/weakref.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/webbrowser.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/winreg.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/winsound.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wsgiref/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wsgiref/handlers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wsgiref/headers.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wsgiref/simple_server.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wsgiref/types.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wsgiref/util.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/wsgiref/validate.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xdrlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/domreg.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/minicompat.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/minidom.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/pulldom.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/etree/ElementPath.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/etree/ElementTree.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/etree/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/etree/cElementTree.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/parsers/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/parsers/expat/model.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/sax/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/sax/_exceptions.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/sax/expatreader.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/sax/handler.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/sax/saxutils.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xml/sax/xmlreader.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xmlrpc/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xmlrpc/client.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xmlrpc/server.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/xxlimited.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zipapp.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zipfile/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zipfile/_path/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zipfile/_path/glob.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zipimport.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zlib.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zoneinfo/__init__.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zoneinfo/_common.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/templates/src/app/__init__.tpy +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/templates/typepython.toml +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/type_python.egg-info/dependency_links.txt +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/type_python.egg-info/entry_points.txt +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/type_python.egg-info/top_level.txt +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/typepython/__main__.py +0 -0
- {type_python-0.1.1 → type_python-0.2.0}/typepython/_runner.py +0 -0
|
@@ -1779,7 +1779,7 @@ dependencies = [
|
|
|
1779
1779
|
|
|
1780
1780
|
[[package]]
|
|
1781
1781
|
name = "typepython-binding"
|
|
1782
|
-
version = "0.
|
|
1782
|
+
version = "0.2.0"
|
|
1783
1783
|
dependencies = [
|
|
1784
1784
|
"typepython-diagnostics",
|
|
1785
1785
|
"typepython-syntax",
|
|
@@ -1787,20 +1787,22 @@ dependencies = [
|
|
|
1787
1787
|
|
|
1788
1788
|
[[package]]
|
|
1789
1789
|
name = "typepython-checking"
|
|
1790
|
-
version = "0.
|
|
1790
|
+
version = "0.2.0"
|
|
1791
1791
|
dependencies = [
|
|
1792
1792
|
"criterion",
|
|
1793
|
+
"proptest",
|
|
1793
1794
|
"typepython-binding",
|
|
1794
1795
|
"typepython-config",
|
|
1795
1796
|
"typepython-diagnostics",
|
|
1796
1797
|
"typepython-graph",
|
|
1797
1798
|
"typepython-incremental",
|
|
1798
1799
|
"typepython-syntax",
|
|
1800
|
+
"typepython-target",
|
|
1799
1801
|
]
|
|
1800
1802
|
|
|
1801
1803
|
[[package]]
|
|
1802
1804
|
name = "typepython-cli"
|
|
1803
|
-
version = "0.
|
|
1805
|
+
version = "0.2.0"
|
|
1804
1806
|
dependencies = [
|
|
1805
1807
|
"anyhow",
|
|
1806
1808
|
"clap",
|
|
@@ -1813,6 +1815,7 @@ dependencies = [
|
|
|
1813
1815
|
"serde",
|
|
1814
1816
|
"serde_json",
|
|
1815
1817
|
"tar",
|
|
1818
|
+
"toml",
|
|
1816
1819
|
"tracing",
|
|
1817
1820
|
"tracing-subscriber",
|
|
1818
1821
|
"typepython-binding",
|
|
@@ -1826,21 +1829,23 @@ dependencies = [
|
|
|
1826
1829
|
"typepython-lsp",
|
|
1827
1830
|
"typepython-project",
|
|
1828
1831
|
"typepython-syntax",
|
|
1832
|
+
"typepython-target",
|
|
1829
1833
|
"zip",
|
|
1830
1834
|
]
|
|
1831
1835
|
|
|
1832
1836
|
[[package]]
|
|
1833
1837
|
name = "typepython-config"
|
|
1834
|
-
version = "0.
|
|
1838
|
+
version = "0.2.0"
|
|
1835
1839
|
dependencies = [
|
|
1836
1840
|
"serde",
|
|
1837
1841
|
"thiserror",
|
|
1838
1842
|
"toml",
|
|
1843
|
+
"typepython-target",
|
|
1839
1844
|
]
|
|
1840
1845
|
|
|
1841
1846
|
[[package]]
|
|
1842
1847
|
name = "typepython-diagnostics"
|
|
1843
|
-
version = "0.
|
|
1848
|
+
version = "0.2.0"
|
|
1844
1849
|
dependencies = [
|
|
1845
1850
|
"serde",
|
|
1846
1851
|
"serde_json",
|
|
@@ -1848,7 +1853,7 @@ dependencies = [
|
|
|
1848
1853
|
|
|
1849
1854
|
[[package]]
|
|
1850
1855
|
name = "typepython-emit"
|
|
1851
|
-
version = "0.
|
|
1856
|
+
version = "0.2.0"
|
|
1852
1857
|
dependencies = [
|
|
1853
1858
|
"insta",
|
|
1854
1859
|
"littrs-ruff-python-ast",
|
|
@@ -1861,7 +1866,7 @@ dependencies = [
|
|
|
1861
1866
|
|
|
1862
1867
|
[[package]]
|
|
1863
1868
|
name = "typepython-graph"
|
|
1864
|
-
version = "0.
|
|
1869
|
+
version = "0.2.0"
|
|
1865
1870
|
dependencies = [
|
|
1866
1871
|
"criterion",
|
|
1867
1872
|
"typepython-binding",
|
|
@@ -1870,18 +1875,19 @@ dependencies = [
|
|
|
1870
1875
|
|
|
1871
1876
|
[[package]]
|
|
1872
1877
|
name = "typepython-incremental"
|
|
1873
|
-
version = "0.
|
|
1878
|
+
version = "0.2.0"
|
|
1874
1879
|
dependencies = [
|
|
1875
1880
|
"serde",
|
|
1876
1881
|
"serde_json",
|
|
1877
1882
|
"typepython-binding",
|
|
1878
1883
|
"typepython-graph",
|
|
1879
1884
|
"typepython-syntax",
|
|
1885
|
+
"typepython-target",
|
|
1880
1886
|
]
|
|
1881
1887
|
|
|
1882
1888
|
[[package]]
|
|
1883
1889
|
name = "typepython-lowering"
|
|
1884
|
-
version = "0.
|
|
1890
|
+
version = "0.2.0"
|
|
1885
1891
|
dependencies = [
|
|
1886
1892
|
"criterion",
|
|
1887
1893
|
"insta",
|
|
@@ -1891,11 +1897,12 @@ dependencies = [
|
|
|
1891
1897
|
"proptest",
|
|
1892
1898
|
"typepython-diagnostics",
|
|
1893
1899
|
"typepython-syntax",
|
|
1900
|
+
"typepython-target",
|
|
1894
1901
|
]
|
|
1895
1902
|
|
|
1896
1903
|
[[package]]
|
|
1897
1904
|
name = "typepython-lsp"
|
|
1898
|
-
version = "0.
|
|
1905
|
+
version = "0.2.0"
|
|
1899
1906
|
dependencies = [
|
|
1900
1907
|
"anyhow",
|
|
1901
1908
|
"criterion",
|
|
@@ -1917,7 +1924,7 @@ dependencies = [
|
|
|
1917
1924
|
|
|
1918
1925
|
[[package]]
|
|
1919
1926
|
name = "typepython-project"
|
|
1920
|
-
version = "0.
|
|
1927
|
+
version = "0.2.0"
|
|
1921
1928
|
dependencies = [
|
|
1922
1929
|
"anyhow",
|
|
1923
1930
|
"glob",
|
|
@@ -1931,7 +1938,7 @@ dependencies = [
|
|
|
1931
1938
|
|
|
1932
1939
|
[[package]]
|
|
1933
1940
|
name = "typepython-syntax"
|
|
1934
|
-
version = "0.
|
|
1941
|
+
version = "0.2.0"
|
|
1935
1942
|
dependencies = [
|
|
1936
1943
|
"criterion",
|
|
1937
1944
|
"littrs-ruff-python-ast",
|
|
@@ -1939,9 +1946,17 @@ dependencies = [
|
|
|
1939
1946
|
"littrs-ruff-text-size",
|
|
1940
1947
|
"proptest",
|
|
1941
1948
|
"serde",
|
|
1949
|
+
"toml",
|
|
1942
1950
|
"typepython-diagnostics",
|
|
1943
1951
|
]
|
|
1944
1952
|
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "typepython-target"
|
|
1955
|
+
version = "0.2.0"
|
|
1956
|
+
dependencies = [
|
|
1957
|
+
"serde",
|
|
1958
|
+
]
|
|
1959
|
+
|
|
1945
1960
|
[[package]]
|
|
1946
1961
|
name = "unarray"
|
|
1947
1962
|
version = "0.1.4"
|
|
@@ -12,6 +12,7 @@ members = [
|
|
|
12
12
|
"crates/typepython_lsp",
|
|
13
13
|
"crates/typepython_project",
|
|
14
14
|
"crates/typepython_syntax",
|
|
15
|
+
"crates/typepython_target",
|
|
15
16
|
]
|
|
16
17
|
resolver = "3"
|
|
17
18
|
|
|
@@ -20,7 +21,7 @@ authors = ["unadlib"]
|
|
|
20
21
|
edition = "2024"
|
|
21
22
|
license = "MIT"
|
|
22
23
|
rust-version = "1.85"
|
|
23
|
-
version = "0.
|
|
24
|
+
version = "0.2.0"
|
|
24
25
|
|
|
25
26
|
[workspace.dependencies]
|
|
26
27
|
anyhow = "1"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
**A statically-typed authoring language that compiles to standard Python.**
|
|
10
10
|
|
|
11
|
-
Write `.tpy` files with `interface`, `data class`, `sealed class`, inline generics, and strict null safety. The compiler emits standard `.py` + `.pyi` artifacts for Python 3.10-3.
|
|
11
|
+
Write `.tpy` files with `interface`, `data class`, `sealed class`, inline generics, and strict null safety. The compiler emits standard `.py` + `.pyi` artifacts for Python 3.10-3.14. Targets 3.10-3.12 default to a compatibility-oriented lowering path; targets 3.13+ default to native typing syntax when the runtime supports it. No custom runtime, no proprietary type forms.
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
@@ -19,7 +19,7 @@ pip install type-python
|
|
|
19
19
|
typepython --help
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
The Python package bridge supports Python 3.9+. Generated TypePython projects currently target Python 3.10
|
|
22
|
+
The Python package bridge supports Python 3.9+. Generated TypePython projects can currently target Python 3.10 through 3.14.
|
|
23
23
|
Published wheels are platform-specific because they bundle the Rust CLI binary. Supported releases publish prebuilt wheels for Windows AMD64, macOS x86_64, macOS arm64, and Linux x86_64, so those platforms can install and run TypePython without Rust. Other platforms fall back to the source distribution and require Rust + `cargo`.
|
|
24
24
|
The workspace MSRV is Rust 1.85. `./scripts/bootstrap-rust.sh` installs the pinned Rust 1.94.0 development toolchain used by CI.
|
|
25
25
|
|
|
@@ -71,7 +71,7 @@ The compiler outputs:
|
|
|
71
71
|
| `def first[T](xs: list[T]) -> T:` | Materialized `TypeVar` plus ordinary generic `def` |
|
|
72
72
|
| `unsafe: eval(expr)` | `if True: eval(expr)` |
|
|
73
73
|
|
|
74
|
-
Emitted `.py` and `.pyi` use standard Python typing constructs plus `typing_extensions` compatibility imports when needed for the configured target version. Downstream consumers never need the TypePython compiler or a TypePython-specific runtime.
|
|
74
|
+
Emitted `.py` and `.pyi` use standard Python typing constructs plus `typing_extensions` compatibility imports when needed for the configured target version. Targets 3.10-3.12 default to `emit.emit_style = "compat"`, while 3.13+ default to `emit.emit_style = "native"`. Downstream consumers never need the TypePython compiler or a TypePython-specific runtime.
|
|
75
75
|
|
|
76
76
|
## Why TypePython
|
|
77
77
|
|
|
@@ -107,7 +107,7 @@ TypePython is an authoring layer, not a replacement for external checkers. One i
|
|
|
107
107
|
|
|
108
108
|
## Features
|
|
109
109
|
|
|
110
|
-
- **Compiles to Python** -- `.tpy` emits standard `.py` + `.pyi` for target Python 3.10-3.
|
|
110
|
+
- **Compiles to Python** -- `.tpy` emits standard `.py` + `.pyi` for target Python 3.10-3.14, with compat/native emit styles chosen by target or overridden explicitly ([syntax guide](docs/syntax-guide.md))
|
|
111
111
|
- **Rich type system** -- `unknown`, `dynamic`, `Never`, strict nulls, sealed exhaustiveness, generic defaults, TypeVarTuple ([type system](docs/type-system.md))
|
|
112
112
|
- **Syntax extensions** -- `interface`, `data class`, `sealed class`, `overload def`, `typealias`, `unsafe:`, inline type parameters ([syntax guide](docs/syntax-guide.md))
|
|
113
113
|
- **TypedDict utilities** -- `Partial`, `Required_`, `Readonly`, `Mutable`, `Pick`, `Omit` ([type system](docs/type-system.md))
|
|
@@ -115,7 +115,7 @@ TypePython is an authoring layer, not a replacement for external checkers. One i
|
|
|
115
115
|
- **Full toolchain** -- `init`, `check`, `build`, `watch`, `clean`, `verify`, `migrate` ([CLI reference](docs/cli-reference.md))
|
|
116
116
|
- **LSP server** -- hover, go-to-definition, references, rename, completions, signature help, document symbols, workspace symbols, formatting, code actions, real-time diagnostics ([LSP](docs/lsp.md))
|
|
117
117
|
- **Publication-ready** -- `typepython verify` performs structural publication checks by default, validates packaged wheel/sdist contents, and can opt into runtime import parity checks for trusted builds ([interop](docs/interop.md))
|
|
118
|
-
- **Bundled stdlib stubs** -- typing data for Python 3.10-3.
|
|
118
|
+
- **Bundled stdlib stubs** -- typing data for Python 3.10-3.14 standard library, no external dependencies
|
|
119
119
|
|
|
120
120
|
## Examples
|
|
121
121
|
|
|
@@ -15,9 +15,11 @@ typepython-diagnostics = { path = "../typepython_diagnostics" }
|
|
|
15
15
|
typepython-graph = { path = "../typepython_graph" }
|
|
16
16
|
typepython-incremental = { path = "../typepython_incremental" }
|
|
17
17
|
typepython-syntax = { path = "../typepython_syntax" }
|
|
18
|
+
typepython-target = { path = "../typepython_target" }
|
|
18
19
|
|
|
19
20
|
[dev-dependencies]
|
|
20
21
|
criterion.workspace = true
|
|
22
|
+
proptest.workspace = true
|
|
21
23
|
|
|
22
24
|
[[bench]]
|
|
23
25
|
name = "checker"
|
|
@@ -9,6 +9,7 @@ use typepython_binding::{
|
|
|
9
9
|
use typepython_checking::{check, semantic_incremental_state_with_binding_metadata};
|
|
10
10
|
use typepython_config::ImportFallback;
|
|
11
11
|
use typepython_graph::{ModuleGraph, ModuleNode};
|
|
12
|
+
use typepython_incremental::SnapshotMetadata;
|
|
12
13
|
use typepython_syntax::{FunctionParam, SourceKind};
|
|
13
14
|
|
|
14
15
|
fn param(name: &str, annotation: &str) -> FunctionParam {
|
|
@@ -351,6 +352,7 @@ fn bench_semantic_summary_medium(c: &mut Criterion) {
|
|
|
351
352
|
ImportFallback::Unknown,
|
|
352
353
|
None,
|
|
353
354
|
None,
|
|
355
|
+
SnapshotMetadata::default(),
|
|
354
356
|
))
|
|
355
357
|
})
|
|
356
358
|
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Seeds for failure cases proptest has generated in the past. It is
|
|
2
|
+
# automatically read and these particular cases re-run before any
|
|
3
|
+
# novel cases are generated.
|
|
4
|
+
#
|
|
5
|
+
# It is recommended to check this file in to source control so that
|
|
6
|
+
# everyone who runs the test benefits from these saved cases.
|
|
7
|
+
cc 63f05c53e76f9d5ed8741ad0fae450971405542b1d44f8db482495e77fb3d217 # shrinks to value = Array([Array([Set([Int(1)]), Value(Bool(true))])])
|
|
8
|
+
cc c738f0bc3ddd45e512f67449dd110d139d7e9db80de0ced95078fe9e09c59f4a # shrinks to value = Object([("a", Set([Bool(false)]))])
|
|
9
|
+
cc c9862c46d0d8a51f9976bca7b6d6c8fd11f3c2eb3ee20f8f1dd0f47b978fc223 # shrinks to value = Set([Bool(false)])
|
|
@@ -26,11 +26,12 @@ use typepython_config::{DiagnosticLevel, ImportFallback};
|
|
|
26
26
|
use typepython_diagnostics::{Diagnostic, DiagnosticReport, Span, SuggestionApplicability};
|
|
27
27
|
use typepython_graph::ModuleGraph;
|
|
28
28
|
use typepython_incremental::{
|
|
29
|
-
IncrementalState, ModuleSolverFacts, PublicSummary, SealedRootSummary,
|
|
29
|
+
IncrementalState, ModuleSolverFacts, PublicSummary, SealedRootSummary, SnapshotMetadata,
|
|
30
30
|
SummaryCallableSignature, SummaryDeclarationFact, SummaryExport, SummaryImportSymbolTarget,
|
|
31
31
|
SummaryImportTarget, SummarySignatureParam, SummaryTypeParam, snapshot_with_summaries,
|
|
32
32
|
};
|
|
33
33
|
use typepython_syntax::SourceKind;
|
|
34
|
+
use typepython_target::{RuntimeFeature, RuntimeTypingForm, RuntimeTypingSemantics};
|
|
34
35
|
mod assignments;
|
|
35
36
|
mod calls;
|
|
36
37
|
mod declaration_semantics;
|
|
@@ -539,6 +540,7 @@ pub fn semantic_incremental_state_with_binding_metadata(
|
|
|
539
540
|
import_fallback: ImportFallback,
|
|
540
541
|
source_overrides: Option<&BTreeMap<String, String>>,
|
|
541
542
|
stdlib_snapshot: Option<String>,
|
|
543
|
+
metadata: SnapshotMetadata,
|
|
542
544
|
) -> IncrementalState {
|
|
543
545
|
let bound_surface_facts = binding_surface_facts_by_module(bindings);
|
|
544
546
|
let context = CheckerContext::new_with_bound_surface_facts(
|
|
@@ -549,10 +551,14 @@ pub fn semantic_incremental_state_with_binding_metadata(
|
|
|
549
551
|
);
|
|
550
552
|
let summaries =
|
|
551
553
|
graph.nodes.iter().map(|node| semantic_public_summary(&context, node)).collect();
|
|
552
|
-
snapshot_with_summaries(summaries, stdlib_snapshot)
|
|
554
|
+
snapshot_with_summaries(summaries, stdlib_snapshot, metadata)
|
|
553
555
|
}
|
|
554
556
|
|
|
555
557
|
#[must_use]
|
|
558
|
+
#[expect(
|
|
559
|
+
clippy::too_many_arguments,
|
|
560
|
+
reason = "incremental summary reuse threads build context and summary state together"
|
|
561
|
+
)]
|
|
556
562
|
pub fn semantic_incremental_state_with_reused_summaries(
|
|
557
563
|
graph: &ModuleGraph,
|
|
558
564
|
bindings: &[BindingTable],
|
|
@@ -561,6 +567,7 @@ pub fn semantic_incremental_state_with_reused_summaries(
|
|
|
561
567
|
previous_summaries: &[PublicSummary],
|
|
562
568
|
summary_rebuild_modules: &BTreeSet<String>,
|
|
563
569
|
stdlib_snapshot: Option<String>,
|
|
570
|
+
metadata: SnapshotMetadata,
|
|
564
571
|
) -> IncrementalState {
|
|
565
572
|
let bound_surface_facts = binding_surface_facts_by_module(bindings);
|
|
566
573
|
let context = CheckerContext::new_with_bound_surface_facts(
|
|
@@ -589,7 +596,7 @@ pub fn semantic_incremental_state_with_reused_summaries(
|
|
|
589
596
|
}
|
|
590
597
|
})
|
|
591
598
|
.collect();
|
|
592
|
-
snapshot_with_summaries(summaries, stdlib_snapshot)
|
|
599
|
+
snapshot_with_summaries(summaries, stdlib_snapshot, metadata)
|
|
593
600
|
}
|
|
594
601
|
|
|
595
602
|
#[must_use]
|
|
@@ -847,19 +854,139 @@ fn semantic_summary_export(
|
|
|
847
854
|
declaration.callable_signature().map(summary_callable_signature_from_bound)
|
|
848
855
|
});
|
|
849
856
|
let exported_type = semantic_exported_type(node, declaration, &semantics);
|
|
857
|
+
let required_runtime_features = required_runtime_features_for_export(
|
|
858
|
+
declaration,
|
|
859
|
+
declaration_signature.as_ref(),
|
|
860
|
+
exported_type.as_deref(),
|
|
861
|
+
);
|
|
850
862
|
SummaryExport {
|
|
851
863
|
name: declaration.name.clone(),
|
|
852
864
|
kind: summary_kind_string(declaration),
|
|
853
865
|
type_repr: exported_type.clone().unwrap_or_else(|| declaration.name.clone()),
|
|
854
866
|
type_expr: exported_type.as_deref().and_then(TypeExpr::parse),
|
|
855
|
-
declaration_signature,
|
|
867
|
+
declaration_signature: declaration_signature.clone(),
|
|
856
868
|
exported_type,
|
|
857
869
|
exported_type_expr: declaration_exported_type_expr(declaration, &semantics),
|
|
858
870
|
type_params: declaration.type_params.iter().map(summary_type_param).collect(),
|
|
871
|
+
runtime_semantics: summary_runtime_semantics(node.module_kind, declaration),
|
|
872
|
+
required_runtime_features,
|
|
859
873
|
public: !declaration.name.starts_with('_'),
|
|
860
874
|
}
|
|
861
875
|
}
|
|
862
876
|
|
|
877
|
+
fn summary_runtime_semantics(
|
|
878
|
+
module_kind: SourceKind,
|
|
879
|
+
declaration: &Declaration,
|
|
880
|
+
) -> Option<RuntimeTypingSemantics> {
|
|
881
|
+
if module_kind != SourceKind::Python {
|
|
882
|
+
return None;
|
|
883
|
+
}
|
|
884
|
+
match declaration.kind {
|
|
885
|
+
DeclarationKind::TypeAlias => Some(RuntimeTypingSemantics {
|
|
886
|
+
form: RuntimeTypingForm::TypeAliasType,
|
|
887
|
+
type_param_names: declaration
|
|
888
|
+
.type_params
|
|
889
|
+
.iter()
|
|
890
|
+
.map(|type_param| type_param.name.clone())
|
|
891
|
+
.collect(),
|
|
892
|
+
annotation_scope_owner: Some(declaration.name.clone()),
|
|
893
|
+
lazy_alias_value: true,
|
|
894
|
+
local_type_params_hidden_from_globals: true,
|
|
895
|
+
required_features: runtime_semantic_features(declaration, true),
|
|
896
|
+
}),
|
|
897
|
+
DeclarationKind::Class if !declaration.type_params.is_empty() => {
|
|
898
|
+
Some(RuntimeTypingSemantics {
|
|
899
|
+
form: RuntimeTypingForm::NativeGenericClass,
|
|
900
|
+
type_param_names: declaration
|
|
901
|
+
.type_params
|
|
902
|
+
.iter()
|
|
903
|
+
.map(|type_param| type_param.name.clone())
|
|
904
|
+
.collect(),
|
|
905
|
+
annotation_scope_owner: Some(declaration.name.clone()),
|
|
906
|
+
lazy_alias_value: false,
|
|
907
|
+
local_type_params_hidden_from_globals: true,
|
|
908
|
+
required_features: runtime_semantic_features(declaration, false),
|
|
909
|
+
})
|
|
910
|
+
}
|
|
911
|
+
DeclarationKind::Function | DeclarationKind::Overload
|
|
912
|
+
if !declaration.type_params.is_empty() =>
|
|
913
|
+
{
|
|
914
|
+
Some(RuntimeTypingSemantics {
|
|
915
|
+
form: RuntimeTypingForm::NativeGenericFunction,
|
|
916
|
+
type_param_names: declaration
|
|
917
|
+
.type_params
|
|
918
|
+
.iter()
|
|
919
|
+
.map(|type_param| type_param.name.clone())
|
|
920
|
+
.collect(),
|
|
921
|
+
annotation_scope_owner: Some(declaration.name.clone()),
|
|
922
|
+
lazy_alias_value: false,
|
|
923
|
+
local_type_params_hidden_from_globals: true,
|
|
924
|
+
required_features: runtime_semantic_features(declaration, false),
|
|
925
|
+
})
|
|
926
|
+
}
|
|
927
|
+
_ => None,
|
|
928
|
+
}
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
fn runtime_semantic_features(declaration: &Declaration, is_alias: bool) -> Vec<RuntimeFeature> {
|
|
932
|
+
let mut features = Vec::new();
|
|
933
|
+
if is_alias {
|
|
934
|
+
features.push(RuntimeFeature::TypeStmt);
|
|
935
|
+
}
|
|
936
|
+
if !declaration.type_params.is_empty() {
|
|
937
|
+
features.push(RuntimeFeature::InlineTypeParams);
|
|
938
|
+
}
|
|
939
|
+
if declaration.type_params.iter().any(|type_param| type_param.default.is_some()) {
|
|
940
|
+
features.push(RuntimeFeature::GenericDefaults);
|
|
941
|
+
}
|
|
942
|
+
features
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
fn required_runtime_features_for_export(
|
|
946
|
+
declaration: &Declaration,
|
|
947
|
+
declaration_signature: Option<&SummaryCallableSignature>,
|
|
948
|
+
exported_type: Option<&str>,
|
|
949
|
+
) -> Vec<String> {
|
|
950
|
+
let mut features = BTreeSet::<String>::new();
|
|
951
|
+
if !declaration.type_params.is_empty() {
|
|
952
|
+
features.insert(String::from("inline_type_params"));
|
|
953
|
+
if declaration.type_params.iter().any(|type_param| type_param.default.is_some()) {
|
|
954
|
+
features.insert(String::from("generic_defaults"));
|
|
955
|
+
}
|
|
956
|
+
if declaration.kind == DeclarationKind::TypeAlias {
|
|
957
|
+
features.insert(String::from("type_stmt"));
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
if let Some(exported_type) = exported_type {
|
|
962
|
+
extend_runtime_features_from_type_text(&mut features, exported_type);
|
|
963
|
+
}
|
|
964
|
+
if let Some(signature) = declaration_signature {
|
|
965
|
+
if let Some(returns) = &signature.returns {
|
|
966
|
+
extend_runtime_features_from_type_text(&mut features, returns);
|
|
967
|
+
}
|
|
968
|
+
for param in &signature.params {
|
|
969
|
+
if let Some(annotation) = ¶m.annotation {
|
|
970
|
+
extend_runtime_features_from_type_text(&mut features, annotation);
|
|
971
|
+
}
|
|
972
|
+
}
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
features.into_iter().collect()
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
fn extend_runtime_features_from_type_text(features: &mut BTreeSet<String>, text: &str) {
|
|
979
|
+
if text.contains("TypeIs[") {
|
|
980
|
+
features.insert(String::from("typing_type_is"));
|
|
981
|
+
}
|
|
982
|
+
if text.contains("ReadOnly[") {
|
|
983
|
+
features.insert(String::from("typing_readonly"));
|
|
984
|
+
}
|
|
985
|
+
if text == "NoDefault" || text.contains("NoDefault[") {
|
|
986
|
+
features.insert(String::from("typing_no_default"));
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
863
990
|
fn semantic_declaration_fact(
|
|
864
991
|
context: &CheckerContext<'_>,
|
|
865
992
|
declaration: &Declaration,
|
|
@@ -1018,9 +1145,22 @@ fn summary_signature_param(
|
|
|
1018
1145
|
|
|
1019
1146
|
fn summary_type_param(type_param: &typepython_binding::GenericTypeParam) -> SummaryTypeParam {
|
|
1020
1147
|
SummaryTypeParam {
|
|
1148
|
+
kind: Some(match type_param.kind {
|
|
1149
|
+
typepython_binding::GenericTypeParamKind::TypeVar => String::from("typevar"),
|
|
1150
|
+
typepython_binding::GenericTypeParamKind::ParamSpec => String::from("paramspec"),
|
|
1151
|
+
typepython_binding::GenericTypeParamKind::TypeVarTuple => String::from("typevartuple"),
|
|
1152
|
+
}),
|
|
1021
1153
|
name: type_param.name.clone(),
|
|
1022
1154
|
bound: type_param.rendered_bound(),
|
|
1023
1155
|
bound_expr: type_param.bound_expr.as_ref().map(|expr| expr.expr.clone()),
|
|
1156
|
+
constraints: type_param.rendered_constraints(),
|
|
1157
|
+
constraint_exprs: type_param
|
|
1158
|
+
.constraint_exprs
|
|
1159
|
+
.iter()
|
|
1160
|
+
.map(|expr| expr.expr.clone())
|
|
1161
|
+
.collect(),
|
|
1162
|
+
default: type_param.rendered_default(),
|
|
1163
|
+
default_expr: type_param.default_expr.as_ref().map(|expr| expr.expr.clone()),
|
|
1024
1164
|
}
|
|
1025
1165
|
}
|
|
1026
1166
|
|
|
@@ -8674,6 +8674,18 @@ fn check_reports_dict_keyword_expansion_without_kwargs() {
|
|
|
8674
8674
|
assert!(rendered.contains("cannot expand `**dict[str, int]` without `**kwargs`"));
|
|
8675
8675
|
}
|
|
8676
8676
|
|
|
8677
|
+
#[test]
|
|
8678
|
+
fn check_reports_dict_literal_expansion_assignment_type_mismatch() {
|
|
8679
|
+
let result = check_temp_typepython_source(
|
|
8680
|
+
"extra: dict[str, str] = {\"name\": \"Ada\"}\npayload: dict[str, int] = {**extra}\n",
|
|
8681
|
+
);
|
|
8682
|
+
|
|
8683
|
+
let rendered = result.diagnostics.as_text();
|
|
8684
|
+
assert!(rendered.contains("TPY4001"));
|
|
8685
|
+
assert!(rendered.contains("dict[str, int]"));
|
|
8686
|
+
assert!(rendered.contains("dict[str, str]"));
|
|
8687
|
+
}
|
|
8688
|
+
|
|
8677
8689
|
#[test]
|
|
8678
8690
|
fn check_accepts_closed_typed_dict_keyword_expansion_callsite() {
|
|
8679
8691
|
let result = check_temp_typepython_source(
|
|
@@ -125,6 +125,7 @@ fn semantic_incremental_state_reuses_unchanged_public_summaries() {
|
|
|
125
125
|
ImportFallback::Unknown,
|
|
126
126
|
None,
|
|
127
127
|
None,
|
|
128
|
+
typepython_incremental::SnapshotMetadata::default(),
|
|
128
129
|
);
|
|
129
130
|
let mut previous_summaries = baseline.summaries.clone();
|
|
130
131
|
let sentinel_summary = {
|
|
@@ -152,6 +153,7 @@ fn semantic_incremental_state_reuses_unchanged_public_summaries() {
|
|
|
152
153
|
&previous_summaries,
|
|
153
154
|
&BTreeSet::from([String::from("app.a")]),
|
|
154
155
|
None,
|
|
156
|
+
typepython_incremental::SnapshotMetadata::default(),
|
|
155
157
|
);
|
|
156
158
|
|
|
157
159
|
let reused_b = rebuilt
|
|
@@ -173,6 +175,130 @@ fn semantic_incremental_state_reuses_unchanged_public_summaries() {
|
|
|
173
175
|
let _ = fs::remove_dir_all(&root);
|
|
174
176
|
}
|
|
175
177
|
|
|
178
|
+
#[test]
|
|
179
|
+
fn semantic_incremental_summary_preserves_native_runtime_feature_markers() {
|
|
180
|
+
let root = create_temp_typepython_root();
|
|
181
|
+
let path = root.join("app.py");
|
|
182
|
+
let source_text = "type Pair[T = int] = tuple[T, T]\n\nclass Box[T = int]:\n value: T\n\ndef first[T = int](value: T = 1) -> T:\n return value\n";
|
|
183
|
+
fs::write(&path, source_text).expect("temp source should be written");
|
|
184
|
+
|
|
185
|
+
let tree = parse_with_options(
|
|
186
|
+
SourceFile {
|
|
187
|
+
path,
|
|
188
|
+
kind: SourceKind::Python,
|
|
189
|
+
logical_module: String::from("app"),
|
|
190
|
+
text: source_text.to_owned(),
|
|
191
|
+
},
|
|
192
|
+
ParseOptions::default(),
|
|
193
|
+
);
|
|
194
|
+
let bindings = vec![bind(&tree)];
|
|
195
|
+
let graph = build(&bindings);
|
|
196
|
+
let summary = semantic_incremental_state_with_binding_metadata(
|
|
197
|
+
&graph,
|
|
198
|
+
&bindings,
|
|
199
|
+
ImportFallback::Unknown,
|
|
200
|
+
None,
|
|
201
|
+
None,
|
|
202
|
+
typepython_incremental::SnapshotMetadata::default(),
|
|
203
|
+
)
|
|
204
|
+
.summaries
|
|
205
|
+
.into_iter()
|
|
206
|
+
.find(|summary| summary.module == "app")
|
|
207
|
+
.expect("summary should exist");
|
|
208
|
+
|
|
209
|
+
let pair = summary
|
|
210
|
+
.exports
|
|
211
|
+
.iter()
|
|
212
|
+
.find(|export| export.name == "Pair")
|
|
213
|
+
.expect("Pair export should exist");
|
|
214
|
+
let box_export = summary
|
|
215
|
+
.exports
|
|
216
|
+
.iter()
|
|
217
|
+
.find(|export| export.name == "Box")
|
|
218
|
+
.expect("Box export should exist");
|
|
219
|
+
let first = summary
|
|
220
|
+
.exports
|
|
221
|
+
.iter()
|
|
222
|
+
.find(|export| export.name == "first")
|
|
223
|
+
.expect("first export should exist");
|
|
224
|
+
|
|
225
|
+
assert!(pair.required_runtime_features.contains(&String::from("type_stmt")));
|
|
226
|
+
assert!(pair.required_runtime_features.contains(&String::from("inline_type_params")));
|
|
227
|
+
assert!(pair.required_runtime_features.contains(&String::from("generic_defaults")));
|
|
228
|
+
assert_eq!(
|
|
229
|
+
pair.runtime_semantics.as_ref().map(|semantics| semantics.form),
|
|
230
|
+
Some(typepython_target::RuntimeTypingForm::TypeAliasType)
|
|
231
|
+
);
|
|
232
|
+
assert!(box_export.required_runtime_features.contains(&String::from("inline_type_params")));
|
|
233
|
+
assert!(box_export.required_runtime_features.contains(&String::from("generic_defaults")));
|
|
234
|
+
assert_eq!(
|
|
235
|
+
box_export.runtime_semantics.as_ref().map(|semantics| semantics.form),
|
|
236
|
+
Some(typepython_target::RuntimeTypingForm::NativeGenericClass)
|
|
237
|
+
);
|
|
238
|
+
assert!(first.required_runtime_features.contains(&String::from("inline_type_params")));
|
|
239
|
+
assert!(first.required_runtime_features.contains(&String::from("generic_defaults")));
|
|
240
|
+
assert_eq!(
|
|
241
|
+
first.runtime_semantics.as_ref().map(|semantics| semantics.form),
|
|
242
|
+
Some(typepython_target::RuntimeTypingForm::NativeGenericFunction)
|
|
243
|
+
);
|
|
244
|
+
|
|
245
|
+
let _ = fs::remove_dir_all(&root);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
#[test]
|
|
249
|
+
fn semantic_incremental_summary_marks_runtime_sensitive_typing_surface() {
|
|
250
|
+
let root = create_temp_typepython_root();
|
|
251
|
+
let path = root.join("app.py");
|
|
252
|
+
let source_text = "from typing import NoDefault, ReadOnly, TypeIs\n\ntype Wrapped[T = int] = ReadOnly[T]\nmarker: NoDefault\n\ndef accepts(value: object) -> TypeIs[int]:\n return isinstance(value, int)\n";
|
|
253
|
+
fs::write(&path, source_text).expect("temp source should be written");
|
|
254
|
+
|
|
255
|
+
let tree = parse_with_options(
|
|
256
|
+
SourceFile {
|
|
257
|
+
path,
|
|
258
|
+
kind: SourceKind::Python,
|
|
259
|
+
logical_module: String::from("app"),
|
|
260
|
+
text: source_text.to_owned(),
|
|
261
|
+
},
|
|
262
|
+
ParseOptions::default(),
|
|
263
|
+
);
|
|
264
|
+
let bindings = vec![bind(&tree)];
|
|
265
|
+
let graph = build(&bindings);
|
|
266
|
+
let summary = semantic_incremental_state_with_binding_metadata(
|
|
267
|
+
&graph,
|
|
268
|
+
&bindings,
|
|
269
|
+
ImportFallback::Unknown,
|
|
270
|
+
None,
|
|
271
|
+
None,
|
|
272
|
+
typepython_incremental::SnapshotMetadata::default(),
|
|
273
|
+
)
|
|
274
|
+
.summaries
|
|
275
|
+
.into_iter()
|
|
276
|
+
.find(|summary| summary.module == "app")
|
|
277
|
+
.expect("summary should exist");
|
|
278
|
+
|
|
279
|
+
let wrapped = summary
|
|
280
|
+
.exports
|
|
281
|
+
.iter()
|
|
282
|
+
.find(|export| export.name == "Wrapped")
|
|
283
|
+
.expect("Wrapped export should exist");
|
|
284
|
+
let marker = summary
|
|
285
|
+
.exports
|
|
286
|
+
.iter()
|
|
287
|
+
.find(|export| export.name == "marker")
|
|
288
|
+
.expect("marker export should exist");
|
|
289
|
+
let accepts = summary
|
|
290
|
+
.exports
|
|
291
|
+
.iter()
|
|
292
|
+
.find(|export| export.name == "accepts")
|
|
293
|
+
.expect("accepts export should exist");
|
|
294
|
+
|
|
295
|
+
assert!(wrapped.required_runtime_features.contains(&String::from("typing_readonly")));
|
|
296
|
+
assert!(marker.required_runtime_features.contains(&String::from("typing_no_default")));
|
|
297
|
+
assert!(accepts.required_runtime_features.contains(&String::from("typing_type_is")));
|
|
298
|
+
|
|
299
|
+
let _ = fs::remove_dir_all(&root);
|
|
300
|
+
}
|
|
301
|
+
|
|
176
302
|
#[test]
|
|
177
303
|
fn check_propagates_generic_owner_arguments_into_member_reads() {
|
|
178
304
|
let diagnostics = check_temp_typepython_source(
|
|
@@ -668,5 +794,6 @@ pub(super) fn type_relation_node_with_base_child() -> ModuleNode {
|
|
|
668
794
|
mod advanced;
|
|
669
795
|
mod advanced_generics;
|
|
670
796
|
mod calls;
|
|
797
|
+
mod property_based;
|
|
671
798
|
mod semantic;
|
|
672
799
|
mod typed_dict;
|