type-python 0.4.0__tar.gz → 1.0.0rc1__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.4.0 → type_python-1.0.0rc1}/Cargo.lock +13 -13
- {type_python-0.4.0 → type_python-1.0.0rc1}/Cargo.toml +1 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/PKG-INFO +47 -16
- {type_python-0.4.0 → type_python-1.0.0rc1}/README-PyPI.md +46 -15
- {type_python-0.4.0 → type_python-1.0.0rc1}/README.md +58 -34
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_binding/src/binding_impl.rs +1 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_binding/src/tests.rs +85 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/assignments.rs +153 -62
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/calls/call_diagnostics.rs +317 -95
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/calls/callable_resolution.rs +174 -28
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/calls/dataclass.rs +43 -11
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/calls/member_access.rs +38 -10
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/calls/reporting.rs +73 -21
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/declarations.rs +47 -11
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/effects.rs +25 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/generic_solver.rs +193 -35
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/lib.rs +404 -94
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/semantic.rs +1683 -147
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/source_facts.rs +24 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/stubs.rs +61 -17
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/advanced.rs +237 -2
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/advanced_generics.rs +66 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/advanced_overloads.rs +119 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/calls.rs +186 -14
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/mod.rs +251 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/property_based.rs +2 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/semantic.rs +1441 -116
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/semantic_effects.rs +25 -25
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/semantic_taint.rs +136 -16
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/semantic_validator.rs +42 -11
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/typed_dict.rs +1 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_level.rs +43 -3
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/assignability.rs +421 -96
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/contextual.rs +276 -33
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/expressions.rs +274 -24
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/flow.rs +426 -81
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/flow_tests.rs +19 -2
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/imports.rs +49 -12
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/members.rs +55 -4
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/adapter.rs +5 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/api_diff.rs +2 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/main.rs +150 -28
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/migration.rs +2 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/pipeline/loading.rs +95 -20
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/pipeline/stubs.rs +12 -4
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/pipeline.rs +125 -42
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/consistency.rs +1 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/migration.rs +165 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/mod.rs +3 -3
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/pipeline.rs +454 -6
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/verification.rs +68 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/type_health.rs +6 -2
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/verification.rs +47 -20
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_config/src/lib.rs +210 -8
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/tests.rs +1 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_graph/src/lib.rs +105 -2
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_incremental/src/lib.rs +16 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/core.rs +181 -72
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/tests.rs +74 -2
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/typeddict.rs +1 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/benches/incremental.rs +37 -11
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/analysis.rs +21 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/lib.rs +29 -2
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/server.rs +30 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/tests.rs +309 -31
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/workspace/lifecycle.rs +173 -49
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_project/src/lib.rs +570 -36
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/ast_backed.rs +12 -12
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/expr_metadata.rs +46 -2
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/tests.rs +85 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/metadata_collectors.rs +866 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/parsing.rs +76 -33
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/surface.rs +25 -17
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/type_expr.rs +3 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_target/src/lib.rs +9 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/pyproject.toml +1 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/setup.py +5 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/templates/typepython.toml +5 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/type_python.egg-info/PKG-INFO +47 -16
- {type_python-0.4.0 → type_python-1.0.0rc1}/typepython/__init__.py +1 -1
- {type_python-0.4.0 → type_python-1.0.0rc1}/typepython/_runner.py +21 -4
- {type_python-0.4.0 → type_python-1.0.0rc1}/LICENSE +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/MANIFEST.in +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_binding/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_binding/src/lib.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_binding/src/types.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/benches/checker.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/proptest-regressions/tests/property_based.txt +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/calls/mod.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/declaration_semantics.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/tests/semantic_type_level.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_core.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_checking/src/type_system/mod.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/scripts/runtime_importability.py +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/cli.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/compat.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/discovery.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/adapter.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/api_diff.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/compat.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_cli/src/tests/type_health.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_config/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_diagnostics/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_diagnostics/src/lib.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/lib.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/planning.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/runtime.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_migration_stub.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_shadow_stub.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_async_function.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_basic_module.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_class_with_methods.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_native_pep695_surface.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_overloaded_function.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_emit/src/stubs.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_graph/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_graph/benches/graph.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_incremental/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/benches/lower.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/lib.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_combined_typepython_constructs.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_imports_312.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_qualified_names_310.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class_with_bases.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_class_and_function.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_interface.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_typealias.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface_with_bases.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_lambda_annotation.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_fallback_defaults_312.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_generics_313.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_nested_unsafe_in_function.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_overload_def.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_paramspec.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_passthrough_python_source.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class_with_bases.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_type_param_with_bounds_constraints_defaults.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typealias.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typeddict_keyword_stripping.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_unsafe_block.snap +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/formatting.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/analysis/code_actions.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/analysis/mod.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/analysis/symbols.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/analysis/text.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/analysis/typing.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/mod.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/protocol.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/signature_help.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/sources.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/requests/symbols.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/scheduler.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/workspace/discovery.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/workspace/mod.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_lsp/src/workspace/state.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_project/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/benches/parse.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/proptest-regressions/lib.txt +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/lib.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/calls.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/control_flow.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/guards.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/lambdas.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction/syntax_extensions.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/extraction.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/formatting.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_syntax/src/syntax_parts/mod.rs +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/crates/typepython_target/Cargo.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/rust-toolchain.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/rustfmt.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/setup.cfg +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/BASELINE.toml +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/REFRESH_STATS.json +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/VERSIONS +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/__future__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/__main__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_ast.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_asyncio.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_bisect.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_blake2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_bootlocale.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_bz2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_codecs.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_collections_abc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_compat_pickle.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_compression.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_contextvars.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_csv.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_ctypes.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_curses.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_curses_panel.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_dbm.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_decimal.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_frozen_importlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_frozen_importlib_external.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_gdbm.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_hashlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_heapq.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_imp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_interpchannels.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_interpqueues.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_interpreters.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_io.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_json.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_locale.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_lsprof.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_lzma.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_markupbase.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_msi.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_multibytecodec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_operator.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_osx_support.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_pickle.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_posixsubprocess.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_py_abc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_pydecimal.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_queue.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_random.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_sitebuiltins.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_socket.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_sqlite3.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_ssl.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_stat.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_struct.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_thread.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_threading_local.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_tkinter.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_tracemalloc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_typeshed/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_typeshed/dbapi.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_typeshed/importlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_typeshed/wsgi.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_typeshed/xml.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_warnings.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_weakref.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_weakrefset.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_winapi.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/_zstd.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/abc/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/abc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/aifc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/annotationlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/antigravity.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/argparse.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/array.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ast.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asynchat.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/base_events.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/base_futures.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/base_subprocess.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/base_tasks.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/constants.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/coroutines.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/events.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/exceptions.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/format_helpers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/futures.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/graph.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/locks.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/log.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/mixins.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/proactor_events.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/protocols.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/queues.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/runners.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/selector_events.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/sslproto.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/staggered.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/streams.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/subprocess.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/taskgroups.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/tasks.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/threads.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/timeouts.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/tools.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/transports.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/trsock.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/unix_events.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/windows_events.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncio/windows_utils.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/asyncore.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/atexit.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/audioop.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/base64.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/bdb.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/binascii.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/binhex.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/bisect.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/builtins.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/bz2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/cProfile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/calendar.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/cgi.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/cgitb.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/chunk.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/cmath.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/cmd.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/code.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/codecs.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/codeop.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/collections/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/collections/abc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/colorsys.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compileall.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/_common/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/_common/_streams.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/bz2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/gzip.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/lzma.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/zlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/zstd/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/compression/zstd/_zstdfile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/futures/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/futures/_base.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/futures/interpreter.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/futures/process.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/futures/thread.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/interpreters/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/interpreters/_crossinterp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/concurrent/interpreters/_queues.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/configparser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/contextlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/contextvars.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/copy.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/copyreg.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/crypt.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/csv.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/_endian.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/macholib/framework.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ctypes/wintypes.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/curses/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/curses/ascii.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/curses/has_key.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/curses/panel.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/curses/textpad.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/dataclasses.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/datetime.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/dbm/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/dbm/dumb.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/dbm/gnu.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/dbm/ndbm.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/dbm/sqlite3.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/decimal.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/difflib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/dis.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/_msvccompiler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/archive_util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/bcppcompiler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/ccompiler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/cmd.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/bdist.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/build.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/build_clib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/build_ext.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/build_py.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/build_scripts.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/check.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/clean.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/config.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/install.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/install_data.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/install_headers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/install_lib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/install_scripts.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/register.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/sdist.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/command/upload.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/config.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/core.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/debug.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/dep_util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/dir_util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/dist.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/errors.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/extension.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/fancy_getopt.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/file_util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/filelist.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/log.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/msvccompiler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/spawn.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/sysconfig.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/text_file.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/unixccompiler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/distutils/version.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/doctest.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/_header_value_parser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/_policybase.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/base64mime.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/charset.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/contentmanager.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/encoders.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/errors.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/feedparser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/generator.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/header.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/headerregistry.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/iterators.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/message.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/application.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/audio.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/base.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/image.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/message.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/multipart.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/nonmultipart.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/mime/text.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/parser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/policy.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/quoprimime.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/email/utils.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/aliases.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/ascii.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/base64_codec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/big5.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/big5hkscs.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/bz2_codec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/charmap.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp037.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1006.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1026.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1125.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1140.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1250.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1251.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1252.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1253.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1254.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1255.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1256.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1257.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp1258.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp273.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp424.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp437.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp500.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp720.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp737.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp775.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp850.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp852.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp855.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp856.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp857.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp858.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp860.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp861.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp862.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp863.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp864.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp865.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp866.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp869.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp874.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp875.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp932.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp949.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/cp950.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/euc_jp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/euc_kr.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/gb18030.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/gb2312.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/gbk.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/hex_codec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/hp_roman8.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/hz.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/idna.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso2022_jp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso2022_kr.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_1.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_10.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_11.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_13.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_14.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_15.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_16.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_3.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_4.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_5.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_6.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_7.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_8.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/iso8859_9.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/johab.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/koi8_r.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/koi8_t.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/koi8_u.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/kz1048.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/latin_1.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_arabic.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_croatian.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_farsi.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_greek.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_iceland.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_latin2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_roman.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_romanian.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mac_turkish.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/mbcs.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/oem.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/palmos.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/ptcp154.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/punycode.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/quopri_codec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/rot_13.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/shift_jis.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/tis_620.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/undefined.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/unicode_escape.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_16.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_16_be.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_16_le.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_32.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_32_be.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_32_le.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_7.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_8.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/utf_8_sig.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/uu_codec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/encodings/zlib_codec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ensurepip/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/enum/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/enum.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/errno.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/faulthandler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/fcntl.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/filecmp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/fileinput.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/fnmatch.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/formatter.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/fractions.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ftplib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/functools.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/gc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/genericpath.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/getopt.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/getpass.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/gettext.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/glob.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/graphlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/grp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/gzip.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/hashlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/heapq.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/hmac.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/html/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/html/entities.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/html/parser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/http/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/http/client.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/http/cookiejar.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/http/cookies.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/http/server.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/imaplib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/imghdr.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/imp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/_abc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/_bootstrap.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/abc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/machinery.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/metadata/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/metadata/_meta.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/readers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/resources/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/resources/_common.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/resources/_functional.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/resources/abc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/resources/readers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/resources/simple.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/simple.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/importlib/util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/inspect.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/io.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ipaddress.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/itertools.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/json/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/json/decoder.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/json/encoder.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/json/scanner.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/json/tool.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/keyword.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixer_base.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/main.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pygram.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/pytree.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lib2to3/refactor.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/linecache.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/locale.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/logging/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/logging/config.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/logging/handlers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/lzma.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/mailbox.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/mailcap.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/marshal.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/math.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/mimetypes.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/mmap.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/modulefinder.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/msilib/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/msilib/schema.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/msilib/sequence.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/msilib/text.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/msvcrt.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/connection.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/context.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/forkserver.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/heap.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/managers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/pool.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/process.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/queues.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/reduction.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/spawn.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/synchronize.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/multiprocessing/util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/netrc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/nis.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/nntplib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/nt.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ntpath.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/nturl2path.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/numbers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/numpy/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/numpy/linalg/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/numpy/typing/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/opcode.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/operator.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/optparse.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/os/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/os/path.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ossaudiodev.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pandas/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/parser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pathlib/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pathlib/types.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pdb.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pickle.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pickletools.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pipes.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pkgutil.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/platform.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/plistlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/poplib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/posix.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/posixpath.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pprint.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/profile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pstats.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pty.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pwd.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/py_compile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pyclbr.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pydoc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pydoc_data/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pydoc_data/topics.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pyexpat/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pyexpat/errors.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/pyexpat/model.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/queue.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/quopri.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/random.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/re.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/readline.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/reprlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/requests/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/requests/sessions.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/resource.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/rlcompleter.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/runpy.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sched.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/secrets.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/select.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/selectors.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/shelve.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/shlex.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/shutil.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/signal.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/site.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/smtpd.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/smtplib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sndhdr.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/socket.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/socketserver.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/spwd.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sqlite3/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sqlite3/dbapi2.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sqlite3/dump.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sre_compile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sre_constants.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sre_parse.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/ssl.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/stat.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/statistics.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/string/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/string/templatelib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/stringprep.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/struct.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/subprocess.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sunau.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/symbol.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/symtable.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sys/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sys/_monitoring.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/sysconfig.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/syslog.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tabnanny.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tarfile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/telnetlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tempfile.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/termios.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/textwrap.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/this.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/threading.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/time.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/timeit.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/colorchooser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/commondialog.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/constants.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/dialog.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/dnd.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/filedialog.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/font.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/messagebox.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/scrolledtext.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/simpledialog.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/tix.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tkinter/ttk.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/token.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tokenize.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tomllib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/torch/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/torch/nn/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/trace.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/traceback.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tracemalloc.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/tty.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/turtle.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/types.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/typing.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/typing_extensions.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unicodedata.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/_log.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/async_case.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/case.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/loader.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/main.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/mock.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/result.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/runner.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/signals.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/suite.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/unittest/util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/urllib/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/urllib/error.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/urllib/parse.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/urllib/request.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/urllib/response.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/urllib/robotparser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/uu.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/uuid.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/venv/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/warnings.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wave.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/weakref.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/webbrowser.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/winreg.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/winsound.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wsgiref/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wsgiref/handlers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wsgiref/headers.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wsgiref/simple_server.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wsgiref/types.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wsgiref/util.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/wsgiref/validate.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xdrlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/domreg.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/minicompat.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/minidom.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/pulldom.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/etree/ElementPath.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/etree/ElementTree.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/etree/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/etree/cElementTree.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/parsers/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/parsers/expat/model.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/sax/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/sax/_exceptions.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/sax/expatreader.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/sax/handler.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/sax/saxutils.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xml/sax/xmlreader.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xmlrpc/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xmlrpc/client.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xmlrpc/server.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/xxlimited.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zipapp.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zipfile/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zipfile/_path/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zipfile/_path/glob.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zipimport.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zlib.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zoneinfo/__init__.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zoneinfo/_common.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/templates/src/app/__init__.tpy +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/type_python.egg-info/SOURCES.txt +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/type_python.egg-info/dependency_links.txt +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/type_python.egg-info/entry_points.txt +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/type_python.egg-info/top_level.txt +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/typepython/__main__.py +0 -0
- {type_python-0.4.0 → type_python-1.0.0rc1}/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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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 = "1.0.0-rc.1"
|
|
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: 1.0.0rc1
|
|
4
4
|
Summary: A statically-typed authoring language that compiles to standard Python
|
|
5
5
|
Author: unadlib
|
|
6
6
|
License-Expression: MIT
|
|
@@ -40,16 +40,25 @@ Dynamic: license-file
|
|
|
40
40
|
---
|
|
41
41
|
|
|
42
42
|
TypePython is a typed dialect of Python that compiles to standard `.py` + `.pyi`.
|
|
43
|
-
It brings TypeScript-class ergonomics — `sealed` classes, exhaustive `match`,
|
|
43
|
+
It brings author-time TypeScript-class ergonomics — `sealed` classes, exhaustive `match`,
|
|
44
44
|
strict null checks, `unknown`, `interface`, `data class` — to a language whose
|
|
45
45
|
output runs anywhere CPython runs.
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
47
|
+
Those stronger checks are enforced while authoring `.tpy`; emitted artifacts
|
|
48
|
+
remain standard Python and do not transfer every TypePython-only constraint to
|
|
49
|
+
downstream checkers.
|
|
50
|
+
|
|
51
|
+
**No custom runtime. No required per-checker plugin for emitted output. No vendor lock-in.**
|
|
52
|
+
|
|
53
|
+
> Status: **Core v1.0 RC** (v1.0.0-rc.1). Core syntax, config, `init`/`check`/
|
|
54
|
+
> `build`/`clean`/`verify`, Core checker semantics, diagnostic code identity,
|
|
55
|
+
> and emitted `.py`/`.pyi` compatibility are the release-candidate surfaces.
|
|
56
|
+
> Supported DX, Experimental opt-in, and Roadmap / prototype features remain
|
|
57
|
+
> outside the Core v1.0 RC compatibility promise and are tracked separately in
|
|
58
|
+
> the Experimental Feature Registry.
|
|
59
|
+
> This is not a full product-wide v1.0 RC: editor UX, VS Code packaging,
|
|
60
|
+
> `watch`, migration heuristics, and research slices remain outside the stable
|
|
61
|
+
> v1.0 promise until their own gates are complete.
|
|
53
62
|
> Bug reports and contributions are very welcome.
|
|
54
63
|
|
|
55
64
|
## Install
|
|
@@ -65,7 +74,9 @@ You now have `.typepython/build/` with `.py` + `.pyi` + `py.typed` ready for
|
|
|
65
74
|
any Python interpreter, IDE, or downstream type checker.
|
|
66
75
|
|
|
67
76
|
- **Wheels** are prebuilt for Windows AMD64, macOS x86_64, macOS arm64, and Linux x86_64.
|
|
68
|
-
Other platforms fall back to source and need Rust + `cargo`.
|
|
77
|
+
Other platforms fall back to source and need Rust + `cargo`. Wheels are tagged
|
|
78
|
+
`py3-none-<platform>` because the bundled Rust CLI is platform-specific while
|
|
79
|
+
the Python wrapper is ABI-independent.
|
|
69
80
|
- **Python**: the package bridge supports 3.9+; generated projects target Python 3.10 through 3.14.
|
|
70
81
|
|
|
71
82
|
## See it in 15 lines
|
|
@@ -90,7 +101,9 @@ def evaluate(expr: Expr) -> int:
|
|
|
90
101
|
```
|
|
91
102
|
|
|
92
103
|
`typepython build` lowers that to ordinary Python and writes a matching `.pyi`
|
|
93
|
-
that any modern type checker can consume — no TypePython runtime required.
|
|
104
|
+
that any modern type checker can consume — no TypePython runtime required. The
|
|
105
|
+
exhaustiveness proof happens before emit; downstream tools see a normal Python
|
|
106
|
+
class hierarchy.
|
|
94
107
|
|
|
95
108
|
## What you write vs. what ships
|
|
96
109
|
|
|
@@ -108,29 +121,43 @@ that any modern type checker can consume — no TypePython runtime required.
|
|
|
108
121
|
|
|
109
122
|
## Why not just mypy / pyright / PEP 695?
|
|
110
123
|
|
|
111
|
-
|
|
112
|
-
|
|
124
|
+
The comparison below is about `.tpy` authoring inside the package checked by
|
|
125
|
+
TypePython. Emitted `.py` / `.pyi` remain standard Python typing, so external
|
|
126
|
+
consumers do not automatically inherit TypePython-only constraints such as
|
|
127
|
+
sealed exhaustiveness or `unknown` strictness.
|
|
128
|
+
|
|
129
|
+
| Capability | mypy strict | pyright strict | PEP 695 `.py` | **TypePython `.tpy` authoring** |
|
|
130
|
+
| ------------------------------------------------------- | :---------: | :------------: | :-----------: | :--------------------------------: |
|
|
113
131
|
| `sealed class` + compiler-proved exhaustiveness | — | — | — | ✅ |
|
|
114
132
|
| `unknown` — safe dynamic boundary, must narrow | — | — | — | ✅ |
|
|
115
133
|
| `unsafe:` audit fence for `eval` / `exec` / `setattr` | — | — | — | ✅ |
|
|
116
134
|
| First-class `interface` / `data class` / `typealias` | via | via | via | keyword |
|
|
117
135
|
| Inline generics `def f[T]` on **any** target ≥ 3.10 | 3.12+ | 3.12+ | 3.12+ | ✅ |
|
|
118
136
|
| `TypedDict` transforms (`Partial`, `Pick`, `Readonly`…) | — | — | — | ✅ |
|
|
119
|
-
| Output consumed by mypy / pyright / ty unmodified
|
|
137
|
+
| Output consumed by mypy / pyright / basedpyright / ty unmodified | N/A | N/A | ✅ | ✅ |
|
|
120
138
|
|
|
121
139
|
TypePython doesn't replace those checkers. It sits **one step earlier**: you
|
|
122
140
|
author in `.tpy`, the compiler emits standard typed Python that those tools
|
|
123
141
|
then consume normally.
|
|
124
142
|
|
|
143
|
+
The strongest TypePython guarantees are author-time checks. Emitted artifacts
|
|
144
|
+
remain standard Python: sealed exhaustiveness, `unknown` strictness, and
|
|
145
|
+
`unsafe:` fences are enforced by TypePython during authoring, but external
|
|
146
|
+
checkers see the portable `.py` / `.pyi` boundary. Carrying TypePython-only
|
|
147
|
+
semantics across that boundary requires an opt-in sidecar, checker plugin, or
|
|
148
|
+
TypePython-aware consumer.
|
|
149
|
+
|
|
125
150
|
## What you also get
|
|
126
151
|
|
|
127
152
|
- **Rust-native, incremental compiler** — public-API fingerprints skip
|
|
128
153
|
downstream rechecks when only a body changes.
|
|
129
154
|
- **Full toolchain** — `init`, `check`, `build`, `watch`, `clean`, `verify`,
|
|
130
155
|
`compat`, `api-diff`, `type-health`, `migrate`, `lsp`.
|
|
131
|
-
- **LSP server** — hover, go to definition, references, rename,
|
|
132
|
-
signature help, real-time diagnostics, and code-action quick fixes.
|
|
133
|
-
|
|
156
|
+
- **Supported DX LSP server** — hover, go to definition, references, rename,
|
|
157
|
+
completions, signature help, real-time diagnostics, and code-action quick fixes.
|
|
158
|
+
The repository includes a source-installable VS Code extension plus copy-paste
|
|
159
|
+
setup for Neovim, Helix, Sublime Text, and Emacs. Editor UX and extension
|
|
160
|
+
packaging are still outside the Core v1.0 RC compatibility promise.
|
|
134
161
|
- **Standard, portable output** — emitted `.py` + `.pyi` work with mypy,
|
|
135
162
|
pyright, and ty out of the box. PEP 561 `py.typed` is written automatically.
|
|
136
163
|
- **Mixed projects** — `.tpy`, `.py`, and `.pyi` live in the same source tree.
|
|
@@ -151,6 +178,8 @@ typepython type-health --project . --fail-under 85
|
|
|
151
178
|
These catch missing/stale `py.typed`, wheel ↔ build-tree drift, multi-checker
|
|
152
179
|
portability gaps, public-API drift between releases, and runtime-annotation
|
|
153
180
|
hazards for frameworks that introspect annotations.
|
|
181
|
+
They validate the standard published surface; they do not make ordinary
|
|
182
|
+
downstream `.py` checkers enforce TypePython-only facts.
|
|
154
183
|
|
|
155
184
|
## Documentation
|
|
156
185
|
|
|
@@ -165,6 +194,8 @@ hazards for frameworks that introspect annotations.
|
|
|
165
194
|
- [Migration Guide](https://github.com/type-python/type-python/blob/main/docs/migration-guide.md)
|
|
166
195
|
- [Framework Adapters](https://github.com/type-python/type-python/blob/main/docs/framework-adapters.md)
|
|
167
196
|
- [Beta Readiness](https://github.com/type-python/type-python/blob/main/docs/beta-readiness.md)
|
|
197
|
+
- [Feature Status](https://github.com/type-python/type-python/blob/main/docs/feature-status.md)
|
|
198
|
+
- [Experimental Feature Registry](https://github.com/type-python/type-python/blob/main/docs/experimental-features.md)
|
|
168
199
|
- [Language Spec v1](https://github.com/type-python/type-python/blob/main/docs/spec/language-spec-v1.md)
|
|
169
200
|
|
|
170
201
|
## Links
|
|
@@ -11,16 +11,25 @@
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
TypePython is a typed dialect of Python that compiles to standard `.py` + `.pyi`.
|
|
14
|
-
It brings TypeScript-class ergonomics — `sealed` classes, exhaustive `match`,
|
|
14
|
+
It brings author-time TypeScript-class ergonomics — `sealed` classes, exhaustive `match`,
|
|
15
15
|
strict null checks, `unknown`, `interface`, `data class` — to a language whose
|
|
16
16
|
output runs anywhere CPython runs.
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
18
|
+
Those stronger checks are enforced while authoring `.tpy`; emitted artifacts
|
|
19
|
+
remain standard Python and do not transfer every TypePython-only constraint to
|
|
20
|
+
downstream checkers.
|
|
21
|
+
|
|
22
|
+
**No custom runtime. No required per-checker plugin for emitted output. No vendor lock-in.**
|
|
23
|
+
|
|
24
|
+
> Status: **Core v1.0 RC** (v1.0.0-rc.1). Core syntax, config, `init`/`check`/
|
|
25
|
+
> `build`/`clean`/`verify`, Core checker semantics, diagnostic code identity,
|
|
26
|
+
> and emitted `.py`/`.pyi` compatibility are the release-candidate surfaces.
|
|
27
|
+
> Supported DX, Experimental opt-in, and Roadmap / prototype features remain
|
|
28
|
+
> outside the Core v1.0 RC compatibility promise and are tracked separately in
|
|
29
|
+
> the Experimental Feature Registry.
|
|
30
|
+
> This is not a full product-wide v1.0 RC: editor UX, VS Code packaging,
|
|
31
|
+
> `watch`, migration heuristics, and research slices remain outside the stable
|
|
32
|
+
> v1.0 promise until their own gates are complete.
|
|
24
33
|
> Bug reports and contributions are very welcome.
|
|
25
34
|
|
|
26
35
|
## Install
|
|
@@ -36,7 +45,9 @@ You now have `.typepython/build/` with `.py` + `.pyi` + `py.typed` ready for
|
|
|
36
45
|
any Python interpreter, IDE, or downstream type checker.
|
|
37
46
|
|
|
38
47
|
- **Wheels** are prebuilt for Windows AMD64, macOS x86_64, macOS arm64, and Linux x86_64.
|
|
39
|
-
Other platforms fall back to source and need Rust + `cargo`.
|
|
48
|
+
Other platforms fall back to source and need Rust + `cargo`. Wheels are tagged
|
|
49
|
+
`py3-none-<platform>` because the bundled Rust CLI is platform-specific while
|
|
50
|
+
the Python wrapper is ABI-independent.
|
|
40
51
|
- **Python**: the package bridge supports 3.9+; generated projects target Python 3.10 through 3.14.
|
|
41
52
|
|
|
42
53
|
## See it in 15 lines
|
|
@@ -61,7 +72,9 @@ def evaluate(expr: Expr) -> int:
|
|
|
61
72
|
```
|
|
62
73
|
|
|
63
74
|
`typepython build` lowers that to ordinary Python and writes a matching `.pyi`
|
|
64
|
-
that any modern type checker can consume — no TypePython runtime required.
|
|
75
|
+
that any modern type checker can consume — no TypePython runtime required. The
|
|
76
|
+
exhaustiveness proof happens before emit; downstream tools see a normal Python
|
|
77
|
+
class hierarchy.
|
|
65
78
|
|
|
66
79
|
## What you write vs. what ships
|
|
67
80
|
|
|
@@ -79,29 +92,43 @@ that any modern type checker can consume — no TypePython runtime required.
|
|
|
79
92
|
|
|
80
93
|
## Why not just mypy / pyright / PEP 695?
|
|
81
94
|
|
|
82
|
-
|
|
83
|
-
|
|
95
|
+
The comparison below is about `.tpy` authoring inside the package checked by
|
|
96
|
+
TypePython. Emitted `.py` / `.pyi` remain standard Python typing, so external
|
|
97
|
+
consumers do not automatically inherit TypePython-only constraints such as
|
|
98
|
+
sealed exhaustiveness or `unknown` strictness.
|
|
99
|
+
|
|
100
|
+
| Capability | mypy strict | pyright strict | PEP 695 `.py` | **TypePython `.tpy` authoring** |
|
|
101
|
+
| ------------------------------------------------------- | :---------: | :------------: | :-----------: | :--------------------------------: |
|
|
84
102
|
| `sealed class` + compiler-proved exhaustiveness | — | — | — | ✅ |
|
|
85
103
|
| `unknown` — safe dynamic boundary, must narrow | — | — | — | ✅ |
|
|
86
104
|
| `unsafe:` audit fence for `eval` / `exec` / `setattr` | — | — | — | ✅ |
|
|
87
105
|
| First-class `interface` / `data class` / `typealias` | via | via | via | keyword |
|
|
88
106
|
| Inline generics `def f[T]` on **any** target ≥ 3.10 | 3.12+ | 3.12+ | 3.12+ | ✅ |
|
|
89
107
|
| `TypedDict` transforms (`Partial`, `Pick`, `Readonly`…) | — | — | — | ✅ |
|
|
90
|
-
| Output consumed by mypy / pyright / ty unmodified
|
|
108
|
+
| Output consumed by mypy / pyright / basedpyright / ty unmodified | N/A | N/A | ✅ | ✅ |
|
|
91
109
|
|
|
92
110
|
TypePython doesn't replace those checkers. It sits **one step earlier**: you
|
|
93
111
|
author in `.tpy`, the compiler emits standard typed Python that those tools
|
|
94
112
|
then consume normally.
|
|
95
113
|
|
|
114
|
+
The strongest TypePython guarantees are author-time checks. Emitted artifacts
|
|
115
|
+
remain standard Python: sealed exhaustiveness, `unknown` strictness, and
|
|
116
|
+
`unsafe:` fences are enforced by TypePython during authoring, but external
|
|
117
|
+
checkers see the portable `.py` / `.pyi` boundary. Carrying TypePython-only
|
|
118
|
+
semantics across that boundary requires an opt-in sidecar, checker plugin, or
|
|
119
|
+
TypePython-aware consumer.
|
|
120
|
+
|
|
96
121
|
## What you also get
|
|
97
122
|
|
|
98
123
|
- **Rust-native, incremental compiler** — public-API fingerprints skip
|
|
99
124
|
downstream rechecks when only a body changes.
|
|
100
125
|
- **Full toolchain** — `init`, `check`, `build`, `watch`, `clean`, `verify`,
|
|
101
126
|
`compat`, `api-diff`, `type-health`, `migrate`, `lsp`.
|
|
102
|
-
- **LSP server** — hover, go to definition, references, rename,
|
|
103
|
-
signature help, real-time diagnostics, and code-action quick fixes.
|
|
104
|
-
|
|
127
|
+
- **Supported DX LSP server** — hover, go to definition, references, rename,
|
|
128
|
+
completions, signature help, real-time diagnostics, and code-action quick fixes.
|
|
129
|
+
The repository includes a source-installable VS Code extension plus copy-paste
|
|
130
|
+
setup for Neovim, Helix, Sublime Text, and Emacs. Editor UX and extension
|
|
131
|
+
packaging are still outside the Core v1.0 RC compatibility promise.
|
|
105
132
|
- **Standard, portable output** — emitted `.py` + `.pyi` work with mypy,
|
|
106
133
|
pyright, and ty out of the box. PEP 561 `py.typed` is written automatically.
|
|
107
134
|
- **Mixed projects** — `.tpy`, `.py`, and `.pyi` live in the same source tree.
|
|
@@ -122,6 +149,8 @@ typepython type-health --project . --fail-under 85
|
|
|
122
149
|
These catch missing/stale `py.typed`, wheel ↔ build-tree drift, multi-checker
|
|
123
150
|
portability gaps, public-API drift between releases, and runtime-annotation
|
|
124
151
|
hazards for frameworks that introspect annotations.
|
|
152
|
+
They validate the standard published surface; they do not make ordinary
|
|
153
|
+
downstream `.py` checkers enforce TypePython-only facts.
|
|
125
154
|
|
|
126
155
|
## Documentation
|
|
127
156
|
|
|
@@ -136,6 +165,8 @@ hazards for frameworks that introspect annotations.
|
|
|
136
165
|
- [Migration Guide](https://github.com/type-python/type-python/blob/main/docs/migration-guide.md)
|
|
137
166
|
- [Framework Adapters](https://github.com/type-python/type-python/blob/main/docs/framework-adapters.md)
|
|
138
167
|
- [Beta Readiness](https://github.com/type-python/type-python/blob/main/docs/beta-readiness.md)
|
|
168
|
+
- [Feature Status](https://github.com/type-python/type-python/blob/main/docs/feature-status.md)
|
|
169
|
+
- [Experimental Feature Registry](https://github.com/type-python/type-python/blob/main/docs/experimental-features.md)
|
|
139
170
|
- [Language Spec v1](https://github.com/type-python/type-python/blob/main/docs/spec/language-spec-v1.md)
|
|
140
171
|
|
|
141
172
|
## Links
|
|
@@ -14,15 +14,16 @@
|
|
|
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-Core%20v1%
|
|
17
|
+
<a href="https://github.com/type-python/type-python/issues"><img src="https://img.shields.io/badge/status-Core%20v1.0%20RC-blue.svg" alt="Core v1.0 RC" /></a>
|
|
18
18
|
</p>
|
|
19
19
|
|
|
20
20
|
<p align="center">
|
|
21
21
|
TypePython is a typed dialect of Python that compiles to standard <code>.py</code> + <code>.pyi</code>.<br/>
|
|
22
|
-
It brings TypeScript-class ergonomics — <code>sealed</code> classes, exhaustive <code>match</code>,
|
|
22
|
+
It brings author-time TypeScript-class ergonomics — <code>sealed</code> classes, exhaustive <code>match</code>,
|
|
23
23
|
strict null checks, <code>unknown</code>, <code>interface</code>, <code>data class</code> —
|
|
24
24
|
to a language whose output runs anywhere CPython runs.<br/>
|
|
25
|
-
<
|
|
25
|
+
Those stronger checks are enforced while authoring <code>.tpy</code>; emitted artifacts remain standard Python and do not transfer every TypePython-only constraint to downstream checkers.<br/>
|
|
26
|
+
<em>No custom runtime. No required per-checker plugin for emitted output. No vendor lock-in.</em>
|
|
26
27
|
</p>
|
|
27
28
|
|
|
28
29
|
---
|
|
@@ -48,7 +49,7 @@ def evaluate(expr: Expr) -> int:
|
|
|
48
49
|
# Add a fourth subclass and TypePython tells you exactly where to update.
|
|
49
50
|
```
|
|
50
51
|
|
|
51
|
-
`typepython build` lowers that to ordinary Python and writes a matching `.pyi` that any modern type checker can consume:
|
|
52
|
+
`typepython build` lowers that to ordinary Python and writes a matching `.pyi` that any modern type checker can consume. The exhaustiveness proof happens before emit; downstream tools see a normal Python class hierarchy:
|
|
52
53
|
|
|
53
54
|
```python
|
|
54
55
|
# .typepython/build/app/expr.py # runs on stock CPython, no TypePython runtime
|
|
@@ -72,6 +73,7 @@ typepython build --project .
|
|
|
72
73
|
You now have `.typepython/build/` with `.py` + `.pyi` + `py.typed` ready for any Python interpreter, IDE, or downstream type checker.
|
|
73
74
|
|
|
74
75
|
> **Wheels** are prebuilt for Windows AMD64, macOS x86_64, macOS arm64, and Linux x86_64. Other platforms fall back to source and need Rust + `cargo`.
|
|
76
|
+
> Wheels are tagged `py3-none-<platform>` because the bundled Rust CLI is platform-specific while the Python wrapper is ABI-independent.
|
|
75
77
|
> **Python**: the package bridge supports 3.9+; generated projects target Python 3.10 through 3.14.
|
|
76
78
|
|
|
77
79
|
## What you actually write vs. what ships
|
|
@@ -94,23 +96,24 @@ Full lowering map: [`docs/interop.md`](docs/interop.md) · syntax tour: [`docs/s
|
|
|
94
96
|
|
|
95
97
|
Python's type story has gotten genuinely good. TypePython exists for the gaps that source-only annotations still can't close.
|
|
96
98
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
+
The comparison below is about `.tpy` authoring inside the package checked by TypePython. Emitted `.py` / `.pyi` remain standard Python typing, so external consumers do not automatically inherit TypePython-only constraints such as sealed exhaustiveness or `unknown` strictness.
|
|
100
|
+
|
|
101
|
+
| Capability | mypy strict | pyright strict | PEP 695 `.py` | **TypePython `.tpy` authoring** |
|
|
102
|
+
| ------------------------------------------------------- | :---------: | :------------: | :-----------: | :--------------------------------: |
|
|
99
103
|
| `sealed class` + compiler-proved exhaustiveness | — | — | — | ✅ |
|
|
100
104
|
| `unknown` — safe dynamic boundary, must narrow | — | — | — | ✅ |
|
|
101
105
|
| `unsafe:` audit fence for `eval` / `exec` / `setattr` | — | — | — | ✅ |
|
|
102
106
|
| First-class `interface` / `data class` / `typealias` | via | via | via | keyword |
|
|
103
107
|
| Inline generics `def f[T]` on **any** target ≥ 3.10 | 3.12+ | 3.12+ | 3.12+ | ✅ |
|
|
104
108
|
| `TypedDict` transforms (`Partial`, `Pick`, `Readonly`…) | — | — | — | ✅ |
|
|
105
|
-
|
|
|
106
|
-
| Output consumed by mypy / pyright / ty unmodified | N/A | N/A | ✅ | ✅ |
|
|
109
|
+
| Output consumed by mypy / pyright / basedpyright / ty unmodified | N/A | N/A | ✅ | ✅ |
|
|
107
110
|
|
|
108
111
|
TypePython doesn't replace those checkers. It sits **one step earlier**: you author in `.tpy`, the compiler emits standard typed Python that those tools then consume normally.
|
|
109
112
|
|
|
110
113
|
## Who this is for
|
|
111
114
|
|
|
112
115
|
- **Python developers who envy TypeScript.** You want sealed unions, exhaustiveness, `unknown`, strict nulls, and `interface` without inventing five mypy plugins to get there.
|
|
113
|
-
- **Library authors.** You publish a typed package and need `py.typed`, `.pyi`, wheel/sdist contents, and public-API drift to all stay in sync.
|
|
116
|
+
- **Library authors.** You publish a standard typed package and need `py.typed`, `.pyi`, wheel/sdist contents, and public-API drift to all stay in sync. TypePython-only safety applies inside the author package checked by TypePython; downstream users receive portable Python typing unless they also opt into TypePython-aware metadata or checking.
|
|
114
117
|
- **Application teams adopting types gradually.** Mix `.tpy`, `.py`, and `.pyi` in the same source tree; baseline existing debt; gate new debt with type-budgets.
|
|
115
118
|
- **Framework authors** (advanced, currently prototype). Describe your runtime-generated shape **once**, declaratively, and stop maintaining one plugin per checker.
|
|
116
119
|
- **Platform / typing owners.** Centralize multi-checker policy, dependency type-health checks, and framework adapters in CI.
|
|
@@ -139,7 +142,7 @@ Full reference: [`docs/cli-reference.md`](docs/cli-reference.md).
|
|
|
139
142
|
|
|
140
143
|
## Editor support
|
|
141
144
|
|
|
142
|
-
`typepython lsp --project .` is a stdio LSP server with:
|
|
145
|
+
`typepython lsp --project .` is a supported DX stdio LSP server with:
|
|
143
146
|
|
|
144
147
|
- real-time diagnostics, hover, go to definition, references, rename
|
|
145
148
|
- completions, signature help
|
|
@@ -147,25 +150,30 @@ Full reference: [`docs/cli-reference.md`](docs/cli-reference.md).
|
|
|
147
150
|
- code actions for migration and portability fixes
|
|
148
151
|
- project commands (`migrate`, `compat`, `type-health`, emitted-output preview, `Any` / `Unknown` source lookup)
|
|
149
152
|
|
|
150
|
-
|
|
153
|
+
The repository includes a source-installable VS Code extension under
|
|
154
|
+
[`editors/vscode`](editors/vscode). Neovim, Helix, Sublime Text, and Emacs can
|
|
155
|
+
launch the server with copy-paste LSP snippets. Editor UX, command names, and
|
|
156
|
+
extension packaging are not part of the Core v1.0 RC compatibility promise yet.
|
|
157
|
+
Setup snippets are in [`docs/lsp.md`](docs/lsp.md), and the promotion gate is
|
|
158
|
+
tracked in [`docs/dx-stability.md`](docs/dx-stability.md).
|
|
151
159
|
|
|
152
160
|
## Standard, portable output — by design
|
|
153
161
|
|
|
154
162
|
TypePython makes one strong promise about its output:
|
|
155
163
|
|
|
156
|
-
> Emitted `.py` and `.pyi`
|
|
164
|
+
> Emitted `.py` and `.pyi` use **standard Python syntax** and **standard Python typing constructs**. TypePython-specific metadata, when emitted, appears only as comments and is not required by CPython or downstream type checkers.
|
|
157
165
|
|
|
158
|
-
|
|
166
|
+
The stronger guarantee is for the package while it is authored and checked by TypePython. A few facts intentionally degrade to standard typing surfaces in consumer-facing artifacts:
|
|
159
167
|
|
|
160
|
-
| TypePython author-time
|
|
161
|
-
|
|
|
162
|
-
| `unknown` requires narrowing
|
|
163
|
-
| `sealed class` exhaustiveness
|
|
164
|
-
| `unsafe:` audit fence
|
|
165
|
-
| `TypedDict` transforms
|
|
166
|
-
| effect, taint, and witness facts
|
|
168
|
+
| TypePython author-time fact | Stability status | At the boundary |
|
|
169
|
+
| ----------------------------------- | ------------------------------- | ---------------------------------------------- |
|
|
170
|
+
| `unknown` requires narrowing | Stable Core v1 | lowers to `object` in `.pyi` |
|
|
171
|
+
| `sealed class` exhaustiveness | Stable Core v1 | external checkers see a normal class |
|
|
172
|
+
| `unsafe:` audit fence | Stable Core v1 | erased; lowered to valid Python |
|
|
173
|
+
| `TypedDict` transforms | Stable Core v1 | expanded to standard `TypedDict` shapes |
|
|
174
|
+
| effect, taint, and witness facts | Roadmap / prototype | checked at author-time; erased or sidecar-only |
|
|
167
175
|
|
|
168
|
-
This trade is intentional: **
|
|
176
|
+
This trade is intentional: **the author package gets stronger checks before publish; consumers get clean, portable Python they can read with mypy, pyright, basedpyright, ty, IDEs, and any PEP 561 tool**. Carrying TypePython-only semantics across that boundary would require an opt-in sidecar, checker plugin, or TypePython-aware consumer. See [`docs/interop.md`](docs/interop.md), [`docs/feature-status.md`](docs/feature-status.md), and [`docs/author-time-semantics.md`](docs/author-time-semantics.md).
|
|
169
177
|
|
|
170
178
|
## For library and framework authors
|
|
171
179
|
|
|
@@ -181,7 +189,7 @@ typepython api-diff dist/previous.whl .typepython/build
|
|
|
181
189
|
typepython type-health --project . --fail-under 85
|
|
182
190
|
```
|
|
183
191
|
|
|
184
|
-
These catch missing/stale `py.typed`, wheel ↔ build-tree drift, multi-checker portability gaps, public-API drift between releases, and runtime-annotation hazards for frameworks that introspect annotations.
|
|
192
|
+
These catch missing/stale `py.typed`, wheel ↔ build-tree drift, multi-checker portability gaps, public-API drift between releases, and runtime-annotation hazards for frameworks that introspect annotations. They validate the standard published surface; they do not make ordinary downstream `.py` checkers enforce TypePython-only facts.
|
|
185
193
|
|
|
186
194
|
**Framework shape adapters** *(prototype tier)* — describe a runtime-generated API once, lower it into `.pyi` declaratively, and skip per-checker plugins:
|
|
187
195
|
|
|
@@ -198,23 +206,33 @@ class BaseModel: ...
|
|
|
198
206
|
|
|
199
207
|
## Project status
|
|
200
208
|
|
|
201
|
-
TypePython is **Core v1
|
|
202
|
-
configuration, `init`/`check`/`build`/`clean`/`verify`,
|
|
203
|
-
`.py`/`.pyi` compatibility are the
|
|
204
|
-
|
|
209
|
+
TypePython is **Core v1.0 RC** (v1.0.0-rc.1). The release-candidate claim is deliberately scoped:
|
|
210
|
+
Core syntax and checker semantics, configuration, `init`/`check`/`build`/`clean`/`verify`,
|
|
211
|
+
diagnostic code identity, and emitted `.py`/`.pyi` compatibility are the release-candidate
|
|
212
|
+
surfaces. Supported DX, Experimental opt-in, and Roadmap / prototype features ship for feedback but
|
|
213
|
+
are not compatibility-stable. See
|
|
214
|
+
[`docs/beta-readiness.md`](docs/beta-readiness.md),
|
|
215
|
+
[`docs/feature-status.md`](docs/feature-status.md), and
|
|
216
|
+
[`docs/experimental-features.md`](docs/experimental-features.md).
|
|
217
|
+
|
|
218
|
+
This is not a full product-wide v1.0 RC. It does not promote editor UX, VS Code packaging, `watch`,
|
|
219
|
+
migration heuristics, or research slices to stable v1.0 commitments; those remain Supported DX,
|
|
220
|
+
Experimental opt-in, or Roadmap / prototype until their own gates are complete.
|
|
205
221
|
|
|
206
222
|
The breakdown:
|
|
207
223
|
|
|
208
|
-
| Tier
|
|
209
|
-
|
|
|
210
|
-
| **Core v1
|
|
211
|
-
| **DX
|
|
212
|
-
| **Experimental** |
|
|
224
|
+
| Tier | What's there |
|
|
225
|
+
| ---- | ------------ |
|
|
226
|
+
| **Stable Core v1** | `.tpy` Core syntax; Core checker semantics for TypePython-checked author packages, such as sealed exhaustiveness, `unknown` narrowing, `unsafe:` fences, and supported `TypedDict` transforms; 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. |
|
|
227
|
+
| **Supported DX, non-stable** | `watch`, LSP UX details, `compat`, `api-diff`, `type-health`, `migrate`, checker portability profiles, type budgets, and migration dashboards. |
|
|
228
|
+
| **Experimental opt-in** | runtime validators, shape projection beyond `TypedDict`, conditional return syntax, pass-through `.py` inference, sync/async dual emit paths, and other opt-in research slices. |
|
|
229
|
+
| **Roadmap / prototype** | framework adapter manifests and SDK details, effect/capability rows beyond `unsafe:`, taint facts, validator witnesses, notebook ingestion, and other deferred research tracks. |
|
|
213
230
|
|
|
214
231
|
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).
|
|
215
232
|
|
|
216
|
-
> **
|
|
217
|
-
> contract is
|
|
233
|
+
> **Core v1.0 RC does not mean all roadmap features are stable.** It means the Core v1 authoring
|
|
234
|
+
> and emit contract is in release-candidate status while DX and Experimental surfaces continue to
|
|
235
|
+
> evolve.
|
|
218
236
|
|
|
219
237
|
## Configuration
|
|
220
238
|
|
|
@@ -233,6 +251,9 @@ strict_nulls = true
|
|
|
233
251
|
[emit]
|
|
234
252
|
emit_pyi = true
|
|
235
253
|
no_emit_on_error = true
|
|
254
|
+
|
|
255
|
+
[experimental]
|
|
256
|
+
accepted_features = [] # add feature ids before enabling unstable gates
|
|
236
257
|
```
|
|
237
258
|
|
|
238
259
|
Full reference: [`docs/configuration.md`](docs/configuration.md).
|
|
@@ -248,7 +269,7 @@ Full reference: [`docs/configuration.md`](docs/configuration.md).
|
|
|
248
269
|
| [`config-loader/`](examples/config-loader/) | `unknown`, unsafe boundaries, trust-boundary parsing patterns |
|
|
249
270
|
| [`event-system/`](examples/event-system/) | sealed events, interfaces, data classes, generics |
|
|
250
271
|
| [`showcase/`](examples/showcase/) | multi-file feature showcase |
|
|
251
|
-
| [`research-roadmap-demo/`](examples/research-roadmap-demo/) |
|
|
272
|
+
| [`research-roadmap-demo/`](examples/research-roadmap-demo/) | Roadmap / prototype slices only; not a Core v1 stability claim |
|
|
252
273
|
|
|
253
274
|
Framework and downstream-checker fixtures: [`test-fixtures/downstream-checkers/`](test-fixtures/downstream-checkers/).
|
|
254
275
|
|
|
@@ -289,7 +310,10 @@ Full guide: [`docs/migration-guide.md`](docs/migration-guide.md).
|
|
|
289
310
|
| You're adopting it in an existing codebase | [Migration Guide](docs/migration-guide.md) |
|
|
290
311
|
| You're a framework author | [Framework Adapters](docs/framework-adapters.md) |
|
|
291
312
|
| You're evaluating Beta stability | [Beta Readiness](docs/beta-readiness.md) |
|
|
313
|
+
| You're checking feature stability | [Feature Status](docs/feature-status.md) |
|
|
314
|
+
| You're checking experimental gates | [Experimental Feature Registry](docs/experimental-features.md) |
|
|
292
315
|
| You want the crate map / pipeline diagram | [Architecture](docs/architecture.md) |
|
|
316
|
+
| You're tracking post-RC refactor debt | [Maintainability Plan](docs/maintainability-plan.md) |
|
|
293
317
|
| You're evaluating the P0-P4 research slices | [Author-Time Semantics](docs/author-time-semantics.md) |
|
|
294
318
|
| You're sending a PR | [Contributing](docs/contributing.md) |
|
|
295
319
|
| You have a quick question | [FAQ](docs/faq.md) |
|