type-python 0.0.7__tar.gz → 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {type_python-0.0.7 → type_python-0.1.0}/Cargo.lock +1 -0
- {type_python-0.0.7 → type_python-0.1.0}/Cargo.toml +1 -0
- {type_python-0.0.7 → type_python-0.1.0}/PKG-INFO +1 -1
- {type_python-0.0.7 → type_python-0.1.0}/README.md +4 -3
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_binding/src/types.rs +8 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/generic_solver.rs +137 -246
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/lib.rs +5 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/tests/advanced.rs +0 -837
- type_python-0.1.0/crates/typepython_checking/src/tests/advanced_generics.rs +838 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/tests/mod.rs +1 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/Cargo.toml +1 -0
- type_python-0.1.0/crates/typepython_cli/src/pipeline/loading.rs +207 -0
- type_python-0.1.0/crates/typepython_cli/src/pipeline/stubs.rs +180 -0
- type_python-0.1.0/crates/typepython_cli/src/pipeline.rs +679 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/tests/mod.rs +31 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/tests/pipeline.rs +2 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/verification.rs +249 -195
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/runtime.rs +1 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/stubs.rs +1 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_incremental/src/lib.rs +91 -3
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_project/src/lib.rs +235 -0
- {type_python-0.0.7 → type_python-0.1.0}/pyproject.toml +1 -1
- {type_python-0.0.7 → type_python-0.1.0}/type_python.egg-info/PKG-INFO +1 -1
- {type_python-0.0.7 → type_python-0.1.0}/type_python.egg-info/SOURCES.txt +3 -0
- type_python-0.0.7/crates/typepython_cli/src/pipeline.rs +0 -936
- {type_python-0.0.7 → type_python-0.1.0}/LICENSE +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/MANIFEST.in +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/README-PyPI.md +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_binding/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_binding/src/binding_impl.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_binding/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_binding/src/tests.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/benches/checker.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/assignments.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/calls/call_diagnostics.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/calls/callable_resolution.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/calls/dataclass.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/calls/member_access.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/calls/mod.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/calls/reporting.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/declaration_semantics.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/declarations.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/semantic.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/stubs.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/tests/calls.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/tests/semantic.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/tests/typed_dict.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_core.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_system/assignability.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_system/contextual.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_system/expressions.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_system/flow.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_system/imports.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_system/members.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_checking/src/type_system/mod.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/scripts/runtime_importability.py +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/scripts/static_all_names.py +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/cli.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/discovery.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/main.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/migration.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/tests/consistency.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/tests/migration.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_cli/src/tests/verification.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_config/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_config/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_diagnostics/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_diagnostics/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/planning.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_migration_stub.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_shadow_stub.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_async_function.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_basic_module.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_class_with_methods.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_overloaded_function.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_emit/src/tests.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_graph/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_graph/benches/graph.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_graph/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_incremental/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/benches/lower.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/core.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_combined_typepython_constructs.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_imports_312.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_qualified_names_310.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class_with_bases.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_class_and_function.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_interface.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_typealias.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface_with_bases.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_lambda_annotation.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_nested_unsafe_in_function.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_overload_def.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_paramspec.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_passthrough_python_source.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class_with_bases.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_type_param_with_bounds_constraints_defaults.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typealias.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typeddict_keyword_stripping.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_unsafe_block.snap +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/tests.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lowering/src/typeddict.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/benches/incremental.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/analysis.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/formatting.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/analysis/code_actions.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/analysis/mod.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/analysis/symbols.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/analysis/text.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/analysis/typing.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/mod.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/protocol.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/signature_help.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/sources.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/requests/symbols.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/scheduler.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/server.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/tests.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/workspace/discovery.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/workspace/lifecycle.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/workspace/mod.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_lsp/src/workspace/state.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_project/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/Cargo.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/benches/parse.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/proptest-regressions/lib.txt +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/lib.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/syntax_parts/extraction.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/syntax_parts/formatting.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/syntax_parts/metadata_collectors.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/syntax_parts/mod.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/syntax_parts/parsing.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/syntax_parts/surface.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/crates/typepython_syntax/src/syntax_parts/type_expr.rs +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/rust-toolchain.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/rustfmt.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/setup.cfg +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/setup.py +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/VERSIONS +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/__future__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/__main__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_ast.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_asyncio.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_bisect.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_blake2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_bootlocale.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_bz2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_codecs.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_collections_abc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_compat_pickle.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_compression.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_contextvars.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_csv.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_ctypes.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_curses.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_curses_panel.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_dbm.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_decimal.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_frozen_importlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_frozen_importlib_external.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_gdbm.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_hashlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_heapq.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_imp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_interpchannels.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_interpqueues.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_interpreters.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_io.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_json.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_locale.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_lsprof.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_lzma.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_markupbase.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_msi.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_multibytecodec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_operator.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_osx_support.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_pickle.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_posixsubprocess.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_py_abc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_pydecimal.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_queue.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_random.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_sitebuiltins.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_socket.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_sqlite3.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_ssl.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_stat.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_struct.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_thread.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_threading_local.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_tkinter.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_tracemalloc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_typeshed/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_typeshed/dbapi.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_typeshed/importlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_typeshed/wsgi.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_typeshed/xml.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_warnings.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_weakref.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_weakrefset.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_winapi.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/_zstd.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/abc/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/abc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/aifc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/annotationlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/antigravity.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/argparse.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/array.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ast.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asynchat.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/base_events.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/base_futures.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/base_subprocess.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/base_tasks.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/constants.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/coroutines.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/events.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/exceptions.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/format_helpers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/futures.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/graph.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/locks.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/log.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/mixins.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/proactor_events.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/protocols.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/queues.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/runners.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/selector_events.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/sslproto.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/staggered.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/streams.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/subprocess.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/taskgroups.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/tasks.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/threads.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/timeouts.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/tools.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/transports.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/trsock.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/unix_events.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/windows_events.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncio/windows_utils.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/asyncore.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/atexit.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/audioop.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/base64.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/bdb.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/binascii.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/binhex.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/bisect.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/builtins.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/bz2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/cProfile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/calendar.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/cgi.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/cgitb.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/chunk.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/cmath.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/cmd.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/code.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/codecs.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/codeop.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/collections/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/collections/abc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/colorsys.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compileall.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/_common/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/_common/_streams.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/bz2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/gzip.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/lzma.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/zlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/zstd/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/compression/zstd/_zstdfile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/futures/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/futures/_base.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/futures/interpreter.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/futures/process.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/futures/thread.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/interpreters/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/interpreters/_crossinterp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/concurrent/interpreters/_queues.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/configparser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/contextlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/contextvars.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/copy.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/copyreg.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/crypt.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/csv.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/_endian.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/macholib/framework.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ctypes/wintypes.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/curses/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/curses/ascii.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/curses/has_key.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/curses/panel.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/curses/textpad.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/dataclasses.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/datetime.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/dbm/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/dbm/dumb.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/dbm/gnu.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/dbm/ndbm.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/dbm/sqlite3.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/decimal.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/difflib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/dis.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/_msvccompiler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/archive_util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/bcppcompiler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/ccompiler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/cmd.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/bdist.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/build.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/build_clib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/build_ext.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/build_py.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/build_scripts.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/check.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/clean.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/config.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/install.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/install_data.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/install_headers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/install_lib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/install_scripts.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/register.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/sdist.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/command/upload.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/config.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/core.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/debug.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/dep_util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/dir_util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/dist.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/errors.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/extension.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/fancy_getopt.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/file_util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/filelist.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/log.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/msvccompiler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/spawn.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/sysconfig.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/text_file.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/unixccompiler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/distutils/version.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/doctest.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/_header_value_parser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/_policybase.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/base64mime.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/charset.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/contentmanager.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/encoders.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/errors.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/feedparser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/generator.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/header.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/headerregistry.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/iterators.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/message.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/application.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/audio.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/base.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/image.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/message.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/multipart.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/nonmultipart.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/mime/text.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/parser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/policy.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/quoprimime.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/email/utils.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/aliases.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/ascii.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/base64_codec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/big5.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/big5hkscs.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/bz2_codec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/charmap.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp037.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1006.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1026.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1125.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1140.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1250.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1251.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1252.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1253.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1254.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1255.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1256.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1257.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp1258.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp273.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp424.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp437.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp500.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp720.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp737.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp775.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp850.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp852.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp855.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp856.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp857.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp858.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp860.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp861.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp862.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp863.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp864.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp865.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp866.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp869.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp874.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp875.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp932.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp949.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/cp950.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/euc_jp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/euc_kr.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/gb18030.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/gb2312.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/gbk.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/hex_codec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/hp_roman8.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/hz.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/idna.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso2022_jp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso2022_kr.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_1.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_10.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_11.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_13.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_14.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_15.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_16.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_3.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_4.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_5.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_6.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_7.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_8.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/iso8859_9.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/johab.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/koi8_r.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/koi8_t.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/koi8_u.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/kz1048.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/latin_1.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_arabic.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_croatian.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_farsi.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_greek.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_iceland.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_latin2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_roman.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_romanian.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mac_turkish.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/mbcs.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/oem.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/palmos.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/ptcp154.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/punycode.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/quopri_codec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/rot_13.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/shift_jis.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/tis_620.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/undefined.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/unicode_escape.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_16.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_16_be.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_16_le.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_32.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_32_be.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_32_le.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_7.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_8.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/utf_8_sig.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/uu_codec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/encodings/zlib_codec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ensurepip/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/enum/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/enum.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/errno.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/faulthandler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/fcntl.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/filecmp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/fileinput.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/fnmatch.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/formatter.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/fractions.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ftplib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/functools.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/gc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/genericpath.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/getopt.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/getpass.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/gettext.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/glob.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/graphlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/grp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/gzip.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/hashlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/heapq.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/hmac.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/html/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/html/entities.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/html/parser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/http/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/http/client.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/http/cookiejar.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/http/cookies.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/http/server.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/imaplib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/imghdr.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/imp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/_abc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/_bootstrap.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/abc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/machinery.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/metadata/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/metadata/_meta.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/readers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/resources/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/resources/_common.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/resources/_functional.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/resources/abc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/resources/readers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/resources/simple.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/simple.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/importlib/util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/inspect.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/io.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ipaddress.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/itertools.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/json/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/json/decoder.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/json/encoder.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/json/scanner.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/json/tool.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/keyword.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixer_base.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/main.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pygram.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/pytree.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lib2to3/refactor.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/linecache.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/locale.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/logging/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/logging/config.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/logging/handlers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/lzma.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/mailbox.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/mailcap.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/marshal.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/math.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/mimetypes.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/mmap.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/modulefinder.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/msilib/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/msilib/schema.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/msilib/sequence.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/msilib/text.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/msvcrt.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/connection.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/context.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/forkserver.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/heap.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/managers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/pool.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/process.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/queues.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/reduction.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/spawn.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/synchronize.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/multiprocessing/util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/netrc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/nis.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/nntplib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/nt.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ntpath.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/nturl2path.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/numbers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/numpy/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/numpy/linalg/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/numpy/typing/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/opcode.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/operator.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/optparse.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/os/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/os/path.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ossaudiodev.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pandas/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/parser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pathlib/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pathlib/types.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pdb.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pickle.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pickletools.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pipes.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pkgutil.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/platform.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/plistlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/poplib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/posix.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/posixpath.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pprint.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/profile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pstats.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pty.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pwd.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/py_compile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pyclbr.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pydoc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pydoc_data/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pydoc_data/topics.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pyexpat/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pyexpat/errors.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/pyexpat/model.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/queue.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/quopri.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/random.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/re.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/readline.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/reprlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/requests/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/requests/sessions.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/resource.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/rlcompleter.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/runpy.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sched.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/secrets.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/select.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/selectors.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/shelve.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/shlex.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/shutil.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/signal.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/site.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/smtpd.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/smtplib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sndhdr.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/socket.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/socketserver.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/spwd.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sqlite3/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sqlite3/dbapi2.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sqlite3/dump.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sre_compile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sre_constants.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sre_parse.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/ssl.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/stat.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/statistics.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/string/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/string/templatelib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/stringprep.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/struct.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/subprocess.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sunau.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/symbol.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/symtable.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sys/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sys/_monitoring.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/sysconfig.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/syslog.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tabnanny.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tarfile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/telnetlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tempfile.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/termios.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/textwrap.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/this.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/threading.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/time.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/timeit.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/colorchooser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/commondialog.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/constants.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/dialog.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/dnd.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/filedialog.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/font.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/messagebox.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/scrolledtext.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/simpledialog.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/tix.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tkinter/ttk.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/token.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tokenize.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tomllib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/torch/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/torch/nn/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/trace.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/traceback.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tracemalloc.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/tty.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/turtle.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/types.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/typing.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/typing_extensions.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unicodedata.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/_log.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/async_case.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/case.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/loader.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/main.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/mock.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/result.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/runner.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/signals.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/suite.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/unittest/util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/urllib/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/urllib/error.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/urllib/parse.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/urllib/request.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/urllib/response.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/urllib/robotparser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/uu.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/uuid.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/venv/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/warnings.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wave.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/weakref.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/webbrowser.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/winreg.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/winsound.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wsgiref/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wsgiref/handlers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wsgiref/headers.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wsgiref/simple_server.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wsgiref/types.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wsgiref/util.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/wsgiref/validate.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xdrlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/domreg.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/minicompat.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/minidom.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/pulldom.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/etree/ElementPath.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/etree/ElementTree.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/etree/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/etree/cElementTree.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/parsers/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/parsers/expat/model.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/sax/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/sax/_exceptions.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/sax/expatreader.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/sax/handler.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/sax/saxutils.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xml/sax/xmlreader.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xmlrpc/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xmlrpc/client.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xmlrpc/server.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/xxlimited.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zipapp.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zipfile/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zipfile/_path/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zipfile/_path/glob.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zipimport.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zlib.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zoneinfo/__init__.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zoneinfo/_common.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/templates/src/app/__init__.tpy +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/templates/typepython.toml +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/type_python.egg-info/dependency_links.txt +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/type_python.egg-info/entry_points.txt +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/type_python.egg-info/top_level.txt +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/typepython/__init__.py +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/typepython/__main__.py +0 -0
- {type_python-0.0.7 → type_python-0.1.0}/typepython/_runner.py +0 -0
|
@@ -142,7 +142,7 @@ typepython verify --project . # Validate for publication
|
|
|
142
142
|
typepython migrate --project . --report # Migration coverage report
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
Project-oriented commands
|
|
145
|
+
Project-oriented commands `check`, `build`, `watch`, `verify`, and `migrate` support `--format text|json`. `clean` does not. `typepython lsp` speaks JSON-RPC over stdio rather than CLI JSON output. See [CLI reference](docs/cli-reference.md).
|
|
146
146
|
|
|
147
147
|
## Configuration
|
|
148
148
|
|
|
@@ -186,9 +186,10 @@ See [configuration reference](docs/configuration.md).
|
|
|
186
186
|
## Contributing
|
|
187
187
|
|
|
188
188
|
```bash
|
|
189
|
-
make ci # format + lint + test + bench-check + package-check
|
|
190
|
-
make test # run
|
|
189
|
+
make ci # format + lint + split test suites + bench-check + package-check
|
|
190
|
+
make test # run the full workspace test suite
|
|
191
191
|
make bench # run performance benchmarks
|
|
192
|
+
make bump-version VERSION=0.0.8 # sync Rust + Python package versions
|
|
192
193
|
make snapshot-review # review insta snapshot changes
|
|
193
194
|
```
|
|
194
195
|
|
|
@@ -60,12 +60,14 @@ pub struct ModuleSurfaceFacts {
|
|
|
60
60
|
pub dataclass_transform_module_info: typepython_syntax::DataclassTransformModuleInfo,
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
/// Wrapper around a parsed type expression captured from bound source text.
|
|
63
64
|
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
|
64
65
|
pub struct BoundTypeExpr {
|
|
65
66
|
pub expr: typepython_syntax::TypeExpr,
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
impl BoundTypeExpr {
|
|
70
|
+
/// Parses text into a bound type expression, falling back to a name node when parsing fails.
|
|
69
71
|
#[must_use]
|
|
70
72
|
pub fn new(text: impl Into<String>) -> Self {
|
|
71
73
|
let text = text.into();
|
|
@@ -75,23 +77,27 @@ impl BoundTypeExpr {
|
|
|
75
77
|
}
|
|
76
78
|
}
|
|
77
79
|
|
|
80
|
+
/// Wraps an already parsed type expression.
|
|
78
81
|
#[must_use]
|
|
79
82
|
pub fn from_expr(expr: typepython_syntax::TypeExpr) -> Self {
|
|
80
83
|
Self { expr }
|
|
81
84
|
}
|
|
82
85
|
|
|
86
|
+
/// Renders the bound expression back to canonical text form.
|
|
83
87
|
#[must_use]
|
|
84
88
|
pub fn render(&self) -> String {
|
|
85
89
|
self.expr.render()
|
|
86
90
|
}
|
|
87
91
|
}
|
|
88
92
|
|
|
93
|
+
/// Resolved symbol portion of an import target such as `pkg.mod.Name`.
|
|
89
94
|
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
|
90
95
|
pub struct BoundImportSymbolTarget {
|
|
91
96
|
pub module_key: String,
|
|
92
97
|
pub symbol_name: String,
|
|
93
98
|
}
|
|
94
99
|
|
|
100
|
+
/// Structured import target extracted from a declaration.
|
|
95
101
|
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
|
96
102
|
pub struct BoundImportTarget {
|
|
97
103
|
pub raw_target: String,
|
|
@@ -100,6 +106,7 @@ pub struct BoundImportTarget {
|
|
|
100
106
|
}
|
|
101
107
|
|
|
102
108
|
impl BoundImportTarget {
|
|
109
|
+
/// Builds a structured import target from the source-authored raw import string.
|
|
103
110
|
#[must_use]
|
|
104
111
|
pub fn new(raw_target: impl Into<String>) -> Self {
|
|
105
112
|
let raw_target = raw_target.into();
|
|
@@ -112,6 +119,7 @@ impl BoundImportTarget {
|
|
|
112
119
|
}
|
|
113
120
|
}
|
|
114
121
|
|
|
122
|
+
/// Bound callable signature used by later graph and checker phases.
|
|
115
123
|
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
|
116
124
|
pub struct BoundCallableSignature {
|
|
117
125
|
pub params: Vec<typepython_syntax::DirectFunctionParamSite>,
|
|
@@ -253,6 +253,111 @@ impl GenericSolverState {
|
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
255
|
|
|
256
|
+
fn infer_variadic_annotation_bindings_detailed(
|
|
257
|
+
solver: &mut GenericSolverState,
|
|
258
|
+
node: &typepython_graph::ModuleNode,
|
|
259
|
+
nodes: &[typepython_graph::ModuleNode],
|
|
260
|
+
annotation: &SemanticType,
|
|
261
|
+
positional_types: &[String],
|
|
262
|
+
positional_index: usize,
|
|
263
|
+
variadic_starred_types: &[String],
|
|
264
|
+
) -> Result<(), GenericSolveFailure> {
|
|
265
|
+
if extract_param_spec_args_name_from_semantic(annotation).is_some() {
|
|
266
|
+
return Ok(());
|
|
267
|
+
}
|
|
268
|
+
if let Some(type_pack_name) =
|
|
269
|
+
type_pack_name_from_unpack_semantic_annotation(annotation, &solver.metadata.type_pack_names)
|
|
270
|
+
{
|
|
271
|
+
let fixed_types = positional_types[positional_index..]
|
|
272
|
+
.iter()
|
|
273
|
+
.map(|ty| lower_type_text_or_name(ty))
|
|
274
|
+
.collect::<Vec<_>>();
|
|
275
|
+
let variadic_tail = if variadic_starred_types.is_empty() {
|
|
276
|
+
None
|
|
277
|
+
} else {
|
|
278
|
+
Some(join_semantic_type_candidates(
|
|
279
|
+
variadic_starred_types.iter().map(|ty| lower_type_text_or_name(ty)).collect(),
|
|
280
|
+
))
|
|
281
|
+
};
|
|
282
|
+
solver.record_type_pack_binding(
|
|
283
|
+
&type_pack_name,
|
|
284
|
+
TypePackBinding { types: fixed_types, variadic_tail },
|
|
285
|
+
);
|
|
286
|
+
return Ok(());
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
290
|
+
for actual in positional_types.iter().skip(positional_index) {
|
|
291
|
+
let actual_type = lower_type_text_or_name(actual);
|
|
292
|
+
let bindings = infer_generic_type_param_bindings(
|
|
293
|
+
node,
|
|
294
|
+
nodes,
|
|
295
|
+
annotation,
|
|
296
|
+
&actual_type,
|
|
297
|
+
&solver.metadata.type_names,
|
|
298
|
+
&existing,
|
|
299
|
+
&solver.metadata.type_pack_names,
|
|
300
|
+
)
|
|
301
|
+
.ok_or_else(|| GenericSolveFailure::TypeBindingInferenceFailed {
|
|
302
|
+
annotation: annotation.clone(),
|
|
303
|
+
actual: actual_type,
|
|
304
|
+
})?;
|
|
305
|
+
solver.record_bindings(bindings);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
Ok(())
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
fn infer_single_argument_bindings_detailed(
|
|
312
|
+
solver: &mut GenericSolverState,
|
|
313
|
+
node: &typepython_graph::ModuleNode,
|
|
314
|
+
nodes: &[typepython_graph::ModuleNode],
|
|
315
|
+
annotation: &SemanticType,
|
|
316
|
+
actual_type: SemanticType,
|
|
317
|
+
actual_value: Option<&typepython_syntax::DirectExprMetadata>,
|
|
318
|
+
) -> Result<(), GenericSolveFailure> {
|
|
319
|
+
let annotation_mentions_param_spec = annotation.callable_parts().is_some_and(|(params, _)| {
|
|
320
|
+
callable_param_expr_mentions_param_spec_semantic(params, &solver.metadata.param_spec_names)
|
|
321
|
+
});
|
|
322
|
+
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
323
|
+
let bindings = infer_callable_param_spec_bindings(
|
|
324
|
+
node,
|
|
325
|
+
nodes,
|
|
326
|
+
annotation,
|
|
327
|
+
&actual_type,
|
|
328
|
+
actual_value,
|
|
329
|
+
&solver.metadata.type_names,
|
|
330
|
+
&solver.metadata.param_spec_names,
|
|
331
|
+
&existing,
|
|
332
|
+
)
|
|
333
|
+
.ok_or_else(|| GenericSolveFailure::ParamSpecInferenceFailed {
|
|
334
|
+
annotation: annotation.clone(),
|
|
335
|
+
actual: actual_type.clone(),
|
|
336
|
+
})?;
|
|
337
|
+
solver.record_bindings(bindings);
|
|
338
|
+
if annotation_mentions_param_spec {
|
|
339
|
+
return Ok(());
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
343
|
+
let bindings = infer_generic_type_param_bindings(
|
|
344
|
+
node,
|
|
345
|
+
nodes,
|
|
346
|
+
annotation,
|
|
347
|
+
&actual_type,
|
|
348
|
+
&solver.metadata.type_names,
|
|
349
|
+
&existing,
|
|
350
|
+
&solver.metadata.type_pack_names,
|
|
351
|
+
)
|
|
352
|
+
.ok_or_else(|| GenericSolveFailure::TypeBindingInferenceFailed {
|
|
353
|
+
annotation: annotation.clone(),
|
|
354
|
+
actual: actual_type,
|
|
355
|
+
})?;
|
|
356
|
+
solver.record_bindings(bindings);
|
|
357
|
+
|
|
358
|
+
Ok(())
|
|
359
|
+
}
|
|
360
|
+
|
|
256
361
|
fn solve_collected_generic_constraints_detailed(
|
|
257
362
|
node: &typepython_graph::ModuleNode,
|
|
258
363
|
nodes: &[typepython_graph::ModuleNode],
|
|
@@ -593,104 +698,30 @@ pub(crate) fn infer_generic_type_param_substitutions_detailed(
|
|
|
593
698
|
};
|
|
594
699
|
let annotation = lower_type_text_or_name(&annotation_text);
|
|
595
700
|
if param.variadic {
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
if let Some(type_pack_name) = type_pack_name_from_unpack_semantic_annotation(
|
|
701
|
+
infer_variadic_annotation_bindings_detailed(
|
|
702
|
+
&mut solver,
|
|
703
|
+
node,
|
|
704
|
+
nodes,
|
|
601
705
|
&annotation,
|
|
602
|
-
&
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
.map(|ty| lower_type_text_or_name(ty))
|
|
607
|
-
.collect::<Vec<_>>();
|
|
608
|
-
let variadic_tail = if variadic_starred_types.is_empty() {
|
|
609
|
-
None
|
|
610
|
-
} else {
|
|
611
|
-
Some(join_semantic_type_candidates(
|
|
612
|
-
variadic_starred_types
|
|
613
|
-
.iter()
|
|
614
|
-
.map(|ty| lower_type_text_or_name(ty))
|
|
615
|
-
.collect(),
|
|
616
|
-
))
|
|
617
|
-
};
|
|
618
|
-
solver.record_type_pack_binding(
|
|
619
|
-
&type_pack_name,
|
|
620
|
-
TypePackBinding { types: fixed_types, variadic_tail },
|
|
621
|
-
);
|
|
622
|
-
positional_index = positional_types.len();
|
|
623
|
-
continue;
|
|
624
|
-
}
|
|
625
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
626
|
-
for actual in positional_types.iter().skip(positional_index) {
|
|
627
|
-
let actual_type = lower_type_text_or_name(actual);
|
|
628
|
-
let bindings = infer_generic_type_param_bindings(
|
|
629
|
-
node,
|
|
630
|
-
nodes,
|
|
631
|
-
&annotation,
|
|
632
|
-
&actual_type,
|
|
633
|
-
&solver.metadata.type_names,
|
|
634
|
-
&existing,
|
|
635
|
-
&solver.metadata.type_pack_names,
|
|
636
|
-
)
|
|
637
|
-
.ok_or_else(|| {
|
|
638
|
-
GenericSolveFailure::TypeBindingInferenceFailed {
|
|
639
|
-
annotation: annotation.clone(),
|
|
640
|
-
actual: actual_type,
|
|
641
|
-
}
|
|
642
|
-
})?;
|
|
643
|
-
solver.record_bindings(bindings);
|
|
644
|
-
}
|
|
706
|
+
&positional_types,
|
|
707
|
+
positional_index,
|
|
708
|
+
&variadic_starred_types,
|
|
709
|
+
)?;
|
|
645
710
|
positional_index = positional_types.len();
|
|
646
711
|
continue;
|
|
647
712
|
}
|
|
648
713
|
let Some(actual) = positional_types.get(positional_index) else {
|
|
649
714
|
continue;
|
|
650
715
|
};
|
|
651
|
-
let annotation_mentions_param_spec =
|
|
652
|
-
annotation.callable_parts().is_some_and(|(params, _)| {
|
|
653
|
-
callable_param_expr_mentions_param_spec_semantic(
|
|
654
|
-
params,
|
|
655
|
-
&solver.metadata.param_spec_names,
|
|
656
|
-
)
|
|
657
|
-
});
|
|
658
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
659
716
|
let actual_type = lower_type_text_or_name(actual);
|
|
660
|
-
|
|
717
|
+
infer_single_argument_bindings_detailed(
|
|
718
|
+
&mut solver,
|
|
661
719
|
node,
|
|
662
720
|
nodes,
|
|
663
721
|
&annotation,
|
|
664
|
-
|
|
722
|
+
actual_type,
|
|
665
723
|
call.arg_values.get(positional_index),
|
|
666
|
-
|
|
667
|
-
&solver.metadata.param_spec_names,
|
|
668
|
-
&existing,
|
|
669
|
-
)
|
|
670
|
-
.ok_or_else(|| GenericSolveFailure::ParamSpecInferenceFailed {
|
|
671
|
-
annotation: annotation.clone(),
|
|
672
|
-
actual: actual_type.clone(),
|
|
673
|
-
})?;
|
|
674
|
-
solver.record_bindings(bindings);
|
|
675
|
-
if annotation_mentions_param_spec {
|
|
676
|
-
positional_index += 1;
|
|
677
|
-
continue;
|
|
678
|
-
}
|
|
679
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
680
|
-
let bindings = infer_generic_type_param_bindings(
|
|
681
|
-
node,
|
|
682
|
-
nodes,
|
|
683
|
-
&annotation,
|
|
684
|
-
&actual_type,
|
|
685
|
-
&solver.metadata.type_names,
|
|
686
|
-
&existing,
|
|
687
|
-
&solver.metadata.type_pack_names,
|
|
688
|
-
)
|
|
689
|
-
.ok_or_else(|| GenericSolveFailure::TypeBindingInferenceFailed {
|
|
690
|
-
annotation: annotation.clone(),
|
|
691
|
-
actual: actual_type,
|
|
692
|
-
})?;
|
|
693
|
-
solver.record_bindings(bindings);
|
|
724
|
+
)?;
|
|
694
725
|
positional_index += 1;
|
|
695
726
|
}
|
|
696
727
|
|
|
@@ -704,48 +735,15 @@ pub(crate) fn infer_generic_type_param_substitutions_detailed(
|
|
|
704
735
|
continue;
|
|
705
736
|
};
|
|
706
737
|
let annotation = lower_type_text_or_name(&annotation_text);
|
|
707
|
-
let annotation_mentions_param_spec =
|
|
708
|
-
annotation.callable_parts().is_some_and(|(params, _)| {
|
|
709
|
-
callable_param_expr_mentions_param_spec_semantic(
|
|
710
|
-
params,
|
|
711
|
-
&solver.metadata.param_spec_names,
|
|
712
|
-
)
|
|
713
|
-
});
|
|
714
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
715
738
|
let actual_type = lower_type_text_or_name(actual);
|
|
716
|
-
|
|
739
|
+
infer_single_argument_bindings_detailed(
|
|
740
|
+
&mut solver,
|
|
717
741
|
node,
|
|
718
742
|
nodes,
|
|
719
743
|
&annotation,
|
|
720
|
-
|
|
744
|
+
actual_type,
|
|
721
745
|
call.keyword_arg_values.get(index),
|
|
722
|
-
|
|
723
|
-
&solver.metadata.param_spec_names,
|
|
724
|
-
&existing,
|
|
725
|
-
)
|
|
726
|
-
.ok_or_else(|| GenericSolveFailure::ParamSpecInferenceFailed {
|
|
727
|
-
annotation: annotation.clone(),
|
|
728
|
-
actual: actual_type.clone(),
|
|
729
|
-
})?;
|
|
730
|
-
solver.record_bindings(bindings);
|
|
731
|
-
if annotation_mentions_param_spec {
|
|
732
|
-
continue;
|
|
733
|
-
}
|
|
734
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
735
|
-
let bindings = infer_generic_type_param_bindings(
|
|
736
|
-
node,
|
|
737
|
-
nodes,
|
|
738
|
-
&annotation,
|
|
739
|
-
&actual_type,
|
|
740
|
-
&solver.metadata.type_names,
|
|
741
|
-
&existing,
|
|
742
|
-
&solver.metadata.type_pack_names,
|
|
743
|
-
)
|
|
744
|
-
.ok_or_else(|| GenericSolveFailure::TypeBindingInferenceFailed {
|
|
745
|
-
annotation: annotation.clone(),
|
|
746
|
-
actual: actual_type,
|
|
747
|
-
})?;
|
|
748
|
-
solver.record_bindings(bindings);
|
|
746
|
+
)?;
|
|
749
747
|
}
|
|
750
748
|
|
|
751
749
|
solver.finish_detailed(node, nodes)
|
|
@@ -775,104 +773,30 @@ pub(crate) fn infer_generic_type_param_substitutions_from_semantic_params_detail
|
|
|
775
773
|
continue;
|
|
776
774
|
};
|
|
777
775
|
if param.variadic {
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
if let Some(type_pack_name) = type_pack_name_from_unpack_semantic_annotation(
|
|
776
|
+
infer_variadic_annotation_bindings_detailed(
|
|
777
|
+
&mut solver,
|
|
778
|
+
node,
|
|
779
|
+
nodes,
|
|
783
780
|
&annotation,
|
|
784
|
-
&
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
.map(|ty| lower_type_text_or_name(ty))
|
|
789
|
-
.collect::<Vec<_>>();
|
|
790
|
-
let variadic_tail = if variadic_starred_types.is_empty() {
|
|
791
|
-
None
|
|
792
|
-
} else {
|
|
793
|
-
Some(join_semantic_type_candidates(
|
|
794
|
-
variadic_starred_types
|
|
795
|
-
.iter()
|
|
796
|
-
.map(|ty| lower_type_text_or_name(ty))
|
|
797
|
-
.collect(),
|
|
798
|
-
))
|
|
799
|
-
};
|
|
800
|
-
solver.record_type_pack_binding(
|
|
801
|
-
&type_pack_name,
|
|
802
|
-
TypePackBinding { types: fixed_types, variadic_tail },
|
|
803
|
-
);
|
|
804
|
-
positional_index = positional_types.len();
|
|
805
|
-
continue;
|
|
806
|
-
}
|
|
807
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
808
|
-
for actual in positional_types.iter().skip(positional_index) {
|
|
809
|
-
let actual_type = lower_type_text_or_name(actual);
|
|
810
|
-
let bindings = infer_generic_type_param_bindings(
|
|
811
|
-
node,
|
|
812
|
-
nodes,
|
|
813
|
-
&annotation,
|
|
814
|
-
&actual_type,
|
|
815
|
-
&solver.metadata.type_names,
|
|
816
|
-
&existing,
|
|
817
|
-
&solver.metadata.type_pack_names,
|
|
818
|
-
)
|
|
819
|
-
.ok_or_else(|| {
|
|
820
|
-
GenericSolveFailure::TypeBindingInferenceFailed {
|
|
821
|
-
annotation: annotation.clone(),
|
|
822
|
-
actual: actual_type,
|
|
823
|
-
}
|
|
824
|
-
})?;
|
|
825
|
-
solver.record_bindings(bindings);
|
|
826
|
-
}
|
|
781
|
+
&positional_types,
|
|
782
|
+
positional_index,
|
|
783
|
+
&variadic_starred_types,
|
|
784
|
+
)?;
|
|
827
785
|
positional_index = positional_types.len();
|
|
828
786
|
continue;
|
|
829
787
|
}
|
|
830
788
|
let Some(actual) = positional_types.get(positional_index) else {
|
|
831
789
|
continue;
|
|
832
790
|
};
|
|
833
|
-
let annotation_mentions_param_spec =
|
|
834
|
-
annotation.callable_parts().is_some_and(|(params, _)| {
|
|
835
|
-
callable_param_expr_mentions_param_spec_semantic(
|
|
836
|
-
params,
|
|
837
|
-
&solver.metadata.param_spec_names,
|
|
838
|
-
)
|
|
839
|
-
});
|
|
840
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
841
791
|
let actual_type = lower_type_text_or_name(actual);
|
|
842
|
-
|
|
792
|
+
infer_single_argument_bindings_detailed(
|
|
793
|
+
&mut solver,
|
|
843
794
|
node,
|
|
844
795
|
nodes,
|
|
845
796
|
&annotation,
|
|
846
|
-
|
|
797
|
+
actual_type,
|
|
847
798
|
call.arg_values.get(positional_index),
|
|
848
|
-
|
|
849
|
-
&solver.metadata.param_spec_names,
|
|
850
|
-
&existing,
|
|
851
|
-
)
|
|
852
|
-
.ok_or_else(|| GenericSolveFailure::ParamSpecInferenceFailed {
|
|
853
|
-
annotation: annotation.clone(),
|
|
854
|
-
actual: actual_type.clone(),
|
|
855
|
-
})?;
|
|
856
|
-
solver.record_bindings(bindings);
|
|
857
|
-
if annotation_mentions_param_spec {
|
|
858
|
-
positional_index += 1;
|
|
859
|
-
continue;
|
|
860
|
-
}
|
|
861
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
862
|
-
let bindings = infer_generic_type_param_bindings(
|
|
863
|
-
node,
|
|
864
|
-
nodes,
|
|
865
|
-
&annotation,
|
|
866
|
-
&actual_type,
|
|
867
|
-
&solver.metadata.type_names,
|
|
868
|
-
&existing,
|
|
869
|
-
&solver.metadata.type_pack_names,
|
|
870
|
-
)
|
|
871
|
-
.ok_or_else(|| GenericSolveFailure::TypeBindingInferenceFailed {
|
|
872
|
-
annotation: annotation.clone(),
|
|
873
|
-
actual: actual_type,
|
|
874
|
-
})?;
|
|
875
|
-
solver.record_bindings(bindings);
|
|
799
|
+
)?;
|
|
876
800
|
positional_index += 1;
|
|
877
801
|
}
|
|
878
802
|
|
|
@@ -885,48 +809,15 @@ pub(crate) fn infer_generic_type_param_substitutions_from_semantic_params_detail
|
|
|
885
809
|
let Some(annotation) = param.annotation.clone() else {
|
|
886
810
|
continue;
|
|
887
811
|
};
|
|
888
|
-
let annotation_mentions_param_spec =
|
|
889
|
-
annotation.callable_parts().is_some_and(|(params, _)| {
|
|
890
|
-
callable_param_expr_mentions_param_spec_semantic(
|
|
891
|
-
params,
|
|
892
|
-
&solver.metadata.param_spec_names,
|
|
893
|
-
)
|
|
894
|
-
});
|
|
895
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
896
812
|
let actual_type = lower_type_text_or_name(actual);
|
|
897
|
-
|
|
813
|
+
infer_single_argument_bindings_detailed(
|
|
814
|
+
&mut solver,
|
|
898
815
|
node,
|
|
899
816
|
nodes,
|
|
900
817
|
&annotation,
|
|
901
|
-
|
|
818
|
+
actual_type,
|
|
902
819
|
call.keyword_arg_values.get(index),
|
|
903
|
-
|
|
904
|
-
&solver.metadata.param_spec_names,
|
|
905
|
-
&existing,
|
|
906
|
-
)
|
|
907
|
-
.ok_or_else(|| GenericSolveFailure::ParamSpecInferenceFailed {
|
|
908
|
-
annotation: annotation.clone(),
|
|
909
|
-
actual: actual_type.clone(),
|
|
910
|
-
})?;
|
|
911
|
-
solver.record_bindings(bindings);
|
|
912
|
-
if annotation_mentions_param_spec {
|
|
913
|
-
continue;
|
|
914
|
-
}
|
|
915
|
-
let existing = solver.current_bindings_detailed(node, nodes)?;
|
|
916
|
-
let bindings = infer_generic_type_param_bindings(
|
|
917
|
-
node,
|
|
918
|
-
nodes,
|
|
919
|
-
&annotation,
|
|
920
|
-
&actual_type,
|
|
921
|
-
&solver.metadata.type_names,
|
|
922
|
-
&existing,
|
|
923
|
-
&solver.metadata.type_pack_names,
|
|
924
|
-
)
|
|
925
|
-
.ok_or_else(|| GenericSolveFailure::TypeBindingInferenceFailed {
|
|
926
|
-
annotation: annotation.clone(),
|
|
927
|
-
actual: actual_type,
|
|
928
|
-
})?;
|
|
929
|
-
solver.record_bindings(bindings);
|
|
820
|
+
)?;
|
|
930
821
|
}
|
|
931
822
|
|
|
932
823
|
solver.finish_detailed(node, nodes)
|
|
@@ -103,6 +103,7 @@ pub struct ModuleCheckResult {
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
impl ModuleCheckResult {
|
|
106
|
+
/// Flattens per-module diagnostics into a single report in module iteration order.
|
|
106
107
|
#[must_use]
|
|
107
108
|
pub fn diagnostics(&self) -> DiagnosticReport {
|
|
108
109
|
let mut diagnostics = DiagnosticReport::default();
|
|
@@ -113,6 +114,7 @@ impl ModuleCheckResult {
|
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
116
|
|
|
117
|
+
/// Stub override derived from checker-resolved callable information.
|
|
116
118
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
117
119
|
pub struct EffectiveCallableStubOverride {
|
|
118
120
|
pub module_key: String,
|
|
@@ -123,6 +125,7 @@ pub struct EffectiveCallableStubOverride {
|
|
|
123
125
|
pub returns: String,
|
|
124
126
|
}
|
|
125
127
|
|
|
128
|
+
/// Synthetic method emitted into authoritative stubs for checker-synthesized behavior.
|
|
126
129
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
127
130
|
pub struct SyntheticMethodStub {
|
|
128
131
|
pub module_key: String,
|
|
@@ -472,6 +475,7 @@ pub fn check(graph: &ModuleGraph) -> CheckResult {
|
|
|
472
475
|
)
|
|
473
476
|
}
|
|
474
477
|
|
|
478
|
+
/// Runs the checker with the caller-controlled option surface used by the CLI and tests.
|
|
475
479
|
#[must_use]
|
|
476
480
|
pub fn check_with_options(
|
|
477
481
|
graph: &ModuleGraph,
|
|
@@ -499,6 +503,7 @@ pub fn check_with_options(
|
|
|
499
503
|
clippy::too_many_arguments,
|
|
500
504
|
reason = "mirrors the public checker option surface while threading binding metadata"
|
|
501
505
|
)]
|
|
506
|
+
/// Runs the checker with precomputed binding metadata to avoid recomputing source-derived facts.
|
|
502
507
|
pub fn check_with_binding_metadata(
|
|
503
508
|
graph: &ModuleGraph,
|
|
504
509
|
bindings: &[BindingTable],
|