type-python 0.3.1__tar.gz → 0.4.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.3.1 → type_python-0.4.0}/Cargo.lock +13 -13
- {type_python-0.3.1 → type_python-0.4.0}/Cargo.toml +1 -1
- {type_python-0.3.1 → type_python-0.4.0}/PKG-INFO +9 -4
- {type_python-0.3.1 → type_python-0.4.0}/README-PyPI.md +5 -2
- {type_python-0.3.1 → type_python-0.4.0}/README.md +18 -8
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/assignments.rs +59 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/call_diagnostics.rs +3 -9
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/callable_resolution.rs +44 -1
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/member_access.rs +10 -3
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/declarations.rs +16 -9
- type_python-0.4.0/crates/typepython_checking/src/effects.rs +1955 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/lib.rs +143 -11
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/semantic.rs +164 -57
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/source_facts.rs +58 -3
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/mod.rs +4 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/semantic.rs +590 -0
- type_python-0.4.0/crates/typepython_checking/src/tests/semantic_effects.rs +1027 -0
- type_python-0.4.0/crates/typepython_checking/src/tests/semantic_taint.rs +628 -0
- type_python-0.4.0/crates/typepython_checking/src/tests/semantic_type_level.rs +68 -0
- type_python-0.4.0/crates/typepython_checking/src/tests/semantic_validator.rs +315 -0
- type_python-0.4.0/crates/typepython_checking/src/type_level.rs +423 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_system/assignability.rs +38 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_system/contextual.rs +148 -9
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_system/expressions.rs +2 -1
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_system/flow.rs +337 -21
- type_python-0.4.0/crates/typepython_checking/src/type_system/flow_tests.rs +100 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_system/members.rs +3 -2
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_system/mod.rs +1 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/adapter.rs +13 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/pipeline.rs +56 -3
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/adapter.rs +1 -1
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/pipeline.rs +125 -1
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_config/src/lib.rs +28 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/stubs.rs +9 -34
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/tests.rs +40 -2
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_incremental/src/lib.rs +87 -2
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/core.rs +144 -33
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/tests.rs +267 -2
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/typeddict.rs +168 -125
- type_python-0.4.0/crates/typepython_lsp/src/analysis.rs +1656 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/code_actions.rs +104 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/tests.rs +522 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/expr_metadata.rs +2 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/metadata_collectors.rs +191 -3
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/surface.rs +105 -0
- type_python-0.4.0/crates/typepython_syntax/src/syntax_parts/type_expr.rs +1034 -0
- {type_python-0.3.1 → type_python-0.4.0}/pyproject.toml +4 -2
- {type_python-0.3.1 → type_python-0.4.0}/type_python.egg-info/PKG-INFO +9 -4
- {type_python-0.3.1 → type_python-0.4.0}/type_python.egg-info/SOURCES.txt +7 -0
- {type_python-0.3.1 → type_python-0.4.0}/typepython/__init__.py +1 -1
- type_python-0.3.1/crates/typepython_lsp/src/analysis.rs +0 -795
- type_python-0.3.1/crates/typepython_syntax/src/syntax_parts/type_expr.rs +0 -406
- {type_python-0.3.1 → type_python-0.4.0}/LICENSE +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/MANIFEST.in +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_binding/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_binding/src/binding_impl.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_binding/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_binding/src/tests.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_binding/src/types.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/benches/checker.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/proptest-regressions/tests/property_based.txt +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/dataclass.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/mod.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/reporting.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/declaration_semantics.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/generic_solver.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/stubs.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/advanced.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/advanced_generics.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/advanced_overloads.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/calls.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/property_based.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/tests/typed_dict.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_core.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/type_system/imports.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/scripts/runtime_importability.py +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/api_diff.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/cli.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/compat.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/discovery.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/main.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/migration.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/pipeline/loading.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/pipeline/stubs.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/api_diff.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/compat.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/consistency.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/migration.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/mod.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/type_health.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/tests/verification.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/type_health.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_cli/src/verification.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_config/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_diagnostics/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_diagnostics/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/planning.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/runtime.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_migration_stub.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_shadow_stub.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_async_function.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_basic_module.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_class_with_methods.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_native_pep695_surface.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_overloaded_function.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_graph/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_graph/benches/graph.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_graph/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_incremental/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/benches/lower.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_combined_typepython_constructs.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_imports_312.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_qualified_names_310.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class_with_bases.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_class_and_function.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_interface.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_typealias.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface_with_bases.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_lambda_annotation.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_fallback_defaults_312.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_generics_313.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_nested_unsafe_in_function.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_overload_def.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_paramspec.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_passthrough_python_source.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class_with_bases.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_type_param_with_bounds_constraints_defaults.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typealias.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typeddict_keyword_stripping.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_unsafe_block.snap +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/benches/incremental.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/formatting.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/mod.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/symbols.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/text.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/typing.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/mod.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/protocol.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/signature_help.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/sources.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/requests/symbols.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/scheduler.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/server.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/discovery.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/lifecycle.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/mod.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/state.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_project/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_project/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/benches/parse.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/proptest-regressions/lib.txt +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/ast_backed.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/calls.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/control_flow.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/guards.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/lambdas.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/syntax_extensions.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/tests.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/formatting.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/mod.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/parsing.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_target/Cargo.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/crates/typepython_target/src/lib.rs +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/rust-toolchain.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/rustfmt.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/setup.cfg +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/setup.py +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/BASELINE.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/REFRESH_STATS.json +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/VERSIONS +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/__future__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/__main__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_ast.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_asyncio.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_bisect.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_blake2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_bootlocale.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_bz2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_codecs.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_collections_abc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_compat_pickle.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_compression.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_contextvars.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_csv.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_ctypes.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_curses.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_curses_panel.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_dbm.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_decimal.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_frozen_importlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_frozen_importlib_external.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_gdbm.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_hashlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_heapq.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_imp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_interpchannels.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_interpqueues.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_interpreters.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_io.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_json.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_locale.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_lsprof.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_lzma.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_markupbase.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_msi.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_multibytecodec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_operator.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_osx_support.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_pickle.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_posixsubprocess.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_py_abc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_pydecimal.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_queue.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_random.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_sitebuiltins.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_socket.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_sqlite3.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_ssl.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_stat.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_struct.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_thread.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_threading_local.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_tkinter.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_tracemalloc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_typeshed/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_typeshed/dbapi.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_typeshed/importlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_typeshed/wsgi.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_typeshed/xml.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_warnings.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_weakref.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_weakrefset.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_winapi.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/_zstd.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/abc/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/abc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/aifc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/annotationlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/antigravity.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/argparse.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/array.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ast.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asynchat.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/base_events.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/base_futures.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/base_subprocess.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/base_tasks.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/constants.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/coroutines.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/events.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/exceptions.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/format_helpers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/futures.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/graph.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/locks.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/log.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/mixins.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/proactor_events.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/protocols.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/queues.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/runners.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/selector_events.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/sslproto.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/staggered.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/streams.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/subprocess.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/taskgroups.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/tasks.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/threads.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/timeouts.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/tools.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/transports.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/trsock.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/unix_events.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/windows_events.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncio/windows_utils.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/asyncore.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/atexit.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/audioop.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/base64.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/bdb.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/binascii.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/binhex.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/bisect.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/builtins.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/bz2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/cProfile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/calendar.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/cgi.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/cgitb.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/chunk.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/cmath.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/cmd.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/code.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/codecs.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/codeop.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/collections/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/collections/abc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/colorsys.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compileall.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/_common/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/_common/_streams.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/bz2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/gzip.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/lzma.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/zlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/zstd/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/compression/zstd/_zstdfile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/futures/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/futures/_base.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/futures/interpreter.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/futures/process.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/futures/thread.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/interpreters/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/interpreters/_crossinterp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/concurrent/interpreters/_queues.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/configparser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/contextlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/contextvars.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/copy.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/copyreg.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/crypt.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/csv.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/_endian.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/macholib/framework.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ctypes/wintypes.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/curses/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/curses/ascii.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/curses/has_key.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/curses/panel.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/curses/textpad.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/dataclasses.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/datetime.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/dbm/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/dbm/dumb.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/dbm/gnu.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/dbm/ndbm.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/dbm/sqlite3.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/decimal.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/difflib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/dis.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/_msvccompiler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/archive_util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/bcppcompiler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/ccompiler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/cmd.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/bdist.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/build.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/build_clib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/build_ext.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/build_py.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/build_scripts.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/check.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/clean.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/config.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/install.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/install_data.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/install_headers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/install_lib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/install_scripts.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/register.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/sdist.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/command/upload.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/config.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/core.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/debug.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/dep_util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/dir_util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/dist.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/errors.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/extension.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/fancy_getopt.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/file_util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/filelist.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/log.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/msvccompiler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/spawn.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/sysconfig.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/text_file.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/unixccompiler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/distutils/version.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/doctest.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/_header_value_parser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/_policybase.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/base64mime.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/charset.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/contentmanager.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/encoders.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/errors.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/feedparser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/generator.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/header.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/headerregistry.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/iterators.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/message.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/application.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/audio.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/base.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/image.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/message.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/multipart.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/nonmultipart.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/mime/text.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/parser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/policy.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/quoprimime.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/email/utils.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/aliases.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/ascii.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/base64_codec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/big5.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/big5hkscs.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/bz2_codec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/charmap.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp037.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1006.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1026.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1125.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1140.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1250.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1251.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1252.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1253.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1254.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1255.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1256.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1257.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp1258.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp273.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp424.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp437.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp500.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp720.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp737.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp775.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp850.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp852.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp855.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp856.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp857.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp858.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp860.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp861.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp862.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp863.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp864.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp865.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp866.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp869.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp874.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp875.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp932.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp949.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/cp950.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/euc_jp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/euc_kr.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/gb18030.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/gb2312.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/gbk.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/hex_codec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/hp_roman8.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/hz.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/idna.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso2022_jp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso2022_kr.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_1.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_10.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_11.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_13.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_14.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_15.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_16.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_3.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_4.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_5.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_6.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_7.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_8.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/iso8859_9.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/johab.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/koi8_r.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/koi8_t.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/koi8_u.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/kz1048.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/latin_1.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_arabic.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_croatian.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_farsi.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_greek.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_iceland.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_latin2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_roman.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_romanian.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mac_turkish.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/mbcs.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/oem.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/palmos.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/ptcp154.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/punycode.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/quopri_codec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/rot_13.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/shift_jis.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/tis_620.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/undefined.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/unicode_escape.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_16.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_16_be.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_16_le.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_32.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_32_be.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_32_le.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_7.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_8.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/utf_8_sig.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/uu_codec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/encodings/zlib_codec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ensurepip/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/enum/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/enum.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/errno.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/faulthandler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/fcntl.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/filecmp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/fileinput.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/fnmatch.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/formatter.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/fractions.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ftplib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/functools.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/gc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/genericpath.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/getopt.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/getpass.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/gettext.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/glob.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/graphlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/grp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/gzip.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/hashlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/heapq.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/hmac.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/html/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/html/entities.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/html/parser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/http/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/http/client.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/http/cookiejar.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/http/cookies.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/http/server.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/imaplib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/imghdr.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/imp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/_abc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/_bootstrap.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/abc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/machinery.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/metadata/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/metadata/_meta.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/readers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/resources/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/resources/_common.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/resources/_functional.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/resources/abc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/resources/readers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/resources/simple.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/simple.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/importlib/util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/inspect.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/io.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ipaddress.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/itertools.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/json/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/json/decoder.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/json/encoder.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/json/scanner.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/json/tool.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/keyword.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixer_base.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/main.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pygram.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/pytree.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lib2to3/refactor.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/linecache.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/locale.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/logging/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/logging/config.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/logging/handlers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/lzma.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/mailbox.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/mailcap.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/marshal.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/math.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/mimetypes.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/mmap.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/modulefinder.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/msilib/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/msilib/schema.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/msilib/sequence.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/msilib/text.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/msvcrt.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/connection.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/context.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/forkserver.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/heap.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/managers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/pool.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/process.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/queues.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/reduction.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/spawn.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/synchronize.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/multiprocessing/util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/netrc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/nis.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/nntplib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/nt.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ntpath.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/nturl2path.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/numbers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/numpy/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/numpy/linalg/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/numpy/typing/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/opcode.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/operator.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/optparse.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/os/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/os/path.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ossaudiodev.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pandas/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/parser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pathlib/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pathlib/types.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pdb.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pickle.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pickletools.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pipes.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pkgutil.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/platform.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/plistlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/poplib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/posix.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/posixpath.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pprint.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/profile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pstats.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pty.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pwd.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/py_compile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pyclbr.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pydoc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pydoc_data/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pydoc_data/topics.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pyexpat/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pyexpat/errors.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/pyexpat/model.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/queue.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/quopri.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/random.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/re.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/readline.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/reprlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/requests/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/requests/sessions.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/resource.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/rlcompleter.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/runpy.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sched.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/secrets.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/select.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/selectors.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/shelve.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/shlex.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/shutil.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/signal.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/site.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/smtpd.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/smtplib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sndhdr.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/socket.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/socketserver.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/spwd.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sqlite3/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sqlite3/dbapi2.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sqlite3/dump.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sre_compile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sre_constants.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sre_parse.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/ssl.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/stat.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/statistics.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/string/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/string/templatelib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/stringprep.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/struct.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/subprocess.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sunau.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/symbol.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/symtable.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sys/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sys/_monitoring.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/sysconfig.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/syslog.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tabnanny.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tarfile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/telnetlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tempfile.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/termios.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/textwrap.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/this.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/threading.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/time.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/timeit.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/colorchooser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/commondialog.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/constants.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/dialog.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/dnd.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/filedialog.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/font.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/messagebox.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/scrolledtext.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/simpledialog.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/tix.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tkinter/ttk.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/token.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tokenize.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tomllib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/torch/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/torch/nn/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/trace.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/traceback.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tracemalloc.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/tty.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/turtle.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/types.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/typing.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/typing_extensions.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unicodedata.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/_log.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/async_case.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/case.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/loader.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/main.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/mock.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/result.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/runner.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/signals.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/suite.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/unittest/util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/urllib/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/urllib/error.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/urllib/parse.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/urllib/request.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/urllib/response.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/urllib/robotparser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/uu.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/uuid.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/venv/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/warnings.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wave.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/weakref.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/webbrowser.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/winreg.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/winsound.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wsgiref/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wsgiref/handlers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wsgiref/headers.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wsgiref/simple_server.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wsgiref/types.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wsgiref/util.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/wsgiref/validate.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xdrlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/domreg.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/minicompat.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/minidom.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/pulldom.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/etree/ElementPath.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/etree/ElementTree.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/etree/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/etree/cElementTree.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/parsers/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/parsers/expat/model.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/sax/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/sax/_exceptions.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/sax/expatreader.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/sax/handler.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/sax/saxutils.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xml/sax/xmlreader.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xmlrpc/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xmlrpc/client.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xmlrpc/server.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/xxlimited.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zipapp.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zipfile/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zipfile/_path/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zipfile/_path/glob.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zipimport.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zlib.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zoneinfo/__init__.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zoneinfo/_common.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/templates/src/app/__init__.tpy +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/templates/typepython.toml +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/type_python.egg-info/dependency_links.txt +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/type_python.egg-info/entry_points.txt +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/type_python.egg-info/top_level.txt +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/typepython/__main__.py +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/typepython/_runner.py +0 -0
- {type_python-0.3.1 → type_python-0.4.0}/typepython/annotation_compat.py +0 -0
|
@@ -1779,7 +1779,7 @@ dependencies = [
|
|
|
1779
1779
|
|
|
1780
1780
|
[[package]]
|
|
1781
1781
|
name = "typepython-binding"
|
|
1782
|
-
version = "0.
|
|
1782
|
+
version = "0.4.0"
|
|
1783
1783
|
dependencies = [
|
|
1784
1784
|
"typepython-diagnostics",
|
|
1785
1785
|
"typepython-syntax",
|
|
@@ -1787,7 +1787,7 @@ dependencies = [
|
|
|
1787
1787
|
|
|
1788
1788
|
[[package]]
|
|
1789
1789
|
name = "typepython-checking"
|
|
1790
|
-
version = "0.
|
|
1790
|
+
version = "0.4.0"
|
|
1791
1791
|
dependencies = [
|
|
1792
1792
|
"criterion",
|
|
1793
1793
|
"proptest",
|
|
@@ -1802,7 +1802,7 @@ dependencies = [
|
|
|
1802
1802
|
|
|
1803
1803
|
[[package]]
|
|
1804
1804
|
name = "typepython-cli"
|
|
1805
|
-
version = "0.
|
|
1805
|
+
version = "0.4.0"
|
|
1806
1806
|
dependencies = [
|
|
1807
1807
|
"anyhow",
|
|
1808
1808
|
"clap",
|
|
@@ -1835,7 +1835,7 @@ dependencies = [
|
|
|
1835
1835
|
|
|
1836
1836
|
[[package]]
|
|
1837
1837
|
name = "typepython-config"
|
|
1838
|
-
version = "0.
|
|
1838
|
+
version = "0.4.0"
|
|
1839
1839
|
dependencies = [
|
|
1840
1840
|
"serde",
|
|
1841
1841
|
"thiserror",
|
|
@@ -1845,7 +1845,7 @@ dependencies = [
|
|
|
1845
1845
|
|
|
1846
1846
|
[[package]]
|
|
1847
1847
|
name = "typepython-diagnostics"
|
|
1848
|
-
version = "0.
|
|
1848
|
+
version = "0.4.0"
|
|
1849
1849
|
dependencies = [
|
|
1850
1850
|
"serde",
|
|
1851
1851
|
"serde_json",
|
|
@@ -1853,7 +1853,7 @@ dependencies = [
|
|
|
1853
1853
|
|
|
1854
1854
|
[[package]]
|
|
1855
1855
|
name = "typepython-emit"
|
|
1856
|
-
version = "0.
|
|
1856
|
+
version = "0.4.0"
|
|
1857
1857
|
dependencies = [
|
|
1858
1858
|
"insta",
|
|
1859
1859
|
"littrs-ruff-python-ast",
|
|
@@ -1866,7 +1866,7 @@ dependencies = [
|
|
|
1866
1866
|
|
|
1867
1867
|
[[package]]
|
|
1868
1868
|
name = "typepython-graph"
|
|
1869
|
-
version = "0.
|
|
1869
|
+
version = "0.4.0"
|
|
1870
1870
|
dependencies = [
|
|
1871
1871
|
"criterion",
|
|
1872
1872
|
"typepython-binding",
|
|
@@ -1875,7 +1875,7 @@ dependencies = [
|
|
|
1875
1875
|
|
|
1876
1876
|
[[package]]
|
|
1877
1877
|
name = "typepython-incremental"
|
|
1878
|
-
version = "0.
|
|
1878
|
+
version = "0.4.0"
|
|
1879
1879
|
dependencies = [
|
|
1880
1880
|
"serde",
|
|
1881
1881
|
"serde_json",
|
|
@@ -1887,7 +1887,7 @@ dependencies = [
|
|
|
1887
1887
|
|
|
1888
1888
|
[[package]]
|
|
1889
1889
|
name = "typepython-lowering"
|
|
1890
|
-
version = "0.
|
|
1890
|
+
version = "0.4.0"
|
|
1891
1891
|
dependencies = [
|
|
1892
1892
|
"criterion",
|
|
1893
1893
|
"insta",
|
|
@@ -1902,7 +1902,7 @@ dependencies = [
|
|
|
1902
1902
|
|
|
1903
1903
|
[[package]]
|
|
1904
1904
|
name = "typepython-lsp"
|
|
1905
|
-
version = "0.
|
|
1905
|
+
version = "0.4.0"
|
|
1906
1906
|
dependencies = [
|
|
1907
1907
|
"anyhow",
|
|
1908
1908
|
"criterion",
|
|
@@ -1925,7 +1925,7 @@ dependencies = [
|
|
|
1925
1925
|
|
|
1926
1926
|
[[package]]
|
|
1927
1927
|
name = "typepython-project"
|
|
1928
|
-
version = "0.
|
|
1928
|
+
version = "0.4.0"
|
|
1929
1929
|
dependencies = [
|
|
1930
1930
|
"anyhow",
|
|
1931
1931
|
"glob",
|
|
@@ -1939,7 +1939,7 @@ dependencies = [
|
|
|
1939
1939
|
|
|
1940
1940
|
[[package]]
|
|
1941
1941
|
name = "typepython-syntax"
|
|
1942
|
-
version = "0.
|
|
1942
|
+
version = "0.4.0"
|
|
1943
1943
|
dependencies = [
|
|
1944
1944
|
"criterion",
|
|
1945
1945
|
"littrs-ruff-python-ast",
|
|
@@ -1953,7 +1953,7 @@ dependencies = [
|
|
|
1953
1953
|
|
|
1954
1954
|
[[package]]
|
|
1955
1955
|
name = "typepython-target"
|
|
1956
|
-
version = "0.
|
|
1956
|
+
version = "0.4.0"
|
|
1957
1957
|
dependencies = [
|
|
1958
1958
|
"serde",
|
|
1959
1959
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: type-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: A statically-typed authoring language that compiles to standard Python
|
|
5
5
|
Author: unadlib
|
|
6
6
|
License-Expression: MIT
|
|
@@ -9,13 +9,15 @@ Project-URL: Repository, https://github.com/type-python/type-python
|
|
|
9
9
|
Project-URL: Documentation, https://github.com/type-python/type-python/tree/main/docs
|
|
10
10
|
Project-URL: Issues, https://github.com/type-python/type-python/issues
|
|
11
11
|
Keywords: typepython,type-checking,compiler,python,static-typing
|
|
12
|
-
Classifier: Development Status ::
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
21
|
Classifier: Programming Language :: Rust
|
|
20
22
|
Classifier: Topic :: Software Development :: Compilers
|
|
21
23
|
Classifier: Topic :: Software Development :: Quality Assurance
|
|
@@ -44,8 +46,10 @@ output runs anywhere CPython runs.
|
|
|
44
46
|
|
|
45
47
|
**No custom runtime. No per-checker plugin. No vendor lock-in.**
|
|
46
48
|
|
|
47
|
-
> Status: **
|
|
48
|
-
>
|
|
49
|
+
> Status: **Core v1 Beta** (v0.4.0). Core syntax, config, `init`/`check`/`build`/
|
|
50
|
+
> `clean`/`verify`, diagnostic code identity, and emitted `.py`/`.pyi` compatibility
|
|
51
|
+
> are the stable Beta surfaces. LSP UX, adapter manifests, runtime validators, and
|
|
52
|
+
> migration heuristics remain prototype/experimental.
|
|
49
53
|
> Bug reports and contributions are very welcome.
|
|
50
54
|
|
|
51
55
|
## Install
|
|
@@ -160,6 +164,7 @@ hazards for frameworks that introspect annotations.
|
|
|
160
164
|
- [Interoperability](https://github.com/type-python/type-python/blob/main/docs/interop.md)
|
|
161
165
|
- [Migration Guide](https://github.com/type-python/type-python/blob/main/docs/migration-guide.md)
|
|
162
166
|
- [Framework Adapters](https://github.com/type-python/type-python/blob/main/docs/framework-adapters.md)
|
|
167
|
+
- [Beta Readiness](https://github.com/type-python/type-python/blob/main/docs/beta-readiness.md)
|
|
163
168
|
- [Language Spec v1](https://github.com/type-python/type-python/blob/main/docs/spec/language-spec-v1.md)
|
|
164
169
|
|
|
165
170
|
## Links
|
|
@@ -17,8 +17,10 @@ output runs anywhere CPython runs.
|
|
|
17
17
|
|
|
18
18
|
**No custom runtime. No per-checker plugin. No vendor lock-in.**
|
|
19
19
|
|
|
20
|
-
> Status: **
|
|
21
|
-
>
|
|
20
|
+
> Status: **Core v1 Beta** (v0.4.0). Core syntax, config, `init`/`check`/`build`/
|
|
21
|
+
> `clean`/`verify`, diagnostic code identity, and emitted `.py`/`.pyi` compatibility
|
|
22
|
+
> are the stable Beta surfaces. LSP UX, adapter manifests, runtime validators, and
|
|
23
|
+
> migration heuristics remain prototype/experimental.
|
|
22
24
|
> Bug reports and contributions are very welcome.
|
|
23
25
|
|
|
24
26
|
## Install
|
|
@@ -133,6 +135,7 @@ hazards for frameworks that introspect annotations.
|
|
|
133
135
|
- [Interoperability](https://github.com/type-python/type-python/blob/main/docs/interop.md)
|
|
134
136
|
- [Migration Guide](https://github.com/type-python/type-python/blob/main/docs/migration-guide.md)
|
|
135
137
|
- [Framework Adapters](https://github.com/type-python/type-python/blob/main/docs/framework-adapters.md)
|
|
138
|
+
- [Beta Readiness](https://github.com/type-python/type-python/blob/main/docs/beta-readiness.md)
|
|
136
139
|
- [Language Spec v1](https://github.com/type-python/type-python/blob/main/docs/spec/language-spec-v1.md)
|
|
137
140
|
|
|
138
141
|
## Links
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License: MIT" /></a>
|
|
15
15
|
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/python-3.9%2B-blue.svg" alt="Python 3.9+" /></a>
|
|
16
16
|
<a href="https://www.rust-lang.org/"><img src="https://img.shields.io/badge/built%20with-rust-orange.svg" alt="Built with Rust" /></a>
|
|
17
|
-
<a href="https://github.com/type-python/type-python/issues"><img src="https://img.shields.io/badge/status-
|
|
17
|
+
<a href="https://github.com/type-python/type-python/issues"><img src="https://img.shields.io/badge/status-Core%20v1%20Beta-blue.svg" alt="Core v1 Beta" /></a>
|
|
18
18
|
</p>
|
|
19
19
|
|
|
20
20
|
<p align="center">
|
|
@@ -163,8 +163,9 @@ A few stronger guarantees are author-time only — they live in your `.tpy` sour
|
|
|
163
163
|
| `sealed class` exhaustiveness | external checkers see a normal class |
|
|
164
164
|
| `unsafe:` audit fence | erased; lowered to valid Python |
|
|
165
165
|
| `TypedDict` transforms | expanded to standard `TypedDict` shapes |
|
|
166
|
+
| effect, taint, and witness facts | checked at author-time; erased or sidecar-only |
|
|
166
167
|
|
|
167
|
-
This trade is intentional: **you get stronger checks while authoring; consumers get clean, portable Python they can read with mypy, pyright, ty, IDEs, and any PEP 561 tool**. See [`docs/interop.md`](docs/interop.md).
|
|
168
|
+
This trade is intentional: **you get stronger checks while authoring; consumers get clean, portable Python they can read with mypy, pyright, ty, IDEs, and any PEP 561 tool**. See [`docs/interop.md`](docs/interop.md) and [`docs/author-time-semantics.md`](docs/author-time-semantics.md).
|
|
168
169
|
|
|
169
170
|
## For library and framework authors
|
|
170
171
|
|
|
@@ -197,17 +198,23 @@ class BaseModel: ...
|
|
|
197
198
|
|
|
198
199
|
## Project status
|
|
199
200
|
|
|
200
|
-
TypePython is **
|
|
201
|
+
TypePython is **Core v1 Beta** (v0.4.0). The Beta claim is deliberately scoped: Core syntax,
|
|
202
|
+
configuration, `init`/`check`/`build`/`clean`/`verify`, diagnostic code identity, and emitted
|
|
203
|
+
`.py`/`.pyi` compatibility are the stable surfaces. DX and Experimental features ship for feedback
|
|
204
|
+
but are not compatibility-stable. See [`docs/beta-readiness.md`](docs/beta-readiness.md).
|
|
205
|
+
|
|
206
|
+
The breakdown:
|
|
201
207
|
|
|
202
208
|
| Tier | What's there |
|
|
203
209
|
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
204
|
-
| **
|
|
205
|
-
| **
|
|
206
|
-
| **Experimental** | shape projection beyond `TypedDict
|
|
210
|
+
| **Core v1 Beta** | `.tpy` Core syntax; project discovery and `typepython.toml` Core config; `init`, `check`, `build`, `clean`, `verify`; diagnostic code identity; `.py` lowering and `.pyi` generation with no mandatory TypePython runtime. |
|
|
211
|
+
| **DX prototype** | `watch`, LSP UX details, `compat`, `api-diff`, `type-health`, `migrate`, checker portability profiles, type budgets, and migration dashboards. |
|
|
212
|
+
| **Experimental** | framework adapter manifests, runtime validators, shape projection beyond `TypedDict`, conditional return syntax, sync/async dual emit paths, notebook ingestion, and other deferred research tracks. |
|
|
207
213
|
|
|
208
214
|
Conformance and diagnostic-coverage reports are checked into the repo: [`docs/conformance-report.md`](docs/conformance-report.md), [`docs/diagnostic-test-coverage.md`](docs/diagnostic-test-coverage.md).
|
|
209
215
|
|
|
210
|
-
> **
|
|
216
|
+
> **Beta does not mean all roadmap features are stable.** It means the Core v1 authoring and emit
|
|
217
|
+
> contract is ready for serious trial use while DX and Experimental surfaces continue to evolve.
|
|
211
218
|
|
|
212
219
|
## Configuration
|
|
213
220
|
|
|
@@ -241,6 +248,7 @@ Full reference: [`docs/configuration.md`](docs/configuration.md).
|
|
|
241
248
|
| [`config-loader/`](examples/config-loader/) | `unknown`, unsafe boundaries, trust-boundary parsing patterns |
|
|
242
249
|
| [`event-system/`](examples/event-system/) | sealed events, interfaces, data classes, generics |
|
|
243
250
|
| [`showcase/`](examples/showcase/) | multi-file feature showcase |
|
|
251
|
+
| [`research-roadmap-demo/`](examples/research-roadmap-demo/) | effect rows, Shape projection, restricted evaluator, taint, validator witnesses |
|
|
244
252
|
|
|
245
253
|
Framework and downstream-checker fixtures: [`test-fixtures/downstream-checkers/`](test-fixtures/downstream-checkers/).
|
|
246
254
|
|
|
@@ -280,7 +288,9 @@ Full guide: [`docs/migration-guide.md`](docs/migration-guide.md).
|
|
|
280
288
|
| You care how the output behaves in mypy/pyright | [Interoperability](docs/interop.md) |
|
|
281
289
|
| You're adopting it in an existing codebase | [Migration Guide](docs/migration-guide.md) |
|
|
282
290
|
| You're a framework author | [Framework Adapters](docs/framework-adapters.md) |
|
|
291
|
+
| You're evaluating Beta stability | [Beta Readiness](docs/beta-readiness.md) |
|
|
283
292
|
| You want the crate map / pipeline diagram | [Architecture](docs/architecture.md) |
|
|
293
|
+
| You're evaluating the P0-P4 research slices | [Author-Time Semantics](docs/author-time-semantics.md) |
|
|
284
294
|
| You're sending a PR | [Contributing](docs/contributing.md) |
|
|
285
295
|
| You have a quick question | [FAQ](docs/faq.md) |
|
|
286
296
|
| You need normative semantics | [Language Spec v1](docs/spec/language-spec-v1.md) |
|
|
@@ -307,4 +317,4 @@ See [`docs/contributing.md`](docs/contributing.md) for the full PR workflow.
|
|
|
307
317
|
|
|
308
318
|
## License
|
|
309
319
|
|
|
310
|
-
[MIT](LICENSE)
|
|
320
|
+
[MIT](LICENSE)
|
|
@@ -531,6 +531,43 @@ impl TypedDictExtraItemsShape {
|
|
|
531
531
|
}
|
|
532
532
|
}
|
|
533
533
|
|
|
534
|
+
impl TypedDictShape {
|
|
535
|
+
pub(crate) fn from_shape(shape: &Shape) -> Self {
|
|
536
|
+
Self {
|
|
537
|
+
name: shape.name.clone(),
|
|
538
|
+
fields: shape
|
|
539
|
+
.fields
|
|
540
|
+
.iter()
|
|
541
|
+
.map(|field| {
|
|
542
|
+
(
|
|
543
|
+
field.public_alias.clone(),
|
|
544
|
+
TypedDictFieldShape {
|
|
545
|
+
value_type: field
|
|
546
|
+
.semantic_type
|
|
547
|
+
.as_ref()
|
|
548
|
+
.map(render_semantic_type)
|
|
549
|
+
.unwrap_or_else(|| String::from("object")),
|
|
550
|
+
value_type_expr: None,
|
|
551
|
+
required: field.required,
|
|
552
|
+
readonly: field.readonly,
|
|
553
|
+
},
|
|
554
|
+
)
|
|
555
|
+
})
|
|
556
|
+
.collect(),
|
|
557
|
+
closed: shape.closed,
|
|
558
|
+
extra_items: shape.extra_items.as_ref().map(|extra| TypedDictExtraItemsShape {
|
|
559
|
+
value_type: extra
|
|
560
|
+
.semantic_type
|
|
561
|
+
.as_ref()
|
|
562
|
+
.map(render_semantic_type)
|
|
563
|
+
.unwrap_or_else(|| String::from("object")),
|
|
564
|
+
value_type_expr: None,
|
|
565
|
+
readonly: extra.readonly,
|
|
566
|
+
}),
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
|
|
534
571
|
impl DataclassTransformFieldShape {
|
|
535
572
|
#[must_use]
|
|
536
573
|
pub(crate) fn rendered_annotation(&self) -> String {
|
|
@@ -703,6 +740,28 @@ impl Shape {
|
|
|
703
740
|
)
|
|
704
741
|
}
|
|
705
742
|
|
|
743
|
+
#[allow(dead_code)]
|
|
744
|
+
pub(crate) fn map_values(&self, wrapper: &str) -> Option<Self> {
|
|
745
|
+
match wrapper {
|
|
746
|
+
"Optional" => {
|
|
747
|
+
Some(self.with_projected_fields(self.fields.iter().cloned().map(|mut field| {
|
|
748
|
+
let inner = field
|
|
749
|
+
.semantic_type
|
|
750
|
+
.take()
|
|
751
|
+
.unwrap_or_else(|| SemanticType::Name(String::from("object")));
|
|
752
|
+
field.semantic_type = Some(SemanticType::Generic {
|
|
753
|
+
head: String::from("Optional"),
|
|
754
|
+
args: vec![inner],
|
|
755
|
+
});
|
|
756
|
+
field.source_kind = ShapeFieldSourceKind::ProjectionGenerated;
|
|
757
|
+
field
|
|
758
|
+
})))
|
|
759
|
+
}
|
|
760
|
+
"Readonly" | "ReadOnly" => Some(self.readonly_fields()),
|
|
761
|
+
_ => None,
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
|
|
706
765
|
fn with_projected_fields(&self, fields: impl IntoIterator<Item = ShapeField>) -> Self {
|
|
707
766
|
Self {
|
|
708
767
|
name: self.name.clone(),
|
{type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/call_diagnostics.rs
RENAMED
|
@@ -1627,18 +1627,12 @@ pub(super) fn dataclass_transform_constructor_keyword_diagnostics(
|
|
|
1627
1627
|
}
|
|
1628
1628
|
|
|
1629
1629
|
pub(super) fn direct_unresolved_paramspec_call_diagnostics(
|
|
1630
|
+
context: &CheckerContext<'_>,
|
|
1630
1631
|
node: &typepython_graph::ModuleNode,
|
|
1631
1632
|
nodes: &[typepython_graph::ModuleNode],
|
|
1632
1633
|
) -> Vec<Diagnostic> {
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
|
-
let Ok(source) = fs::read_to_string(&node.module_path) else {
|
|
1638
|
-
return Vec::new();
|
|
1639
|
-
};
|
|
1640
|
-
|
|
1641
|
-
typepython_syntax::collect_direct_call_context_sites(&source)
|
|
1634
|
+
context
|
|
1635
|
+
.load_direct_call_context_sites(node)
|
|
1642
1636
|
.into_iter()
|
|
1643
1637
|
.filter_map(|call_site| {
|
|
1644
1638
|
if let Some((_, function)) = resolve_function_provider_with_node(nodes, node, &call_site.callee)
|
{type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/callable_resolution.rs
RENAMED
|
@@ -476,6 +476,13 @@ pub(super) fn undecidable_decorator_diagnostics(
|
|
|
476
476
|
if decorated.decorators.is_empty() {
|
|
477
477
|
return None;
|
|
478
478
|
}
|
|
479
|
+
if decorated
|
|
480
|
+
.decorators
|
|
481
|
+
.iter()
|
|
482
|
+
.all(|decorator| decorator_is_semantic_metadata_only(decorator))
|
|
483
|
+
{
|
|
484
|
+
return None;
|
|
485
|
+
}
|
|
479
486
|
if decorated.decorators.iter().any(|decorator| {
|
|
480
487
|
decorator.rsplit('.').next().unwrap_or(decorator) == "dual_emit"
|
|
481
488
|
}) {
|
|
@@ -518,6 +525,37 @@ pub(super) fn undecidable_decorator_diagnostics(
|
|
|
518
525
|
.collect()
|
|
519
526
|
}
|
|
520
527
|
|
|
528
|
+
fn decorator_is_semantic_metadata_only(decorator: &str) -> bool {
|
|
529
|
+
let target = decorator.split_once(':').map_or(decorator, |(target, _)| target);
|
|
530
|
+
let short = target.rsplit('.').next().unwrap_or(target);
|
|
531
|
+
matches!(
|
|
532
|
+
short,
|
|
533
|
+
"effect"
|
|
534
|
+
| "effectful"
|
|
535
|
+
| "effect_pure"
|
|
536
|
+
| "pure"
|
|
537
|
+
| "effect_unsafe"
|
|
538
|
+
| "effect_io_fs"
|
|
539
|
+
| "effect_io_net"
|
|
540
|
+
| "effect_io_proc"
|
|
541
|
+
| "effect_time"
|
|
542
|
+
| "effect_random"
|
|
543
|
+
| "effect_runtime_validation"
|
|
544
|
+
| "effect_taint_sanitize"
|
|
545
|
+
| "source"
|
|
546
|
+
| "sink"
|
|
547
|
+
| "sanitizer"
|
|
548
|
+
| "trusted_validator"
|
|
549
|
+
| "validator"
|
|
550
|
+
| "must_use"
|
|
551
|
+
| "must_call"
|
|
552
|
+
| "must_close"
|
|
553
|
+
| "must_dispose"
|
|
554
|
+
| "must_await"
|
|
555
|
+
| "must_consume"
|
|
556
|
+
)
|
|
557
|
+
}
|
|
558
|
+
|
|
521
559
|
fn framework_owned_decorator_diagnostic(
|
|
522
560
|
node: &typepython_graph::ModuleNode,
|
|
523
561
|
nodes: &[typepython_graph::ModuleNode],
|
|
@@ -1249,6 +1287,11 @@ pub(super) fn resolve_decorated_callable_semantic_type_for_declaration_with_cont
|
|
|
1249
1287
|
if decorated.decorators.is_empty() {
|
|
1250
1288
|
return None;
|
|
1251
1289
|
}
|
|
1290
|
+
let transform_decorators = decorated
|
|
1291
|
+
.decorators
|
|
1292
|
+
.iter()
|
|
1293
|
+
.filter(|decorator| !decorator_is_semantic_metadata_only(decorator))
|
|
1294
|
+
.collect::<Vec<_>>();
|
|
1252
1295
|
|
|
1253
1296
|
let callable = context.load_declaration_semantics(declaration).callable?;
|
|
1254
1297
|
let base_signature = callable.params;
|
|
@@ -1261,7 +1304,7 @@ pub(super) fn resolve_decorated_callable_semantic_type_for_declaration_with_cont
|
|
|
1261
1304
|
callable.return_type?
|
|
1262
1305
|
};
|
|
1263
1306
|
let mut current = semantic_callable_type_from_signature_sites_in_module(node, &base_signature, &base_return);
|
|
1264
|
-
for decorator in
|
|
1307
|
+
for decorator in transform_decorators.into_iter().rev() {
|
|
1265
1308
|
let Some(next) = apply_named_callable_decorator_transform_semantic_with_context(
|
|
1266
1309
|
context,
|
|
1267
1310
|
node,
|
{type_python-0.3.1 → type_python-0.4.0}/crates/typepython_checking/src/calls/member_access.rs
RENAMED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
pub(super) fn direct_member_access_diagnostics(
|
|
2
|
+
context: &CheckerContext<'_>,
|
|
2
3
|
node: &typepython_graph::ModuleNode,
|
|
3
4
|
nodes: &[typepython_graph::ModuleNode],
|
|
4
5
|
) -> Vec<Diagnostic> {
|
|
6
|
+
let source = context.load_source_text(node);
|
|
5
7
|
node.member_accesses
|
|
6
8
|
.iter()
|
|
7
9
|
.filter_map(|access| {
|
|
@@ -47,8 +49,12 @@ pub(super) fn direct_member_access_diagnostics(
|
|
|
47
49
|
access.member
|
|
48
50
|
),
|
|
49
51
|
);
|
|
50
|
-
if let Some((span, replacement)) =
|
|
51
|
-
|
|
52
|
+
if let Some((span, replacement)) = union_member_guard_suggestion(
|
|
53
|
+
source.as_deref(),
|
|
54
|
+
&node.module_path,
|
|
55
|
+
access,
|
|
56
|
+
&available,
|
|
57
|
+
)
|
|
52
58
|
{
|
|
53
59
|
diagnostic = diagnostic.with_suggestion(
|
|
54
60
|
format!(
|
|
@@ -131,6 +137,7 @@ pub(super) fn type_has_readable_member(
|
|
|
131
137
|
}
|
|
132
138
|
|
|
133
139
|
pub(super) fn union_member_guard_suggestion(
|
|
140
|
+
source: Option<&str>,
|
|
134
141
|
module_path: &std::path::Path,
|
|
135
142
|
access: &typepython_binding::MemberAccessSite,
|
|
136
143
|
available_branches: &[String],
|
|
@@ -142,7 +149,7 @@ pub(super) fn union_member_guard_suggestion(
|
|
|
142
149
|
if guard_types.is_empty() {
|
|
143
150
|
return None;
|
|
144
151
|
}
|
|
145
|
-
let source =
|
|
152
|
+
let source = source?;
|
|
146
153
|
let line_text = source.lines().nth(access.line.checked_sub(1)?)?;
|
|
147
154
|
let indent = leading_space_count(line_text);
|
|
148
155
|
let guard = if guard_types.len() == 1 {
|
|
@@ -190,15 +190,12 @@ pub(super) fn method_override_incompatibility(
|
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
pub(super) fn missing_override_diagnostics<'a>(
|
|
193
|
+
context: &CheckerContext<'_>,
|
|
193
194
|
node: &'a typepython_graph::ModuleNode,
|
|
194
195
|
nodes: &'a [typepython_graph::ModuleNode],
|
|
195
196
|
) -> Vec<Diagnostic> {
|
|
196
197
|
let declarations = &node.declarations;
|
|
197
|
-
let source =
|
|
198
|
-
None
|
|
199
|
-
} else {
|
|
200
|
-
fs::read_to_string(&node.module_path).ok()
|
|
201
|
-
};
|
|
198
|
+
let source = context.load_source_text(node);
|
|
202
199
|
let mut diagnostics = Vec::new();
|
|
203
200
|
|
|
204
201
|
for declaration in declarations.iter().filter(|declaration| {
|
|
@@ -506,9 +503,11 @@ pub(super) fn resolve_direct_base<'a>(
|
|
|
506
503
|
}
|
|
507
504
|
|
|
508
505
|
pub(super) fn sealed_match_exhaustiveness_diagnostics(
|
|
506
|
+
context: &CheckerContext<'_>,
|
|
509
507
|
node: &typepython_graph::ModuleNode,
|
|
510
508
|
nodes: &[typepython_graph::ModuleNode],
|
|
511
509
|
) -> Vec<Diagnostic> {
|
|
510
|
+
let source = context.load_source_text(node);
|
|
512
511
|
node.matches
|
|
513
512
|
.iter()
|
|
514
513
|
.filter_map(|match_site| {
|
|
@@ -567,6 +566,7 @@ pub(super) fn sealed_match_exhaustiveness_diagnostics(
|
|
|
567
566
|
.collect::<Vec<_>>();
|
|
568
567
|
Some(attach_match_case_suggestion(
|
|
569
568
|
diagnostic,
|
|
569
|
+
source.as_deref(),
|
|
570
570
|
&node.module_path,
|
|
571
571
|
match_site,
|
|
572
572
|
&rendered_cases,
|
|
@@ -576,9 +576,11 @@ pub(super) fn sealed_match_exhaustiveness_diagnostics(
|
|
|
576
576
|
}
|
|
577
577
|
|
|
578
578
|
pub(super) fn enum_match_exhaustiveness_diagnostics(
|
|
579
|
+
context: &CheckerContext<'_>,
|
|
579
580
|
node: &typepython_graph::ModuleNode,
|
|
580
581
|
nodes: &[typepython_graph::ModuleNode],
|
|
581
582
|
) -> Vec<Diagnostic> {
|
|
583
|
+
let source = context.load_source_text(node);
|
|
582
584
|
node.matches
|
|
583
585
|
.iter()
|
|
584
586
|
.filter_map(|match_site| {
|
|
@@ -648,6 +650,7 @@ pub(super) fn enum_match_exhaustiveness_diagnostics(
|
|
|
648
650
|
.collect::<Vec<_>>();
|
|
649
651
|
Some(attach_match_case_suggestion(
|
|
650
652
|
diagnostic,
|
|
653
|
+
source.as_deref(),
|
|
651
654
|
&node.module_path,
|
|
652
655
|
match_site,
|
|
653
656
|
&rendered_cases,
|
|
@@ -657,9 +660,11 @@ pub(super) fn enum_match_exhaustiveness_diagnostics(
|
|
|
657
660
|
}
|
|
658
661
|
|
|
659
662
|
pub(super) fn literal_match_exhaustiveness_diagnostics(
|
|
663
|
+
context: &CheckerContext<'_>,
|
|
660
664
|
node: &typepython_graph::ModuleNode,
|
|
661
665
|
nodes: &[typepython_graph::ModuleNode],
|
|
662
666
|
) -> Vec<Diagnostic> {
|
|
667
|
+
let source = context.load_source_text(node);
|
|
663
668
|
node.matches
|
|
664
669
|
.iter()
|
|
665
670
|
.filter_map(|match_site| {
|
|
@@ -707,6 +712,7 @@ pub(super) fn literal_match_exhaustiveness_diagnostics(
|
|
|
707
712
|
missing.iter().map(|value| format!("case {value}:\n ...")).collect::<Vec<_>>();
|
|
708
713
|
Some(attach_match_case_suggestion(
|
|
709
714
|
diagnostic,
|
|
715
|
+
source.as_deref(),
|
|
710
716
|
&node.module_path,
|
|
711
717
|
match_site,
|
|
712
718
|
&rendered_cases,
|
|
@@ -717,13 +723,14 @@ pub(super) fn literal_match_exhaustiveness_diagnostics(
|
|
|
717
723
|
|
|
718
724
|
pub(super) fn attach_match_case_suggestion(
|
|
719
725
|
diagnostic: Diagnostic,
|
|
726
|
+
source: Option<&str>,
|
|
720
727
|
module_path: &std::path::Path,
|
|
721
728
|
match_site: &typepython_binding::MatchSite,
|
|
722
729
|
rendered_cases: &[String],
|
|
723
730
|
) -> Diagnostic {
|
|
724
|
-
let Some((span, replacement)) =
|
|
725
|
-
match_case_insertion_edit(module_path, match_site, rendered_cases)
|
|
726
|
-
else {
|
|
731
|
+
let Some((span, replacement)) = source.and_then(|source| {
|
|
732
|
+
match_case_insertion_edit(source, module_path, match_site, rendered_cases)
|
|
733
|
+
}) else {
|
|
727
734
|
return diagnostic;
|
|
728
735
|
};
|
|
729
736
|
diagnostic.with_suggestion(
|
|
@@ -735,6 +742,7 @@ pub(super) fn attach_match_case_suggestion(
|
|
|
735
742
|
}
|
|
736
743
|
|
|
737
744
|
pub(super) fn match_case_insertion_edit(
|
|
745
|
+
source: &str,
|
|
738
746
|
module_path: &std::path::Path,
|
|
739
747
|
match_site: &typepython_binding::MatchSite,
|
|
740
748
|
rendered_cases: &[String],
|
|
@@ -742,7 +750,6 @@ pub(super) fn match_case_insertion_edit(
|
|
|
742
750
|
if rendered_cases.is_empty() {
|
|
743
751
|
return None;
|
|
744
752
|
}
|
|
745
|
-
let source = fs::read_to_string(module_path).ok()?;
|
|
746
753
|
let lines = source.lines().collect::<Vec<_>>();
|
|
747
754
|
let match_line = *lines.get(match_site.line.checked_sub(1)?)?;
|
|
748
755
|
let match_indent = leading_space_count(match_line);
|