type-python 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {type_python-0.1.0 → type_python-0.1.1}/Cargo.lock +15 -12
- {type_python-0.1.0 → type_python-0.1.1}/Cargo.toml +1 -1
- {type_python-0.1.0 → type_python-0.1.1}/PKG-INFO +1 -1
- {type_python-0.1.0 → type_python-0.1.1}/README.md +3 -2
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/calls/callable_resolution.rs +3 -1
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/calls/reporting.rs +1 -1
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/semantic.rs +1 -3
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/Cargo.toml +2 -0
- type_python-0.1.1/crates/typepython_cli/scripts/runtime_importability.py +20 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/cli.rs +5 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/main.rs +20 -7
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/pipeline.rs +1 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/tests/pipeline.rs +59 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/tests/verification.rs +335 -1
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/verification.rs +375 -102
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_config/src/lib.rs +93 -15
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/Cargo.toml +1 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/core.rs +144 -213
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_qualified_names_310.snap +1 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/tests.rs +1 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/typeddict.rs +135 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/analysis.rs +34 -13
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/formatting.rs +13 -8
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/lib.rs +91 -8
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/protocol.rs +49 -24
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/server.rs +126 -104
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/tests.rs +69 -15
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/workspace/discovery.rs +4 -2
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/workspace/lifecycle.rs +11 -5
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/ast_backed.rs +759 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/calls.rs +669 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/control_flow.rs +1531 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/expr_metadata.rs +1007 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/guards.rs +155 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/lambdas.rs +534 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/syntax_extensions.rs +681 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction/tests.rs +5528 -0
- type_python-0.1.1/crates/typepython_syntax/src/syntax_parts/extraction.rs +20 -0
- {type_python-0.1.0 → type_python-0.1.1}/pyproject.toml +1 -1
- {type_python-0.1.0 → type_python-0.1.1}/type_python.egg-info/PKG-INFO +1 -1
- {type_python-0.1.0 → type_python-0.1.1}/type_python.egg-info/SOURCES.txt +8 -1
- {type_python-0.1.0 → type_python-0.1.1}/typepython/__init__.py +1 -1
- type_python-0.1.0/crates/typepython_cli/scripts/runtime_importability.py +0 -15
- type_python-0.1.0/crates/typepython_cli/scripts/static_all_names.py +0 -27
- type_python-0.1.0/crates/typepython_syntax/src/syntax_parts/extraction.rs +0 -10849
- {type_python-0.1.0 → type_python-0.1.1}/LICENSE +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/MANIFEST.in +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/README-PyPI.md +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_binding/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_binding/src/binding_impl.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_binding/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_binding/src/tests.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_binding/src/types.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/benches/checker.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/assignments.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/calls/call_diagnostics.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/calls/dataclass.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/calls/member_access.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/calls/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/declaration_semantics.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/declarations.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/generic_solver.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/stubs.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/tests/advanced.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/tests/advanced_generics.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/tests/calls.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/tests/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/tests/semantic.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/tests/typed_dict.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_core.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_system/assignability.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_system/contextual.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_system/expressions.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_system/flow.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_system/imports.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_system/members.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/type_system/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/discovery.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/migration.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/pipeline/loading.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/pipeline/stubs.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/tests/consistency.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/tests/migration.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_cli/src/tests/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_config/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_diagnostics/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_diagnostics/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/planning.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/runtime.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_migration_stub.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_shadow_stub.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_async_function.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_basic_module.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_class_with_methods.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_overloaded_function.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/stubs.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_emit/src/tests.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_graph/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_graph/benches/graph.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_graph/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_incremental/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_incremental/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/benches/lower.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_combined_typepython_constructs.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_imports_312.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class_with_bases.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_class_and_function.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_interface.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_typealias.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface_with_bases.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_lambda_annotation.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_nested_unsafe_in_function.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_overload_def.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_paramspec.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_passthrough_python_source.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class_with_bases.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_type_param_with_bounds_constraints_defaults.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typealias.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typeddict_keyword_stripping.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_unsafe_block.snap +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/benches/incremental.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/analysis/code_actions.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/analysis/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/analysis/symbols.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/analysis/text.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/analysis/typing.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/signature_help.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/sources.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/requests/symbols.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/scheduler.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/workspace/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_lsp/src/workspace/state.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_project/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_project/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/Cargo.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/benches/parse.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/proptest-regressions/lib.txt +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/src/lib.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/src/syntax_parts/formatting.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/src/syntax_parts/metadata_collectors.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/src/syntax_parts/mod.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/src/syntax_parts/parsing.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/src/syntax_parts/surface.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/crates/typepython_syntax/src/syntax_parts/type_expr.rs +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/rust-toolchain.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/rustfmt.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/setup.cfg +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/setup.py +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/VERSIONS +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/__future__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/__main__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_ast.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_asyncio.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_bisect.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_blake2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_bootlocale.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_bz2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_codecs.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_collections_abc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_compat_pickle.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_compression.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_contextvars.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_csv.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_ctypes.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_curses.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_curses_panel.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_dbm.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_decimal.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_frozen_importlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_frozen_importlib_external.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_gdbm.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_hashlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_heapq.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_imp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_interpchannels.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_interpqueues.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_interpreters.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_io.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_json.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_locale.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_lsprof.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_lzma.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_markupbase.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_msi.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_multibytecodec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_operator.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_osx_support.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_pickle.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_posixsubprocess.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_py_abc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_pydecimal.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_queue.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_random.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_sitebuiltins.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_socket.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_sqlite3.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_ssl.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_stat.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_struct.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_thread.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_threading_local.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_tkinter.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_tracemalloc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_typeshed/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_typeshed/dbapi.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_typeshed/importlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_typeshed/wsgi.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_typeshed/xml.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_warnings.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_weakref.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_weakrefset.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_winapi.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/_zstd.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/abc/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/abc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/aifc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/annotationlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/antigravity.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/argparse.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/array.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ast.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asynchat.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/base_events.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/base_futures.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/base_subprocess.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/base_tasks.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/constants.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/coroutines.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/events.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/exceptions.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/format_helpers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/futures.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/graph.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/locks.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/log.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/mixins.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/proactor_events.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/protocols.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/queues.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/runners.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/selector_events.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/sslproto.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/staggered.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/streams.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/subprocess.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/taskgroups.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/tasks.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/threads.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/timeouts.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/tools.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/transports.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/trsock.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/unix_events.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/windows_events.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncio/windows_utils.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/asyncore.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/atexit.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/audioop.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/base64.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/bdb.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/binascii.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/binhex.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/bisect.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/builtins.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/bz2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/cProfile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/calendar.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/cgi.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/cgitb.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/chunk.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/cmath.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/cmd.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/code.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/codecs.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/codeop.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/collections/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/collections/abc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/colorsys.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compileall.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/_common/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/_common/_streams.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/bz2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/gzip.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/lzma.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/zlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/zstd/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/compression/zstd/_zstdfile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/futures/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/futures/_base.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/futures/interpreter.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/futures/process.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/futures/thread.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/interpreters/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/interpreters/_crossinterp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/concurrent/interpreters/_queues.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/configparser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/contextlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/contextvars.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/copy.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/copyreg.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/crypt.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/csv.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/_endian.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/macholib/framework.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ctypes/wintypes.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/curses/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/curses/ascii.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/curses/has_key.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/curses/panel.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/curses/textpad.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/dataclasses.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/datetime.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/dbm/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/dbm/dumb.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/dbm/gnu.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/dbm/ndbm.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/dbm/sqlite3.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/decimal.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/difflib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/dis.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/_msvccompiler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/archive_util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/bcppcompiler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/ccompiler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/cmd.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/bdist.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/build.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/build_clib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/build_ext.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/build_py.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/build_scripts.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/check.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/clean.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/config.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/install.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/install_data.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/install_headers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/install_lib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/install_scripts.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/register.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/sdist.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/command/upload.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/config.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/core.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/debug.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/dep_util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/dir_util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/dist.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/errors.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/extension.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/fancy_getopt.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/file_util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/filelist.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/log.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/msvccompiler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/spawn.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/sysconfig.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/text_file.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/unixccompiler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/distutils/version.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/doctest.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/_header_value_parser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/_policybase.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/base64mime.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/charset.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/contentmanager.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/encoders.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/errors.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/feedparser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/generator.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/header.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/headerregistry.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/iterators.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/message.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/application.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/audio.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/base.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/image.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/message.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/multipart.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/nonmultipart.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/mime/text.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/parser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/policy.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/quoprimime.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/email/utils.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/aliases.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/ascii.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/base64_codec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/big5.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/big5hkscs.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/bz2_codec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/charmap.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp037.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1006.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1026.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1125.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1140.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1250.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1251.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1252.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1253.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1254.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1255.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1256.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1257.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp1258.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp273.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp424.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp437.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp500.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp720.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp737.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp775.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp850.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp852.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp855.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp856.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp857.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp858.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp860.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp861.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp862.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp863.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp864.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp865.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp866.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp869.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp874.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp875.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp932.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp949.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/cp950.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/euc_jp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/euc_kr.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/gb18030.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/gb2312.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/gbk.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/hex_codec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/hp_roman8.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/hz.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/idna.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso2022_jp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso2022_kr.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_1.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_10.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_11.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_13.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_14.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_15.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_16.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_3.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_4.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_5.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_6.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_7.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_8.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/iso8859_9.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/johab.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/koi8_r.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/koi8_t.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/koi8_u.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/kz1048.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/latin_1.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_arabic.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_croatian.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_farsi.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_greek.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_iceland.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_latin2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_roman.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_romanian.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mac_turkish.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/mbcs.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/oem.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/palmos.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/ptcp154.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/punycode.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/quopri_codec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/rot_13.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/shift_jis.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/tis_620.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/undefined.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/unicode_escape.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_16.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_16_be.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_16_le.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_32.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_32_be.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_32_le.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_7.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_8.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/utf_8_sig.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/uu_codec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/encodings/zlib_codec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ensurepip/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/enum/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/enum.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/errno.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/faulthandler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/fcntl.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/filecmp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/fileinput.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/fnmatch.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/formatter.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/fractions.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ftplib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/functools.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/gc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/genericpath.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/getopt.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/getpass.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/gettext.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/glob.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/graphlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/grp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/gzip.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/hashlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/heapq.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/hmac.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/html/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/html/entities.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/html/parser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/http/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/http/client.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/http/cookiejar.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/http/cookies.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/http/server.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/imaplib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/imghdr.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/imp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/_abc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/_bootstrap.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/abc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/machinery.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/metadata/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/metadata/_meta.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/readers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/resources/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/resources/_common.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/resources/_functional.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/resources/abc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/resources/readers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/resources/simple.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/simple.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/importlib/util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/inspect.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/io.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ipaddress.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/itertools.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/json/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/json/decoder.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/json/encoder.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/json/scanner.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/json/tool.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/keyword.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixer_base.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/main.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pygram.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/pytree.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lib2to3/refactor.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/linecache.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/locale.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/logging/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/logging/config.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/logging/handlers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/lzma.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/mailbox.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/mailcap.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/marshal.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/math.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/mimetypes.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/mmap.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/modulefinder.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/msilib/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/msilib/schema.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/msilib/sequence.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/msilib/text.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/msvcrt.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/connection.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/context.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/forkserver.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/heap.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/managers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/pool.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/process.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/queues.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/reduction.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/spawn.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/synchronize.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/multiprocessing/util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/netrc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/nis.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/nntplib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/nt.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ntpath.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/nturl2path.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/numbers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/numpy/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/numpy/linalg/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/numpy/typing/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/opcode.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/operator.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/optparse.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/os/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/os/path.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ossaudiodev.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pandas/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/parser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pathlib/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pathlib/types.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pdb.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pickle.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pickletools.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pipes.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pkgutil.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/platform.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/plistlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/poplib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/posix.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/posixpath.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pprint.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/profile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pstats.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pty.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pwd.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/py_compile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pyclbr.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pydoc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pydoc_data/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pydoc_data/topics.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pyexpat/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pyexpat/errors.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/pyexpat/model.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/queue.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/quopri.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/random.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/re.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/readline.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/reprlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/requests/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/requests/sessions.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/resource.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/rlcompleter.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/runpy.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sched.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/secrets.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/select.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/selectors.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/shelve.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/shlex.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/shutil.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/signal.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/site.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/smtpd.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/smtplib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sndhdr.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/socket.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/socketserver.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/spwd.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sqlite3/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sqlite3/dbapi2.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sqlite3/dump.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sre_compile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sre_constants.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sre_parse.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/ssl.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/stat.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/statistics.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/string/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/string/templatelib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/stringprep.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/struct.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/subprocess.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sunau.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/symbol.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/symtable.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sys/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sys/_monitoring.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/sysconfig.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/syslog.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tabnanny.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tarfile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/telnetlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tempfile.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/termios.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/textwrap.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/this.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/threading.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/time.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/timeit.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/colorchooser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/commondialog.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/constants.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/dialog.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/dnd.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/filedialog.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/font.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/messagebox.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/scrolledtext.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/simpledialog.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/tix.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tkinter/ttk.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/token.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tokenize.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tomllib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/torch/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/torch/nn/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/trace.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/traceback.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tracemalloc.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/tty.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/turtle.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/types.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/typing.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/typing_extensions.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unicodedata.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/_log.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/async_case.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/case.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/loader.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/main.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/mock.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/result.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/runner.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/signals.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/suite.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/unittest/util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/urllib/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/urllib/error.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/urllib/parse.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/urllib/request.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/urllib/response.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/urllib/robotparser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/uu.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/uuid.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/venv/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/warnings.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wave.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/weakref.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/webbrowser.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/winreg.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/winsound.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wsgiref/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wsgiref/handlers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wsgiref/headers.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wsgiref/simple_server.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wsgiref/types.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wsgiref/util.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/wsgiref/validate.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xdrlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/domreg.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/minicompat.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/minidom.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/pulldom.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/etree/ElementPath.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/etree/ElementTree.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/etree/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/etree/cElementTree.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/parsers/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/parsers/expat/model.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/sax/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/sax/_exceptions.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/sax/expatreader.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/sax/handler.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/sax/saxutils.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xml/sax/xmlreader.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xmlrpc/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xmlrpc/client.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xmlrpc/server.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/xxlimited.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zipapp.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zipfile/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zipfile/_path/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zipfile/_path/glob.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zipimport.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zlib.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zoneinfo/__init__.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zoneinfo/_common.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/templates/src/app/__init__.tpy +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/templates/typepython.toml +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/type_python.egg-info/dependency_links.txt +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/type_python.egg-info/entry_points.txt +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/type_python.egg-info/top_level.txt +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/typepython/__main__.py +0 -0
- {type_python-0.1.0 → type_python-0.1.1}/typepython/_runner.py +0 -0
|
@@ -1779,7 +1779,7 @@ dependencies = [
|
|
|
1779
1779
|
|
|
1780
1780
|
[[package]]
|
|
1781
1781
|
name = "typepython-binding"
|
|
1782
|
-
version = "0.1.
|
|
1782
|
+
version = "0.1.1"
|
|
1783
1783
|
dependencies = [
|
|
1784
1784
|
"typepython-diagnostics",
|
|
1785
1785
|
"typepython-syntax",
|
|
@@ -1787,7 +1787,7 @@ dependencies = [
|
|
|
1787
1787
|
|
|
1788
1788
|
[[package]]
|
|
1789
1789
|
name = "typepython-checking"
|
|
1790
|
-
version = "0.1.
|
|
1790
|
+
version = "0.1.1"
|
|
1791
1791
|
dependencies = [
|
|
1792
1792
|
"criterion",
|
|
1793
1793
|
"typepython-binding",
|
|
@@ -1800,12 +1800,14 @@ dependencies = [
|
|
|
1800
1800
|
|
|
1801
1801
|
[[package]]
|
|
1802
1802
|
name = "typepython-cli"
|
|
1803
|
-
version = "0.1.
|
|
1803
|
+
version = "0.1.1"
|
|
1804
1804
|
dependencies = [
|
|
1805
1805
|
"anyhow",
|
|
1806
1806
|
"clap",
|
|
1807
1807
|
"flate2",
|
|
1808
1808
|
"glob",
|
|
1809
|
+
"littrs-ruff-python-ast",
|
|
1810
|
+
"littrs-ruff-python-parser",
|
|
1809
1811
|
"notify",
|
|
1810
1812
|
"rayon",
|
|
1811
1813
|
"serde",
|
|
@@ -1829,7 +1831,7 @@ dependencies = [
|
|
|
1829
1831
|
|
|
1830
1832
|
[[package]]
|
|
1831
1833
|
name = "typepython-config"
|
|
1832
|
-
version = "0.1.
|
|
1834
|
+
version = "0.1.1"
|
|
1833
1835
|
dependencies = [
|
|
1834
1836
|
"serde",
|
|
1835
1837
|
"thiserror",
|
|
@@ -1838,7 +1840,7 @@ dependencies = [
|
|
|
1838
1840
|
|
|
1839
1841
|
[[package]]
|
|
1840
1842
|
name = "typepython-diagnostics"
|
|
1841
|
-
version = "0.1.
|
|
1843
|
+
version = "0.1.1"
|
|
1842
1844
|
dependencies = [
|
|
1843
1845
|
"serde",
|
|
1844
1846
|
"serde_json",
|
|
@@ -1846,7 +1848,7 @@ dependencies = [
|
|
|
1846
1848
|
|
|
1847
1849
|
[[package]]
|
|
1848
1850
|
name = "typepython-emit"
|
|
1849
|
-
version = "0.1.
|
|
1851
|
+
version = "0.1.1"
|
|
1850
1852
|
dependencies = [
|
|
1851
1853
|
"insta",
|
|
1852
1854
|
"littrs-ruff-python-ast",
|
|
@@ -1859,7 +1861,7 @@ dependencies = [
|
|
|
1859
1861
|
|
|
1860
1862
|
[[package]]
|
|
1861
1863
|
name = "typepython-graph"
|
|
1862
|
-
version = "0.1.
|
|
1864
|
+
version = "0.1.1"
|
|
1863
1865
|
dependencies = [
|
|
1864
1866
|
"criterion",
|
|
1865
1867
|
"typepython-binding",
|
|
@@ -1868,7 +1870,7 @@ dependencies = [
|
|
|
1868
1870
|
|
|
1869
1871
|
[[package]]
|
|
1870
1872
|
name = "typepython-incremental"
|
|
1871
|
-
version = "0.1.
|
|
1873
|
+
version = "0.1.1"
|
|
1872
1874
|
dependencies = [
|
|
1873
1875
|
"serde",
|
|
1874
1876
|
"serde_json",
|
|
@@ -1879,20 +1881,21 @@ dependencies = [
|
|
|
1879
1881
|
|
|
1880
1882
|
[[package]]
|
|
1881
1883
|
name = "typepython-lowering"
|
|
1882
|
-
version = "0.1.
|
|
1884
|
+
version = "0.1.1"
|
|
1883
1885
|
dependencies = [
|
|
1884
1886
|
"criterion",
|
|
1885
1887
|
"insta",
|
|
1886
1888
|
"littrs-ruff-python-ast",
|
|
1887
1889
|
"littrs-ruff-python-parser",
|
|
1888
1890
|
"littrs-ruff-text-size",
|
|
1891
|
+
"proptest",
|
|
1889
1892
|
"typepython-diagnostics",
|
|
1890
1893
|
"typepython-syntax",
|
|
1891
1894
|
]
|
|
1892
1895
|
|
|
1893
1896
|
[[package]]
|
|
1894
1897
|
name = "typepython-lsp"
|
|
1895
|
-
version = "0.1.
|
|
1898
|
+
version = "0.1.1"
|
|
1896
1899
|
dependencies = [
|
|
1897
1900
|
"anyhow",
|
|
1898
1901
|
"criterion",
|
|
@@ -1914,7 +1917,7 @@ dependencies = [
|
|
|
1914
1917
|
|
|
1915
1918
|
[[package]]
|
|
1916
1919
|
name = "typepython-project"
|
|
1917
|
-
version = "0.1.
|
|
1920
|
+
version = "0.1.1"
|
|
1918
1921
|
dependencies = [
|
|
1919
1922
|
"anyhow",
|
|
1920
1923
|
"glob",
|
|
@@ -1928,7 +1931,7 @@ dependencies = [
|
|
|
1928
1931
|
|
|
1929
1932
|
[[package]]
|
|
1930
1933
|
name = "typepython-syntax"
|
|
1931
|
-
version = "0.1.
|
|
1934
|
+
version = "0.1.1"
|
|
1932
1935
|
dependencies = [
|
|
1933
1936
|
"criterion",
|
|
1934
1937
|
"littrs-ruff-python-ast",
|
|
@@ -114,7 +114,7 @@ TypePython is an authoring layer, not a replacement for external checkers. One i
|
|
|
114
114
|
- **Incremental state and caching** -- fingerprint snapshots, cached artifacts, and LSP rechecks for changed modules plus affected dependents ([architecture](docs/architecture.md))
|
|
115
115
|
- **Full toolchain** -- `init`, `check`, `build`, `watch`, `clean`, `verify`, `migrate` ([CLI reference](docs/cli-reference.md))
|
|
116
116
|
- **LSP server** -- hover, go-to-definition, references, rename, completions, signature help, document symbols, workspace symbols, formatting, code actions, real-time diagnostics ([LSP](docs/lsp.md))
|
|
117
|
-
- **Publication-ready** -- `typepython verify`
|
|
117
|
+
- **Publication-ready** -- `typepython verify` performs structural publication checks by default, validates packaged wheel/sdist contents, and can opt into runtime import parity checks for trusted builds ([interop](docs/interop.md))
|
|
118
118
|
- **Bundled stdlib stubs** -- typing data for Python 3.10-3.12 standard library, no external dependencies
|
|
119
119
|
|
|
120
120
|
## Examples
|
|
@@ -138,7 +138,8 @@ typepython build --project . # Emit .py + .pyi
|
|
|
138
138
|
typepython watch --project . # Rebuild on changes
|
|
139
139
|
typepython clean --project . # Remove build artifacts
|
|
140
140
|
typepython lsp --project . # Start language server
|
|
141
|
-
typepython verify --project . #
|
|
141
|
+
typepython verify --project . # Structural publication validation (safe mode may ignore a project-controlled interpreter)
|
|
142
|
+
typepython verify --project . --unsafe-runtime-imports # Also import emitted modules for runtime parity checks
|
|
142
143
|
typepython migrate --project . --report # Migration coverage report
|
|
143
144
|
```
|
|
144
145
|
|
{type_python-0.1.0 → type_python-0.1.1}/crates/typepython_checking/src/calls/callable_resolution.rs
RENAMED
|
@@ -1040,7 +1040,9 @@ fn substitute_single_paramspec_from_semantic_callable(
|
|
|
1040
1040
|
return ty.clone();
|
|
1041
1041
|
};
|
|
1042
1042
|
let mut substitutions = GenericTypeParamSubstitutions::default();
|
|
1043
|
-
let param_name = param_spec_names.into_iter().next()
|
|
1043
|
+
let Some(param_name) = param_spec_names.into_iter().next() else {
|
|
1044
|
+
return ty.clone();
|
|
1045
|
+
};
|
|
1044
1046
|
if insert_param_spec_binding(
|
|
1045
1047
|
&mut substitutions,
|
|
1046
1048
|
¶m_name,
|
|
@@ -516,7 +516,7 @@ pub(super) fn inferred_return_type_for_owner(
|
|
|
516
516
|
Some(if trace_types.len() > 1 {
|
|
517
517
|
diagnostic_type_text(&join_semantic_type_candidates(trace_types))
|
|
518
518
|
} else {
|
|
519
|
-
diagnostic_type_text(trace_types.
|
|
519
|
+
diagnostic_type_text(&trace_types.into_iter().next()?)
|
|
520
520
|
})
|
|
521
521
|
}
|
|
522
522
|
|
|
@@ -236,9 +236,7 @@ pub(super) fn resolve_overload_selection_from_attempts<'a>(
|
|
|
236
236
|
|
|
237
237
|
match applicable.len() {
|
|
238
238
|
0 => ResolvedOverloadSelection::NotApplicable { runtime_generic_failures },
|
|
239
|
-
1 => ResolvedOverloadSelection::Selected(
|
|
240
|
-
applicable.pop().expect("single applicable overload"),
|
|
241
|
-
),
|
|
239
|
+
1 => ResolvedOverloadSelection::Selected(applicable.swap_remove(0)),
|
|
242
240
|
applicable_count => match select_most_specific_overload_index(node, nodes, &applicable) {
|
|
243
241
|
Some(index) => ResolvedOverloadSelection::Selected(applicable.swap_remove(index)),
|
|
244
242
|
None => ResolvedOverloadSelection::Ambiguous { applicable_count },
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import importlib
|
|
2
|
+
import json
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
sys.path.insert(0, sys.argv[1])
|
|
6
|
+
module_name = sys.argv[2]
|
|
7
|
+
|
|
8
|
+
try:
|
|
9
|
+
module = importlib.import_module(module_name)
|
|
10
|
+
public_names = getattr(module, "__all__", None)
|
|
11
|
+
if public_names is None:
|
|
12
|
+
public_names = [name for name in vars(module) if not name.startswith("_")]
|
|
13
|
+
elif not all(isinstance(name, str) for name in public_names):
|
|
14
|
+
raise TypeError("__all__ must contain only strings")
|
|
15
|
+
except BaseException as error:
|
|
16
|
+
print(
|
|
17
|
+
json.dumps({"importable": False, "error": f"{type(error).__name__}: {error}"})
|
|
18
|
+
)
|
|
19
|
+
else:
|
|
20
|
+
print(json.dumps({"importable": True, "public_names": public_names}))
|
|
@@ -88,6 +88,11 @@ pub(crate) struct VerifyArgs {
|
|
|
88
88
|
help = "Run an external type checker against the emitted build output (repeatable)"
|
|
89
89
|
)]
|
|
90
90
|
pub(crate) checkers: Vec<String>,
|
|
91
|
+
#[arg(
|
|
92
|
+
long = "unsafe-runtime-imports",
|
|
93
|
+
help = "Import emitted runtime modules during verification to compare runtime-visible public names; this executes project-controlled Python code"
|
|
94
|
+
)]
|
|
95
|
+
pub(crate) unsafe_runtime_imports: bool,
|
|
91
96
|
}
|
|
92
97
|
|
|
93
98
|
#[derive(Debug, Args)]
|
|
@@ -20,7 +20,9 @@ use clap::Parser;
|
|
|
20
20
|
use notify::{Config as NotifyConfig, RecommendedWatcher, Watcher};
|
|
21
21
|
use serde::Serialize;
|
|
22
22
|
use tracing_subscriber::EnvFilter;
|
|
23
|
-
use typepython_config::{
|
|
23
|
+
use typepython_config::{
|
|
24
|
+
ConfigError, ConfigHandle, ConfigSource, load, load_without_python_executable_validation,
|
|
25
|
+
};
|
|
24
26
|
use typepython_diagnostics::DiagnosticReport;
|
|
25
27
|
|
|
26
28
|
use crate::cli::{Cli, Command, InitArgs, OutputFormat, RunArgs};
|
|
@@ -37,8 +39,6 @@ const INIT_SOURCE_TEMPLATE: &str =
|
|
|
37
39
|
include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/../../templates/src/app/__init__.tpy"));
|
|
38
40
|
const RUNTIME_IMPORTABILITY_SCRIPT: &str =
|
|
39
41
|
include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/scripts/runtime_importability.py"));
|
|
40
|
-
const STATIC_ALL_NAMES_SCRIPT: &str =
|
|
41
|
-
include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/scripts/static_all_names.py"));
|
|
42
42
|
|
|
43
43
|
#[derive(Debug, Serialize)]
|
|
44
44
|
struct CommandSummary {
|
|
@@ -271,15 +271,28 @@ fn resolve_python_executable(config: &ConfigHandle) -> PathBuf {
|
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
fn load_project(project: Option<&PathBuf>) -> Result<ConfigHandle> {
|
|
274
|
-
let start =
|
|
274
|
+
let start = project_start_dir(project)?;
|
|
275
|
+
|
|
276
|
+
load(start).context("unable to load TypePython project configuration")
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
fn load_project_without_python_executable_validation(
|
|
280
|
+
project: Option<&PathBuf>,
|
|
281
|
+
) -> Result<ConfigHandle> {
|
|
282
|
+
let start = project_start_dir(project)?;
|
|
283
|
+
|
|
284
|
+
load_without_python_executable_validation(start)
|
|
285
|
+
.context("unable to load TypePython project configuration")
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
fn project_start_dir(project: Option<&PathBuf>) -> Result<PathBuf> {
|
|
289
|
+
Ok(match project {
|
|
275
290
|
Some(path) if path.is_file() => {
|
|
276
291
|
path.parent().map(Path::to_path_buf).unwrap_or_else(|| PathBuf::from("."))
|
|
277
292
|
}
|
|
278
293
|
Some(path) => path.clone(),
|
|
279
294
|
None => env::current_dir().context("unable to determine current directory")?,
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
load(start).context("unable to load TypePython project configuration")
|
|
295
|
+
})
|
|
283
296
|
}
|
|
284
297
|
|
|
285
298
|
fn write_file(path: &Path, content: &str, force: bool) -> Result<()> {
|
|
@@ -439,6 +439,7 @@ fn can_reuse_cached_pipeline_outputs(
|
|
|
439
439
|
snapshot_diff.added.is_empty()
|
|
440
440
|
&& snapshot_diff.removed.is_empty()
|
|
441
441
|
&& snapshot_diff.changed.is_empty()
|
|
442
|
+
&& previous.source_hashes == analyzed.incremental.source_hashes
|
|
442
443
|
&& previous.summaries == analyzed.incremental.summaries
|
|
443
444
|
&& previous.stdlib_snapshot == analyzed.incremental.stdlib_snapshot
|
|
444
445
|
&& !verify_build_artifacts(config, &analyzed.pre_lowering_emit_plan).has_errors()
|
|
@@ -187,6 +187,7 @@ fn run_verify_emits_outputs_when_checker_fails_and_emit_is_allowed() {
|
|
|
187
187
|
wheels: Vec::new(),
|
|
188
188
|
sdists: Vec::new(),
|
|
189
189
|
checkers: Vec::new(),
|
|
190
|
+
unsafe_runtime_imports: false,
|
|
190
191
|
})
|
|
191
192
|
.expect("verify should run to completion");
|
|
192
193
|
|
|
@@ -363,6 +364,64 @@ fn run_pipeline_invalidates_cache_when_public_summary_changes() {
|
|
|
363
364
|
assert_eq!(second.emit_plan.len(), 1);
|
|
364
365
|
}
|
|
365
366
|
|
|
367
|
+
#[test]
|
|
368
|
+
fn run_pipeline_invalidates_cache_when_source_hash_changes_without_public_summary_change() {
|
|
369
|
+
let project_dir = temp_project_dir(
|
|
370
|
+
"run_pipeline_invalidates_cache_when_source_hash_changes_without_public_summary_change",
|
|
371
|
+
);
|
|
372
|
+
let (diagnostics, lowered_modules, planned_artifacts, runtime_source) = {
|
|
373
|
+
fs::create_dir_all(project_dir.join("src")).expect("test setup should succeed");
|
|
374
|
+
fs::write(project_dir.join("typepython.toml"), "[project]\nsrc = [\"src\"]\n")
|
|
375
|
+
.expect("test setup should succeed");
|
|
376
|
+
fs::write(project_dir.join("src/app.tpy"), "def build() -> int:\n return 1\n")
|
|
377
|
+
.expect("test setup should succeed");
|
|
378
|
+
let config = load(&project_dir).expect("test setup should succeed");
|
|
379
|
+
let runtime_path = project_dir.join(".typepython/build/app.py");
|
|
380
|
+
|
|
381
|
+
let first = run_pipeline(&config).expect("test setup should succeed");
|
|
382
|
+
write_runtime_outputs(
|
|
383
|
+
&first.emit_plan,
|
|
384
|
+
&first.lowered_modules,
|
|
385
|
+
config.config.emit.write_py_typed,
|
|
386
|
+
false,
|
|
387
|
+
Some(&first.stub_contexts),
|
|
388
|
+
)
|
|
389
|
+
.expect("test setup should succeed");
|
|
390
|
+
write_incremental_snapshot(
|
|
391
|
+
&config.resolve_relative_path(&config.config.project.cache_dir),
|
|
392
|
+
&first.incremental,
|
|
393
|
+
)
|
|
394
|
+
.expect("test setup should succeed");
|
|
395
|
+
|
|
396
|
+
fs::write(project_dir.join("src/app.tpy"), "def build() -> int:\n return 2\n")
|
|
397
|
+
.expect("test setup should succeed");
|
|
398
|
+
|
|
399
|
+
let second = run_pipeline(&config).expect("test setup should succeed");
|
|
400
|
+
write_runtime_outputs(
|
|
401
|
+
&second.emit_plan,
|
|
402
|
+
&second.lowered_modules,
|
|
403
|
+
config.config.emit.write_py_typed,
|
|
404
|
+
false,
|
|
405
|
+
Some(&second.stub_contexts),
|
|
406
|
+
)
|
|
407
|
+
.expect("test setup should succeed");
|
|
408
|
+
|
|
409
|
+
(
|
|
410
|
+
second.diagnostics,
|
|
411
|
+
second.lowered_modules.len(),
|
|
412
|
+
second.emit_plan.len(),
|
|
413
|
+
fs::read_to_string(runtime_path).expect("runtime output should exist"),
|
|
414
|
+
)
|
|
415
|
+
};
|
|
416
|
+
remove_temp_project_dir(&project_dir);
|
|
417
|
+
|
|
418
|
+
assert!(diagnostics.is_empty());
|
|
419
|
+
assert_eq!(lowered_modules, 1);
|
|
420
|
+
assert_eq!(planned_artifacts, 1);
|
|
421
|
+
assert!(runtime_source.contains("return 2"));
|
|
422
|
+
assert!(!runtime_source.contains("return 1"));
|
|
423
|
+
}
|
|
424
|
+
|
|
366
425
|
#[test]
|
|
367
426
|
fn build_diagnostics_adds_emit_blocked_error_when_configured() {
|
|
368
427
|
let project_dir = temp_project_dir("build_diagnostics_adds_emit_blocked_error_when_configured");
|