type-python 0.3.0__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (956) hide show
  1. {type_python-0.3.0 → type_python-0.4.0}/Cargo.lock +14 -13
  2. {type_python-0.3.0 → type_python-0.4.0}/Cargo.toml +2 -1
  3. type_python-0.4.0/PKG-INFO +175 -0
  4. type_python-0.4.0/README-PyPI.md +146 -0
  5. type_python-0.4.0/README.md +320 -0
  6. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_binding/src/binding_impl.rs +1 -0
  7. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_binding/src/types.rs +1 -0
  8. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/assignments.rs +420 -52
  9. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/calls/call_diagnostics.rs +105 -57
  10. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/calls/callable_resolution.rs +165 -20
  11. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/calls/dataclass.rs +303 -0
  12. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/calls/member_access.rs +43 -5
  13. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/declarations.rs +16 -9
  14. type_python-0.4.0/crates/typepython_checking/src/effects.rs +1955 -0
  15. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/generic_solver.rs +13 -0
  16. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/lib.rs +200 -12
  17. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/semantic.rs +455 -4
  18. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/source_facts.rs +100 -3
  19. type_python-0.4.0/crates/typepython_checking/src/stubs.rs +392 -0
  20. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/tests/advanced.rs +0 -2513
  21. type_python-0.4.0/crates/typepython_checking/src/tests/advanced_overloads.rs +2514 -0
  22. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/tests/calls.rs +183 -0
  23. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/tests/mod.rs +30 -0
  24. type_python-0.4.0/crates/typepython_checking/src/tests/semantic.rs +2337 -0
  25. type_python-0.4.0/crates/typepython_checking/src/tests/semantic_effects.rs +1027 -0
  26. type_python-0.4.0/crates/typepython_checking/src/tests/semantic_taint.rs +628 -0
  27. type_python-0.4.0/crates/typepython_checking/src/tests/semantic_type_level.rs +68 -0
  28. type_python-0.4.0/crates/typepython_checking/src/tests/semantic_validator.rs +315 -0
  29. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/tests/typed_dict.rs +128 -0
  30. type_python-0.4.0/crates/typepython_checking/src/type_level.rs +423 -0
  31. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_system/assignability.rs +38 -0
  32. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_system/contextual.rs +183 -1
  33. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_system/expressions.rs +24 -1
  34. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_system/flow.rs +337 -21
  35. type_python-0.4.0/crates/typepython_checking/src/type_system/flow_tests.rs +100 -0
  36. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_system/members.rs +17 -5
  37. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_system/mod.rs +1 -0
  38. type_python-0.4.0/crates/typepython_cli/src/adapter.rs +346 -0
  39. type_python-0.4.0/crates/typepython_cli/src/api_diff.rs +544 -0
  40. type_python-0.4.0/crates/typepython_cli/src/cli.rs +240 -0
  41. type_python-0.4.0/crates/typepython_cli/src/compat.rs +50 -0
  42. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/main.rs +12 -0
  43. type_python-0.4.0/crates/typepython_cli/src/migration.rs +1702 -0
  44. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/pipeline/stubs.rs +27 -0
  45. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/pipeline.rs +59 -4
  46. type_python-0.4.0/crates/typepython_cli/src/tests/adapter.rs +68 -0
  47. type_python-0.4.0/crates/typepython_cli/src/tests/api_diff.rs +298 -0
  48. type_python-0.4.0/crates/typepython_cli/src/tests/compat.rs +148 -0
  49. type_python-0.4.0/crates/typepython_cli/src/tests/migration.rs +658 -0
  50. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/tests/mod.rs +28 -5
  51. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/tests/pipeline.rs +129 -1
  52. type_python-0.4.0/crates/typepython_cli/src/tests/type_health.rs +141 -0
  53. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/tests/verification.rs +464 -0
  54. type_python-0.4.0/crates/typepython_cli/src/type_health.rs +542 -0
  55. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/verification.rs +772 -22
  56. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_config/src/lib.rs +110 -1
  57. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/planning.rs +8 -0
  58. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/runtime.rs +204 -7
  59. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/stubs.rs +66 -38
  60. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/tests.rs +476 -5
  61. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_incremental/src/lib.rs +87 -2
  62. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/core.rs +778 -194
  63. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_nested_unsafe_in_function.snap +1 -1
  64. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_unsafe_block.snap +1 -1
  65. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/tests.rs +482 -3
  66. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/typeddict.rs +257 -133
  67. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/Cargo.toml +1 -0
  68. type_python-0.4.0/crates/typepython_lsp/src/analysis.rs +1656 -0
  69. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/lib.rs +5 -0
  70. type_python-0.4.0/crates/typepython_lsp/src/requests/analysis/code_actions.rs +775 -0
  71. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/symbols.rs +17 -3
  72. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/text.rs +3 -3
  73. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/protocol.rs +21 -5
  74. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/server.rs +127 -0
  75. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/tests.rs +1109 -23
  76. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/expr_metadata.rs +2 -0
  77. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/formatting.rs +16 -21
  78. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/metadata_collectors.rs +477 -5
  79. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/surface.rs +232 -0
  80. type_python-0.4.0/crates/typepython_syntax/src/syntax_parts/type_expr.rs +1034 -0
  81. {type_python-0.3.0 → type_python-0.4.0}/pyproject.toml +4 -2
  82. {type_python-0.3.0 → type_python-0.4.0}/stdlib/BASELINE.toml +2 -0
  83. type_python-0.4.0/stdlib/REFRESH_STATS.json +10 -0
  84. type_python-0.4.0/type_python.egg-info/PKG-INFO +175 -0
  85. {type_python-0.3.0 → type_python-0.4.0}/type_python.egg-info/SOURCES.txt +17 -0
  86. type_python-0.4.0/typepython/__init__.py +26 -0
  87. type_python-0.4.0/typepython/annotation_compat.py +393 -0
  88. type_python-0.3.0/PKG-INFO +0 -118
  89. type_python-0.3.0/README-PyPI.md +0 -91
  90. type_python-0.3.0/README.md +0 -215
  91. type_python-0.3.0/crates/typepython_checking/src/stubs.rs +0 -171
  92. type_python-0.3.0/crates/typepython_checking/src/tests/semantic.rs +0 -930
  93. type_python-0.3.0/crates/typepython_cli/src/cli.rs +0 -111
  94. type_python-0.3.0/crates/typepython_cli/src/migration.rs +0 -621
  95. type_python-0.3.0/crates/typepython_cli/src/tests/migration.rs +0 -177
  96. type_python-0.3.0/crates/typepython_lsp/src/analysis.rs +0 -487
  97. type_python-0.3.0/crates/typepython_lsp/src/requests/analysis/code_actions.rs +0 -217
  98. type_python-0.3.0/crates/typepython_syntax/src/syntax_parts/type_expr.rs +0 -400
  99. type_python-0.3.0/type_python.egg-info/PKG-INFO +0 -118
  100. type_python-0.3.0/typepython/__init__.py +0 -13
  101. type_python-0.3.0/typepython/annotation_compat.py +0 -142
  102. {type_python-0.3.0 → type_python-0.4.0}/LICENSE +0 -0
  103. {type_python-0.3.0 → type_python-0.4.0}/MANIFEST.in +0 -0
  104. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_binding/Cargo.toml +0 -0
  105. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_binding/src/lib.rs +0 -0
  106. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_binding/src/tests.rs +0 -0
  107. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/Cargo.toml +0 -0
  108. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/benches/checker.rs +0 -0
  109. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/proptest-regressions/tests/property_based.txt +0 -0
  110. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/calls/mod.rs +0 -0
  111. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/calls/reporting.rs +0 -0
  112. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/declaration_semantics.rs +0 -0
  113. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/tests/advanced_generics.rs +0 -0
  114. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/tests/property_based.rs +0 -0
  115. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_core.rs +0 -0
  116. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_checking/src/type_system/imports.rs +0 -0
  117. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/Cargo.toml +0 -0
  118. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/scripts/runtime_importability.py +0 -0
  119. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/discovery.rs +0 -0
  120. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/pipeline/loading.rs +0 -0
  121. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_cli/src/tests/consistency.rs +0 -0
  122. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_config/Cargo.toml +0 -0
  123. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_diagnostics/Cargo.toml +0 -0
  124. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_diagnostics/src/lib.rs +0 -0
  125. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/Cargo.toml +0 -0
  126. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/lib.rs +0 -0
  127. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_migration_stub.snap +0 -0
  128. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_shadow_stub.snap +0 -0
  129. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_async_function.snap +0 -0
  130. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_basic_module.snap +0 -0
  131. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_class_with_methods.snap +0 -0
  132. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_native_pep695_surface.snap +0 -0
  133. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_overloaded_function.snap +0 -0
  134. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_graph/Cargo.toml +0 -0
  135. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_graph/benches/graph.rs +0 -0
  136. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_graph/src/lib.rs +0 -0
  137. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_incremental/Cargo.toml +0 -0
  138. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/Cargo.toml +0 -0
  139. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/benches/lower.rs +0 -0
  140. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/lib.rs +0 -0
  141. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_combined_typepython_constructs.snap +0 -0
  142. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_imports_312.snap +0 -0
  143. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_qualified_names_310.snap +0 -0
  144. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class.snap +0 -0
  145. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class_with_bases.snap +0 -0
  146. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_class_and_function.snap +0 -0
  147. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_interface.snap +0 -0
  148. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_typealias.snap +0 -0
  149. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface.snap +0 -0
  150. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface_with_bases.snap +0 -0
  151. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_lambda_annotation.snap +0 -0
  152. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_fallback_defaults_312.snap +0 -0
  153. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_native_generics_313.snap +0 -0
  154. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_overload_def.snap +0 -0
  155. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_paramspec.snap +0 -0
  156. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_passthrough_python_source.snap +0 -0
  157. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class.snap +0 -0
  158. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class_with_bases.snap +0 -0
  159. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_type_param_with_bounds_constraints_defaults.snap +0 -0
  160. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typealias.snap +0 -0
  161. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typeddict_keyword_stripping.snap +0 -0
  162. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/benches/incremental.rs +0 -0
  163. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/formatting.rs +0 -0
  164. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/mod.rs +0 -0
  165. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/analysis/typing.rs +0 -0
  166. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/mod.rs +0 -0
  167. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/signature_help.rs +0 -0
  168. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/sources.rs +0 -0
  169. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/requests/symbols.rs +0 -0
  170. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/scheduler.rs +0 -0
  171. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/discovery.rs +0 -0
  172. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/lifecycle.rs +0 -0
  173. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/mod.rs +0 -0
  174. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_lsp/src/workspace/state.rs +0 -0
  175. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_project/Cargo.toml +0 -0
  176. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_project/src/lib.rs +0 -0
  177. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/Cargo.toml +0 -0
  178. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/benches/parse.rs +0 -0
  179. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/proptest-regressions/lib.txt +0 -0
  180. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/lib.rs +0 -0
  181. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/ast_backed.rs +0 -0
  182. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/calls.rs +0 -0
  183. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/control_flow.rs +0 -0
  184. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/guards.rs +0 -0
  185. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/lambdas.rs +0 -0
  186. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/syntax_extensions.rs +0 -0
  187. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction/tests.rs +0 -0
  188. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/extraction.rs +0 -0
  189. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/mod.rs +0 -0
  190. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_syntax/src/syntax_parts/parsing.rs +0 -0
  191. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_target/Cargo.toml +0 -0
  192. {type_python-0.3.0 → type_python-0.4.0}/crates/typepython_target/src/lib.rs +0 -0
  193. {type_python-0.3.0 → type_python-0.4.0}/rust-toolchain.toml +0 -0
  194. {type_python-0.3.0 → type_python-0.4.0}/rustfmt.toml +0 -0
  195. {type_python-0.3.0 → type_python-0.4.0}/setup.cfg +0 -0
  196. {type_python-0.3.0 → type_python-0.4.0}/setup.py +0 -0
  197. {type_python-0.3.0 → type_python-0.4.0}/stdlib/VERSIONS +0 -0
  198. {type_python-0.3.0 → type_python-0.4.0}/stdlib/__future__.pyi +0 -0
  199. {type_python-0.3.0 → type_python-0.4.0}/stdlib/__main__.pyi +0 -0
  200. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_ast.pyi +0 -0
  201. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_asyncio.pyi +0 -0
  202. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_bisect.pyi +0 -0
  203. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_blake2.pyi +0 -0
  204. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_bootlocale.pyi +0 -0
  205. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_bz2.pyi +0 -0
  206. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_codecs.pyi +0 -0
  207. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_collections_abc.pyi +0 -0
  208. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_compat_pickle.pyi +0 -0
  209. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_compression.pyi +0 -0
  210. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_contextvars.pyi +0 -0
  211. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_csv.pyi +0 -0
  212. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_ctypes.pyi +0 -0
  213. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_curses.pyi +0 -0
  214. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_curses_panel.pyi +0 -0
  215. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_dbm.pyi +0 -0
  216. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_decimal.pyi +0 -0
  217. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_frozen_importlib.pyi +0 -0
  218. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_frozen_importlib_external.pyi +0 -0
  219. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_gdbm.pyi +0 -0
  220. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_hashlib.pyi +0 -0
  221. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_heapq.pyi +0 -0
  222. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_imp.pyi +0 -0
  223. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_interpchannels.pyi +0 -0
  224. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_interpqueues.pyi +0 -0
  225. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_interpreters.pyi +0 -0
  226. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_io.pyi +0 -0
  227. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_json.pyi +0 -0
  228. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_locale.pyi +0 -0
  229. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_lsprof.pyi +0 -0
  230. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_lzma.pyi +0 -0
  231. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_markupbase.pyi +0 -0
  232. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_msi.pyi +0 -0
  233. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_multibytecodec.pyi +0 -0
  234. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_operator.pyi +0 -0
  235. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_osx_support.pyi +0 -0
  236. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_pickle.pyi +0 -0
  237. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_posixsubprocess.pyi +0 -0
  238. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_py_abc.pyi +0 -0
  239. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_pydecimal.pyi +0 -0
  240. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_queue.pyi +0 -0
  241. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_random.pyi +0 -0
  242. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_sitebuiltins.pyi +0 -0
  243. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_socket.pyi +0 -0
  244. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_sqlite3.pyi +0 -0
  245. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_ssl.pyi +0 -0
  246. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_stat.pyi +0 -0
  247. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_struct.pyi +0 -0
  248. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_thread.pyi +0 -0
  249. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_threading_local.pyi +0 -0
  250. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_tkinter.pyi +0 -0
  251. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_tracemalloc.pyi +0 -0
  252. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_typeshed/__init__.pyi +0 -0
  253. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
  254. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_typeshed/dbapi.pyi +0 -0
  255. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_typeshed/importlib.pyi +0 -0
  256. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_typeshed/wsgi.pyi +0 -0
  257. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_typeshed/xml.pyi +0 -0
  258. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_warnings.pyi +0 -0
  259. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_weakref.pyi +0 -0
  260. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_weakrefset.pyi +0 -0
  261. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_winapi.pyi +0 -0
  262. {type_python-0.3.0 → type_python-0.4.0}/stdlib/_zstd.pyi +0 -0
  263. {type_python-0.3.0 → type_python-0.4.0}/stdlib/abc/__init__.pyi +0 -0
  264. {type_python-0.3.0 → type_python-0.4.0}/stdlib/abc.pyi +0 -0
  265. {type_python-0.3.0 → type_python-0.4.0}/stdlib/aifc.pyi +0 -0
  266. {type_python-0.3.0 → type_python-0.4.0}/stdlib/annotationlib.pyi +0 -0
  267. {type_python-0.3.0 → type_python-0.4.0}/stdlib/antigravity.pyi +0 -0
  268. {type_python-0.3.0 → type_python-0.4.0}/stdlib/argparse.pyi +0 -0
  269. {type_python-0.3.0 → type_python-0.4.0}/stdlib/array.pyi +0 -0
  270. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ast.pyi +0 -0
  271. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asynchat.pyi +0 -0
  272. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/__init__.pyi +0 -0
  273. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/base_events.pyi +0 -0
  274. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/base_futures.pyi +0 -0
  275. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/base_subprocess.pyi +0 -0
  276. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/base_tasks.pyi +0 -0
  277. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/constants.pyi +0 -0
  278. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/coroutines.pyi +0 -0
  279. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/events.pyi +0 -0
  280. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/exceptions.pyi +0 -0
  281. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/format_helpers.pyi +0 -0
  282. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/futures.pyi +0 -0
  283. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/graph.pyi +0 -0
  284. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/locks.pyi +0 -0
  285. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/log.pyi +0 -0
  286. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/mixins.pyi +0 -0
  287. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/proactor_events.pyi +0 -0
  288. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/protocols.pyi +0 -0
  289. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/queues.pyi +0 -0
  290. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/runners.pyi +0 -0
  291. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/selector_events.pyi +0 -0
  292. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/sslproto.pyi +0 -0
  293. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/staggered.pyi +0 -0
  294. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/streams.pyi +0 -0
  295. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/subprocess.pyi +0 -0
  296. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/taskgroups.pyi +0 -0
  297. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/tasks.pyi +0 -0
  298. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/threads.pyi +0 -0
  299. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/timeouts.pyi +0 -0
  300. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/tools.pyi +0 -0
  301. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/transports.pyi +0 -0
  302. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/trsock.pyi +0 -0
  303. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/unix_events.pyi +0 -0
  304. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/windows_events.pyi +0 -0
  305. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncio/windows_utils.pyi +0 -0
  306. {type_python-0.3.0 → type_python-0.4.0}/stdlib/asyncore.pyi +0 -0
  307. {type_python-0.3.0 → type_python-0.4.0}/stdlib/atexit.pyi +0 -0
  308. {type_python-0.3.0 → type_python-0.4.0}/stdlib/audioop.pyi +0 -0
  309. {type_python-0.3.0 → type_python-0.4.0}/stdlib/base64.pyi +0 -0
  310. {type_python-0.3.0 → type_python-0.4.0}/stdlib/bdb.pyi +0 -0
  311. {type_python-0.3.0 → type_python-0.4.0}/stdlib/binascii.pyi +0 -0
  312. {type_python-0.3.0 → type_python-0.4.0}/stdlib/binhex.pyi +0 -0
  313. {type_python-0.3.0 → type_python-0.4.0}/stdlib/bisect.pyi +0 -0
  314. {type_python-0.3.0 → type_python-0.4.0}/stdlib/builtins.pyi +0 -0
  315. {type_python-0.3.0 → type_python-0.4.0}/stdlib/bz2.pyi +0 -0
  316. {type_python-0.3.0 → type_python-0.4.0}/stdlib/cProfile.pyi +0 -0
  317. {type_python-0.3.0 → type_python-0.4.0}/stdlib/calendar.pyi +0 -0
  318. {type_python-0.3.0 → type_python-0.4.0}/stdlib/cgi.pyi +0 -0
  319. {type_python-0.3.0 → type_python-0.4.0}/stdlib/cgitb.pyi +0 -0
  320. {type_python-0.3.0 → type_python-0.4.0}/stdlib/chunk.pyi +0 -0
  321. {type_python-0.3.0 → type_python-0.4.0}/stdlib/cmath.pyi +0 -0
  322. {type_python-0.3.0 → type_python-0.4.0}/stdlib/cmd.pyi +0 -0
  323. {type_python-0.3.0 → type_python-0.4.0}/stdlib/code.pyi +0 -0
  324. {type_python-0.3.0 → type_python-0.4.0}/stdlib/codecs.pyi +0 -0
  325. {type_python-0.3.0 → type_python-0.4.0}/stdlib/codeop.pyi +0 -0
  326. {type_python-0.3.0 → type_python-0.4.0}/stdlib/collections/__init__.pyi +0 -0
  327. {type_python-0.3.0 → type_python-0.4.0}/stdlib/collections/abc.pyi +0 -0
  328. {type_python-0.3.0 → type_python-0.4.0}/stdlib/colorsys.pyi +0 -0
  329. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compileall.pyi +0 -0
  330. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/__init__.pyi +0 -0
  331. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/_common/__init__.pyi +0 -0
  332. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/_common/_streams.pyi +0 -0
  333. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/bz2.pyi +0 -0
  334. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/gzip.pyi +0 -0
  335. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/lzma.pyi +0 -0
  336. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/zlib.pyi +0 -0
  337. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/zstd/__init__.pyi +0 -0
  338. {type_python-0.3.0 → type_python-0.4.0}/stdlib/compression/zstd/_zstdfile.pyi +0 -0
  339. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/__init__.pyi +0 -0
  340. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/futures/__init__.pyi +0 -0
  341. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/futures/_base.pyi +0 -0
  342. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/futures/interpreter.pyi +0 -0
  343. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/futures/process.pyi +0 -0
  344. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/futures/thread.pyi +0 -0
  345. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/interpreters/__init__.pyi +0 -0
  346. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/interpreters/_crossinterp.pyi +0 -0
  347. {type_python-0.3.0 → type_python-0.4.0}/stdlib/concurrent/interpreters/_queues.pyi +0 -0
  348. {type_python-0.3.0 → type_python-0.4.0}/stdlib/configparser.pyi +0 -0
  349. {type_python-0.3.0 → type_python-0.4.0}/stdlib/contextlib.pyi +0 -0
  350. {type_python-0.3.0 → type_python-0.4.0}/stdlib/contextvars.pyi +0 -0
  351. {type_python-0.3.0 → type_python-0.4.0}/stdlib/copy.pyi +0 -0
  352. {type_python-0.3.0 → type_python-0.4.0}/stdlib/copyreg.pyi +0 -0
  353. {type_python-0.3.0 → type_python-0.4.0}/stdlib/crypt.pyi +0 -0
  354. {type_python-0.3.0 → type_python-0.4.0}/stdlib/csv.pyi +0 -0
  355. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/__init__.pyi +0 -0
  356. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/_endian.pyi +0 -0
  357. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/macholib/__init__.pyi +0 -0
  358. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/macholib/dyld.pyi +0 -0
  359. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/macholib/dylib.pyi +0 -0
  360. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/macholib/framework.pyi +0 -0
  361. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/util.pyi +0 -0
  362. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ctypes/wintypes.pyi +0 -0
  363. {type_python-0.3.0 → type_python-0.4.0}/stdlib/curses/__init__.pyi +0 -0
  364. {type_python-0.3.0 → type_python-0.4.0}/stdlib/curses/ascii.pyi +0 -0
  365. {type_python-0.3.0 → type_python-0.4.0}/stdlib/curses/has_key.pyi +0 -0
  366. {type_python-0.3.0 → type_python-0.4.0}/stdlib/curses/panel.pyi +0 -0
  367. {type_python-0.3.0 → type_python-0.4.0}/stdlib/curses/textpad.pyi +0 -0
  368. {type_python-0.3.0 → type_python-0.4.0}/stdlib/dataclasses.pyi +0 -0
  369. {type_python-0.3.0 → type_python-0.4.0}/stdlib/datetime.pyi +0 -0
  370. {type_python-0.3.0 → type_python-0.4.0}/stdlib/dbm/__init__.pyi +0 -0
  371. {type_python-0.3.0 → type_python-0.4.0}/stdlib/dbm/dumb.pyi +0 -0
  372. {type_python-0.3.0 → type_python-0.4.0}/stdlib/dbm/gnu.pyi +0 -0
  373. {type_python-0.3.0 → type_python-0.4.0}/stdlib/dbm/ndbm.pyi +0 -0
  374. {type_python-0.3.0 → type_python-0.4.0}/stdlib/dbm/sqlite3.pyi +0 -0
  375. {type_python-0.3.0 → type_python-0.4.0}/stdlib/decimal.pyi +0 -0
  376. {type_python-0.3.0 → type_python-0.4.0}/stdlib/difflib.pyi +0 -0
  377. {type_python-0.3.0 → type_python-0.4.0}/stdlib/dis.pyi +0 -0
  378. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/__init__.pyi +0 -0
  379. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/_msvccompiler.pyi +0 -0
  380. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/archive_util.pyi +0 -0
  381. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/bcppcompiler.pyi +0 -0
  382. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/ccompiler.pyi +0 -0
  383. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/cmd.pyi +0 -0
  384. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/__init__.pyi +0 -0
  385. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/bdist.pyi +0 -0
  386. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/bdist_dumb.pyi +0 -0
  387. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/bdist_msi.pyi +0 -0
  388. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/bdist_packager.pyi +0 -0
  389. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/bdist_rpm.pyi +0 -0
  390. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/bdist_wininst.pyi +0 -0
  391. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/build.pyi +0 -0
  392. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/build_clib.pyi +0 -0
  393. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/build_ext.pyi +0 -0
  394. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/build_py.pyi +0 -0
  395. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/build_scripts.pyi +0 -0
  396. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/check.pyi +0 -0
  397. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/clean.pyi +0 -0
  398. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/config.pyi +0 -0
  399. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/install.pyi +0 -0
  400. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/install_data.pyi +0 -0
  401. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/install_egg_info.pyi +0 -0
  402. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/install_headers.pyi +0 -0
  403. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/install_lib.pyi +0 -0
  404. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/install_scripts.pyi +0 -0
  405. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/register.pyi +0 -0
  406. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/sdist.pyi +0 -0
  407. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/command/upload.pyi +0 -0
  408. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/config.pyi +0 -0
  409. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/core.pyi +0 -0
  410. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/cygwinccompiler.pyi +0 -0
  411. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/debug.pyi +0 -0
  412. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/dep_util.pyi +0 -0
  413. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/dir_util.pyi +0 -0
  414. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/dist.pyi +0 -0
  415. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/errors.pyi +0 -0
  416. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/extension.pyi +0 -0
  417. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/fancy_getopt.pyi +0 -0
  418. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/file_util.pyi +0 -0
  419. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/filelist.pyi +0 -0
  420. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/log.pyi +0 -0
  421. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/msvccompiler.pyi +0 -0
  422. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/spawn.pyi +0 -0
  423. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/sysconfig.pyi +0 -0
  424. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/text_file.pyi +0 -0
  425. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/unixccompiler.pyi +0 -0
  426. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/util.pyi +0 -0
  427. {type_python-0.3.0 → type_python-0.4.0}/stdlib/distutils/version.pyi +0 -0
  428. {type_python-0.3.0 → type_python-0.4.0}/stdlib/doctest.pyi +0 -0
  429. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/__init__.pyi +0 -0
  430. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/_header_value_parser.pyi +0 -0
  431. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/_policybase.pyi +0 -0
  432. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/base64mime.pyi +0 -0
  433. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/charset.pyi +0 -0
  434. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/contentmanager.pyi +0 -0
  435. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/encoders.pyi +0 -0
  436. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/errors.pyi +0 -0
  437. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/feedparser.pyi +0 -0
  438. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/generator.pyi +0 -0
  439. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/header.pyi +0 -0
  440. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/headerregistry.pyi +0 -0
  441. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/iterators.pyi +0 -0
  442. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/message.pyi +0 -0
  443. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/__init__.pyi +0 -0
  444. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/application.pyi +0 -0
  445. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/audio.pyi +0 -0
  446. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/base.pyi +0 -0
  447. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/image.pyi +0 -0
  448. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/message.pyi +0 -0
  449. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/multipart.pyi +0 -0
  450. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/nonmultipart.pyi +0 -0
  451. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/mime/text.pyi +0 -0
  452. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/parser.pyi +0 -0
  453. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/policy.pyi +0 -0
  454. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/quoprimime.pyi +0 -0
  455. {type_python-0.3.0 → type_python-0.4.0}/stdlib/email/utils.pyi +0 -0
  456. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/__init__.pyi +0 -0
  457. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/aliases.pyi +0 -0
  458. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/ascii.pyi +0 -0
  459. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/base64_codec.pyi +0 -0
  460. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/big5.pyi +0 -0
  461. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/big5hkscs.pyi +0 -0
  462. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/bz2_codec.pyi +0 -0
  463. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/charmap.pyi +0 -0
  464. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp037.pyi +0 -0
  465. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1006.pyi +0 -0
  466. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1026.pyi +0 -0
  467. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1125.pyi +0 -0
  468. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1140.pyi +0 -0
  469. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1250.pyi +0 -0
  470. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1251.pyi +0 -0
  471. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1252.pyi +0 -0
  472. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1253.pyi +0 -0
  473. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1254.pyi +0 -0
  474. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1255.pyi +0 -0
  475. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1256.pyi +0 -0
  476. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1257.pyi +0 -0
  477. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp1258.pyi +0 -0
  478. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp273.pyi +0 -0
  479. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp424.pyi +0 -0
  480. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp437.pyi +0 -0
  481. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp500.pyi +0 -0
  482. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp720.pyi +0 -0
  483. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp737.pyi +0 -0
  484. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp775.pyi +0 -0
  485. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp850.pyi +0 -0
  486. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp852.pyi +0 -0
  487. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp855.pyi +0 -0
  488. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp856.pyi +0 -0
  489. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp857.pyi +0 -0
  490. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp858.pyi +0 -0
  491. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp860.pyi +0 -0
  492. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp861.pyi +0 -0
  493. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp862.pyi +0 -0
  494. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp863.pyi +0 -0
  495. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp864.pyi +0 -0
  496. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp865.pyi +0 -0
  497. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp866.pyi +0 -0
  498. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp869.pyi +0 -0
  499. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp874.pyi +0 -0
  500. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp875.pyi +0 -0
  501. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp932.pyi +0 -0
  502. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp949.pyi +0 -0
  503. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/cp950.pyi +0 -0
  504. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/euc_jis_2004.pyi +0 -0
  505. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/euc_jisx0213.pyi +0 -0
  506. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/euc_jp.pyi +0 -0
  507. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/euc_kr.pyi +0 -0
  508. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/gb18030.pyi +0 -0
  509. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/gb2312.pyi +0 -0
  510. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/gbk.pyi +0 -0
  511. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/hex_codec.pyi +0 -0
  512. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/hp_roman8.pyi +0 -0
  513. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/hz.pyi +0 -0
  514. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/idna.pyi +0 -0
  515. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso2022_jp.pyi +0 -0
  516. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_1.pyi +0 -0
  517. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_2.pyi +0 -0
  518. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
  519. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_3.pyi +0 -0
  520. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
  521. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso2022_kr.pyi +0 -0
  522. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_1.pyi +0 -0
  523. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_10.pyi +0 -0
  524. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_11.pyi +0 -0
  525. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_13.pyi +0 -0
  526. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_14.pyi +0 -0
  527. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_15.pyi +0 -0
  528. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_16.pyi +0 -0
  529. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_2.pyi +0 -0
  530. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_3.pyi +0 -0
  531. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_4.pyi +0 -0
  532. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_5.pyi +0 -0
  533. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_6.pyi +0 -0
  534. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_7.pyi +0 -0
  535. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_8.pyi +0 -0
  536. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/iso8859_9.pyi +0 -0
  537. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/johab.pyi +0 -0
  538. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/koi8_r.pyi +0 -0
  539. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/koi8_t.pyi +0 -0
  540. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/koi8_u.pyi +0 -0
  541. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/kz1048.pyi +0 -0
  542. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/latin_1.pyi +0 -0
  543. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_arabic.pyi +0 -0
  544. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_croatian.pyi +0 -0
  545. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_cyrillic.pyi +0 -0
  546. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_farsi.pyi +0 -0
  547. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_greek.pyi +0 -0
  548. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_iceland.pyi +0 -0
  549. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_latin2.pyi +0 -0
  550. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_roman.pyi +0 -0
  551. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_romanian.pyi +0 -0
  552. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mac_turkish.pyi +0 -0
  553. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/mbcs.pyi +0 -0
  554. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/oem.pyi +0 -0
  555. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/palmos.pyi +0 -0
  556. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/ptcp154.pyi +0 -0
  557. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/punycode.pyi +0 -0
  558. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/quopri_codec.pyi +0 -0
  559. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/raw_unicode_escape.pyi +0 -0
  560. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/rot_13.pyi +0 -0
  561. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/shift_jis.pyi +0 -0
  562. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/shift_jis_2004.pyi +0 -0
  563. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/shift_jisx0213.pyi +0 -0
  564. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/tis_620.pyi +0 -0
  565. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/undefined.pyi +0 -0
  566. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/unicode_escape.pyi +0 -0
  567. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_16.pyi +0 -0
  568. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_16_be.pyi +0 -0
  569. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_16_le.pyi +0 -0
  570. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_32.pyi +0 -0
  571. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_32_be.pyi +0 -0
  572. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_32_le.pyi +0 -0
  573. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_7.pyi +0 -0
  574. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_8.pyi +0 -0
  575. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/utf_8_sig.pyi +0 -0
  576. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/uu_codec.pyi +0 -0
  577. {type_python-0.3.0 → type_python-0.4.0}/stdlib/encodings/zlib_codec.pyi +0 -0
  578. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ensurepip/__init__.pyi +0 -0
  579. {type_python-0.3.0 → type_python-0.4.0}/stdlib/enum/__init__.pyi +0 -0
  580. {type_python-0.3.0 → type_python-0.4.0}/stdlib/enum.pyi +0 -0
  581. {type_python-0.3.0 → type_python-0.4.0}/stdlib/errno.pyi +0 -0
  582. {type_python-0.3.0 → type_python-0.4.0}/stdlib/faulthandler.pyi +0 -0
  583. {type_python-0.3.0 → type_python-0.4.0}/stdlib/fcntl.pyi +0 -0
  584. {type_python-0.3.0 → type_python-0.4.0}/stdlib/filecmp.pyi +0 -0
  585. {type_python-0.3.0 → type_python-0.4.0}/stdlib/fileinput.pyi +0 -0
  586. {type_python-0.3.0 → type_python-0.4.0}/stdlib/fnmatch.pyi +0 -0
  587. {type_python-0.3.0 → type_python-0.4.0}/stdlib/formatter.pyi +0 -0
  588. {type_python-0.3.0 → type_python-0.4.0}/stdlib/fractions.pyi +0 -0
  589. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ftplib.pyi +0 -0
  590. {type_python-0.3.0 → type_python-0.4.0}/stdlib/functools.pyi +0 -0
  591. {type_python-0.3.0 → type_python-0.4.0}/stdlib/gc.pyi +0 -0
  592. {type_python-0.3.0 → type_python-0.4.0}/stdlib/genericpath.pyi +0 -0
  593. {type_python-0.3.0 → type_python-0.4.0}/stdlib/getopt.pyi +0 -0
  594. {type_python-0.3.0 → type_python-0.4.0}/stdlib/getpass.pyi +0 -0
  595. {type_python-0.3.0 → type_python-0.4.0}/stdlib/gettext.pyi +0 -0
  596. {type_python-0.3.0 → type_python-0.4.0}/stdlib/glob.pyi +0 -0
  597. {type_python-0.3.0 → type_python-0.4.0}/stdlib/graphlib.pyi +0 -0
  598. {type_python-0.3.0 → type_python-0.4.0}/stdlib/grp.pyi +0 -0
  599. {type_python-0.3.0 → type_python-0.4.0}/stdlib/gzip.pyi +0 -0
  600. {type_python-0.3.0 → type_python-0.4.0}/stdlib/hashlib.pyi +0 -0
  601. {type_python-0.3.0 → type_python-0.4.0}/stdlib/heapq.pyi +0 -0
  602. {type_python-0.3.0 → type_python-0.4.0}/stdlib/hmac.pyi +0 -0
  603. {type_python-0.3.0 → type_python-0.4.0}/stdlib/html/__init__.pyi +0 -0
  604. {type_python-0.3.0 → type_python-0.4.0}/stdlib/html/entities.pyi +0 -0
  605. {type_python-0.3.0 → type_python-0.4.0}/stdlib/html/parser.pyi +0 -0
  606. {type_python-0.3.0 → type_python-0.4.0}/stdlib/http/__init__.pyi +0 -0
  607. {type_python-0.3.0 → type_python-0.4.0}/stdlib/http/client.pyi +0 -0
  608. {type_python-0.3.0 → type_python-0.4.0}/stdlib/http/cookiejar.pyi +0 -0
  609. {type_python-0.3.0 → type_python-0.4.0}/stdlib/http/cookies.pyi +0 -0
  610. {type_python-0.3.0 → type_python-0.4.0}/stdlib/http/server.pyi +0 -0
  611. {type_python-0.3.0 → type_python-0.4.0}/stdlib/imaplib.pyi +0 -0
  612. {type_python-0.3.0 → type_python-0.4.0}/stdlib/imghdr.pyi +0 -0
  613. {type_python-0.3.0 → type_python-0.4.0}/stdlib/imp.pyi +0 -0
  614. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/__init__.pyi +0 -0
  615. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/_abc.pyi +0 -0
  616. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/_bootstrap.pyi +0 -0
  617. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/_bootstrap_external.pyi +0 -0
  618. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/abc.pyi +0 -0
  619. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/machinery.pyi +0 -0
  620. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/metadata/__init__.pyi +0 -0
  621. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/metadata/_meta.pyi +0 -0
  622. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/metadata/diagnose.pyi +0 -0
  623. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/readers.pyi +0 -0
  624. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/resources/__init__.pyi +0 -0
  625. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/resources/_common.pyi +0 -0
  626. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/resources/_functional.pyi +0 -0
  627. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/resources/abc.pyi +0 -0
  628. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/resources/readers.pyi +0 -0
  629. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/resources/simple.pyi +0 -0
  630. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/simple.pyi +0 -0
  631. {type_python-0.3.0 → type_python-0.4.0}/stdlib/importlib/util.pyi +0 -0
  632. {type_python-0.3.0 → type_python-0.4.0}/stdlib/inspect.pyi +0 -0
  633. {type_python-0.3.0 → type_python-0.4.0}/stdlib/io.pyi +0 -0
  634. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ipaddress.pyi +0 -0
  635. {type_python-0.3.0 → type_python-0.4.0}/stdlib/itertools.pyi +0 -0
  636. {type_python-0.3.0 → type_python-0.4.0}/stdlib/json/__init__.pyi +0 -0
  637. {type_python-0.3.0 → type_python-0.4.0}/stdlib/json/decoder.pyi +0 -0
  638. {type_python-0.3.0 → type_python-0.4.0}/stdlib/json/encoder.pyi +0 -0
  639. {type_python-0.3.0 → type_python-0.4.0}/stdlib/json/scanner.pyi +0 -0
  640. {type_python-0.3.0 → type_python-0.4.0}/stdlib/json/tool.pyi +0 -0
  641. {type_python-0.3.0 → type_python-0.4.0}/stdlib/keyword.pyi +0 -0
  642. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/__init__.pyi +0 -0
  643. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/btm_matcher.pyi +0 -0
  644. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixer_base.pyi +0 -0
  645. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  646. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
  647. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
  648. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
  649. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
  650. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
  651. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
  652. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
  653. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
  654. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
  655. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
  656. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
  657. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
  658. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
  659. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
  660. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
  661. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
  662. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
  663. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
  664. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
  665. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
  666. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
  667. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
  668. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
  669. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
  670. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
  671. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
  672. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
  673. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
  674. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
  675. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
  676. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
  677. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
  678. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
  679. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
  680. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
  681. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
  682. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
  683. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
  684. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
  685. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
  686. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
  687. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
  688. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
  689. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
  690. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
  691. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
  692. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
  693. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
  694. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
  695. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
  696. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
  697. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
  698. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/main.pyi +0 -0
  699. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
  700. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/driver.pyi +0 -0
  701. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
  702. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/literals.pyi +0 -0
  703. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/parse.pyi +0 -0
  704. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
  705. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/token.pyi +0 -0
  706. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
  707. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pygram.pyi +0 -0
  708. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/pytree.pyi +0 -0
  709. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lib2to3/refactor.pyi +0 -0
  710. {type_python-0.3.0 → type_python-0.4.0}/stdlib/linecache.pyi +0 -0
  711. {type_python-0.3.0 → type_python-0.4.0}/stdlib/locale.pyi +0 -0
  712. {type_python-0.3.0 → type_python-0.4.0}/stdlib/logging/__init__.pyi +0 -0
  713. {type_python-0.3.0 → type_python-0.4.0}/stdlib/logging/config.pyi +0 -0
  714. {type_python-0.3.0 → type_python-0.4.0}/stdlib/logging/handlers.pyi +0 -0
  715. {type_python-0.3.0 → type_python-0.4.0}/stdlib/lzma.pyi +0 -0
  716. {type_python-0.3.0 → type_python-0.4.0}/stdlib/mailbox.pyi +0 -0
  717. {type_python-0.3.0 → type_python-0.4.0}/stdlib/mailcap.pyi +0 -0
  718. {type_python-0.3.0 → type_python-0.4.0}/stdlib/marshal.pyi +0 -0
  719. {type_python-0.3.0 → type_python-0.4.0}/stdlib/math.pyi +0 -0
  720. {type_python-0.3.0 → type_python-0.4.0}/stdlib/mimetypes.pyi +0 -0
  721. {type_python-0.3.0 → type_python-0.4.0}/stdlib/mmap.pyi +0 -0
  722. {type_python-0.3.0 → type_python-0.4.0}/stdlib/modulefinder.pyi +0 -0
  723. {type_python-0.3.0 → type_python-0.4.0}/stdlib/msilib/__init__.pyi +0 -0
  724. {type_python-0.3.0 → type_python-0.4.0}/stdlib/msilib/schema.pyi +0 -0
  725. {type_python-0.3.0 → type_python-0.4.0}/stdlib/msilib/sequence.pyi +0 -0
  726. {type_python-0.3.0 → type_python-0.4.0}/stdlib/msilib/text.pyi +0 -0
  727. {type_python-0.3.0 → type_python-0.4.0}/stdlib/msvcrt.pyi +0 -0
  728. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/__init__.pyi +0 -0
  729. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/connection.pyi +0 -0
  730. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/context.pyi +0 -0
  731. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
  732. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/dummy/connection.pyi +0 -0
  733. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/forkserver.pyi +0 -0
  734. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/heap.pyi +0 -0
  735. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/managers.pyi +0 -0
  736. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/pool.pyi +0 -0
  737. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/popen_fork.pyi +0 -0
  738. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
  739. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
  740. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
  741. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/process.pyi +0 -0
  742. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/queues.pyi +0 -0
  743. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/reduction.pyi +0 -0
  744. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/resource_sharer.pyi +0 -0
  745. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/resource_tracker.pyi +0 -0
  746. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/shared_memory.pyi +0 -0
  747. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/sharedctypes.pyi +0 -0
  748. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/spawn.pyi +0 -0
  749. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/synchronize.pyi +0 -0
  750. {type_python-0.3.0 → type_python-0.4.0}/stdlib/multiprocessing/util.pyi +0 -0
  751. {type_python-0.3.0 → type_python-0.4.0}/stdlib/netrc.pyi +0 -0
  752. {type_python-0.3.0 → type_python-0.4.0}/stdlib/nis.pyi +0 -0
  753. {type_python-0.3.0 → type_python-0.4.0}/stdlib/nntplib.pyi +0 -0
  754. {type_python-0.3.0 → type_python-0.4.0}/stdlib/nt.pyi +0 -0
  755. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ntpath.pyi +0 -0
  756. {type_python-0.3.0 → type_python-0.4.0}/stdlib/nturl2path.pyi +0 -0
  757. {type_python-0.3.0 → type_python-0.4.0}/stdlib/numbers.pyi +0 -0
  758. {type_python-0.3.0 → type_python-0.4.0}/stdlib/numpy/__init__.pyi +0 -0
  759. {type_python-0.3.0 → type_python-0.4.0}/stdlib/numpy/linalg/__init__.pyi +0 -0
  760. {type_python-0.3.0 → type_python-0.4.0}/stdlib/numpy/typing/__init__.pyi +0 -0
  761. {type_python-0.3.0 → type_python-0.4.0}/stdlib/opcode.pyi +0 -0
  762. {type_python-0.3.0 → type_python-0.4.0}/stdlib/operator.pyi +0 -0
  763. {type_python-0.3.0 → type_python-0.4.0}/stdlib/optparse.pyi +0 -0
  764. {type_python-0.3.0 → type_python-0.4.0}/stdlib/os/__init__.pyi +0 -0
  765. {type_python-0.3.0 → type_python-0.4.0}/stdlib/os/path.pyi +0 -0
  766. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ossaudiodev.pyi +0 -0
  767. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pandas/__init__.pyi +0 -0
  768. {type_python-0.3.0 → type_python-0.4.0}/stdlib/parser.pyi +0 -0
  769. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pathlib/__init__.pyi +0 -0
  770. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pathlib/types.pyi +0 -0
  771. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pdb.pyi +0 -0
  772. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pickle.pyi +0 -0
  773. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pickletools.pyi +0 -0
  774. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pipes.pyi +0 -0
  775. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pkgutil.pyi +0 -0
  776. {type_python-0.3.0 → type_python-0.4.0}/stdlib/platform.pyi +0 -0
  777. {type_python-0.3.0 → type_python-0.4.0}/stdlib/plistlib.pyi +0 -0
  778. {type_python-0.3.0 → type_python-0.4.0}/stdlib/poplib.pyi +0 -0
  779. {type_python-0.3.0 → type_python-0.4.0}/stdlib/posix.pyi +0 -0
  780. {type_python-0.3.0 → type_python-0.4.0}/stdlib/posixpath.pyi +0 -0
  781. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pprint.pyi +0 -0
  782. {type_python-0.3.0 → type_python-0.4.0}/stdlib/profile.pyi +0 -0
  783. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pstats.pyi +0 -0
  784. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pty.pyi +0 -0
  785. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pwd.pyi +0 -0
  786. {type_python-0.3.0 → type_python-0.4.0}/stdlib/py_compile.pyi +0 -0
  787. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pyclbr.pyi +0 -0
  788. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pydoc.pyi +0 -0
  789. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pydoc_data/__init__.pyi +0 -0
  790. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pydoc_data/topics.pyi +0 -0
  791. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pyexpat/__init__.pyi +0 -0
  792. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pyexpat/errors.pyi +0 -0
  793. {type_python-0.3.0 → type_python-0.4.0}/stdlib/pyexpat/model.pyi +0 -0
  794. {type_python-0.3.0 → type_python-0.4.0}/stdlib/queue.pyi +0 -0
  795. {type_python-0.3.0 → type_python-0.4.0}/stdlib/quopri.pyi +0 -0
  796. {type_python-0.3.0 → type_python-0.4.0}/stdlib/random.pyi +0 -0
  797. {type_python-0.3.0 → type_python-0.4.0}/stdlib/re.pyi +0 -0
  798. {type_python-0.3.0 → type_python-0.4.0}/stdlib/readline.pyi +0 -0
  799. {type_python-0.3.0 → type_python-0.4.0}/stdlib/reprlib.pyi +0 -0
  800. {type_python-0.3.0 → type_python-0.4.0}/stdlib/requests/__init__.pyi +0 -0
  801. {type_python-0.3.0 → type_python-0.4.0}/stdlib/requests/sessions.pyi +0 -0
  802. {type_python-0.3.0 → type_python-0.4.0}/stdlib/resource.pyi +0 -0
  803. {type_python-0.3.0 → type_python-0.4.0}/stdlib/rlcompleter.pyi +0 -0
  804. {type_python-0.3.0 → type_python-0.4.0}/stdlib/runpy.pyi +0 -0
  805. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sched.pyi +0 -0
  806. {type_python-0.3.0 → type_python-0.4.0}/stdlib/secrets.pyi +0 -0
  807. {type_python-0.3.0 → type_python-0.4.0}/stdlib/select.pyi +0 -0
  808. {type_python-0.3.0 → type_python-0.4.0}/stdlib/selectors.pyi +0 -0
  809. {type_python-0.3.0 → type_python-0.4.0}/stdlib/shelve.pyi +0 -0
  810. {type_python-0.3.0 → type_python-0.4.0}/stdlib/shlex.pyi +0 -0
  811. {type_python-0.3.0 → type_python-0.4.0}/stdlib/shutil.pyi +0 -0
  812. {type_python-0.3.0 → type_python-0.4.0}/stdlib/signal.pyi +0 -0
  813. {type_python-0.3.0 → type_python-0.4.0}/stdlib/site.pyi +0 -0
  814. {type_python-0.3.0 → type_python-0.4.0}/stdlib/smtpd.pyi +0 -0
  815. {type_python-0.3.0 → type_python-0.4.0}/stdlib/smtplib.pyi +0 -0
  816. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sndhdr.pyi +0 -0
  817. {type_python-0.3.0 → type_python-0.4.0}/stdlib/socket.pyi +0 -0
  818. {type_python-0.3.0 → type_python-0.4.0}/stdlib/socketserver.pyi +0 -0
  819. {type_python-0.3.0 → type_python-0.4.0}/stdlib/spwd.pyi +0 -0
  820. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sqlite3/__init__.pyi +0 -0
  821. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sqlite3/dbapi2.pyi +0 -0
  822. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sqlite3/dump.pyi +0 -0
  823. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sre_compile.pyi +0 -0
  824. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sre_constants.pyi +0 -0
  825. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sre_parse.pyi +0 -0
  826. {type_python-0.3.0 → type_python-0.4.0}/stdlib/ssl.pyi +0 -0
  827. {type_python-0.3.0 → type_python-0.4.0}/stdlib/stat.pyi +0 -0
  828. {type_python-0.3.0 → type_python-0.4.0}/stdlib/statistics.pyi +0 -0
  829. {type_python-0.3.0 → type_python-0.4.0}/stdlib/string/__init__.pyi +0 -0
  830. {type_python-0.3.0 → type_python-0.4.0}/stdlib/string/templatelib.pyi +0 -0
  831. {type_python-0.3.0 → type_python-0.4.0}/stdlib/stringprep.pyi +0 -0
  832. {type_python-0.3.0 → type_python-0.4.0}/stdlib/struct.pyi +0 -0
  833. {type_python-0.3.0 → type_python-0.4.0}/stdlib/subprocess.pyi +0 -0
  834. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sunau.pyi +0 -0
  835. {type_python-0.3.0 → type_python-0.4.0}/stdlib/symbol.pyi +0 -0
  836. {type_python-0.3.0 → type_python-0.4.0}/stdlib/symtable.pyi +0 -0
  837. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sys/__init__.pyi +0 -0
  838. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sys/_monitoring.pyi +0 -0
  839. {type_python-0.3.0 → type_python-0.4.0}/stdlib/sysconfig.pyi +0 -0
  840. {type_python-0.3.0 → type_python-0.4.0}/stdlib/syslog.pyi +0 -0
  841. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tabnanny.pyi +0 -0
  842. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tarfile.pyi +0 -0
  843. {type_python-0.3.0 → type_python-0.4.0}/stdlib/telnetlib.pyi +0 -0
  844. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tempfile.pyi +0 -0
  845. {type_python-0.3.0 → type_python-0.4.0}/stdlib/termios.pyi +0 -0
  846. {type_python-0.3.0 → type_python-0.4.0}/stdlib/textwrap.pyi +0 -0
  847. {type_python-0.3.0 → type_python-0.4.0}/stdlib/this.pyi +0 -0
  848. {type_python-0.3.0 → type_python-0.4.0}/stdlib/threading.pyi +0 -0
  849. {type_python-0.3.0 → type_python-0.4.0}/stdlib/time.pyi +0 -0
  850. {type_python-0.3.0 → type_python-0.4.0}/stdlib/timeit.pyi +0 -0
  851. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/__init__.pyi +0 -0
  852. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/colorchooser.pyi +0 -0
  853. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/commondialog.pyi +0 -0
  854. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/constants.pyi +0 -0
  855. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/dialog.pyi +0 -0
  856. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/dnd.pyi +0 -0
  857. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/filedialog.pyi +0 -0
  858. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/font.pyi +0 -0
  859. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/messagebox.pyi +0 -0
  860. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/scrolledtext.pyi +0 -0
  861. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/simpledialog.pyi +0 -0
  862. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/tix.pyi +0 -0
  863. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tkinter/ttk.pyi +0 -0
  864. {type_python-0.3.0 → type_python-0.4.0}/stdlib/token.pyi +0 -0
  865. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tokenize.pyi +0 -0
  866. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tomllib.pyi +0 -0
  867. {type_python-0.3.0 → type_python-0.4.0}/stdlib/torch/__init__.pyi +0 -0
  868. {type_python-0.3.0 → type_python-0.4.0}/stdlib/torch/nn/__init__.pyi +0 -0
  869. {type_python-0.3.0 → type_python-0.4.0}/stdlib/trace.pyi +0 -0
  870. {type_python-0.3.0 → type_python-0.4.0}/stdlib/traceback.pyi +0 -0
  871. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tracemalloc.pyi +0 -0
  872. {type_python-0.3.0 → type_python-0.4.0}/stdlib/tty.pyi +0 -0
  873. {type_python-0.3.0 → type_python-0.4.0}/stdlib/turtle.pyi +0 -0
  874. {type_python-0.3.0 → type_python-0.4.0}/stdlib/types.pyi +0 -0
  875. {type_python-0.3.0 → type_python-0.4.0}/stdlib/typing.pyi +0 -0
  876. {type_python-0.3.0 → type_python-0.4.0}/stdlib/typing_extensions.pyi +0 -0
  877. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unicodedata.pyi +0 -0
  878. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/__init__.pyi +0 -0
  879. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/_log.pyi +0 -0
  880. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/async_case.pyi +0 -0
  881. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/case.pyi +0 -0
  882. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/loader.pyi +0 -0
  883. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/main.pyi +0 -0
  884. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/mock.pyi +0 -0
  885. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/result.pyi +0 -0
  886. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/runner.pyi +0 -0
  887. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/signals.pyi +0 -0
  888. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/suite.pyi +0 -0
  889. {type_python-0.3.0 → type_python-0.4.0}/stdlib/unittest/util.pyi +0 -0
  890. {type_python-0.3.0 → type_python-0.4.0}/stdlib/urllib/__init__.pyi +0 -0
  891. {type_python-0.3.0 → type_python-0.4.0}/stdlib/urllib/error.pyi +0 -0
  892. {type_python-0.3.0 → type_python-0.4.0}/stdlib/urllib/parse.pyi +0 -0
  893. {type_python-0.3.0 → type_python-0.4.0}/stdlib/urllib/request.pyi +0 -0
  894. {type_python-0.3.0 → type_python-0.4.0}/stdlib/urllib/response.pyi +0 -0
  895. {type_python-0.3.0 → type_python-0.4.0}/stdlib/urllib/robotparser.pyi +0 -0
  896. {type_python-0.3.0 → type_python-0.4.0}/stdlib/uu.pyi +0 -0
  897. {type_python-0.3.0 → type_python-0.4.0}/stdlib/uuid.pyi +0 -0
  898. {type_python-0.3.0 → type_python-0.4.0}/stdlib/venv/__init__.pyi +0 -0
  899. {type_python-0.3.0 → type_python-0.4.0}/stdlib/warnings.pyi +0 -0
  900. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wave.pyi +0 -0
  901. {type_python-0.3.0 → type_python-0.4.0}/stdlib/weakref.pyi +0 -0
  902. {type_python-0.3.0 → type_python-0.4.0}/stdlib/webbrowser.pyi +0 -0
  903. {type_python-0.3.0 → type_python-0.4.0}/stdlib/winreg.pyi +0 -0
  904. {type_python-0.3.0 → type_python-0.4.0}/stdlib/winsound.pyi +0 -0
  905. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wsgiref/__init__.pyi +0 -0
  906. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wsgiref/handlers.pyi +0 -0
  907. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wsgiref/headers.pyi +0 -0
  908. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wsgiref/simple_server.pyi +0 -0
  909. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wsgiref/types.pyi +0 -0
  910. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wsgiref/util.pyi +0 -0
  911. {type_python-0.3.0 → type_python-0.4.0}/stdlib/wsgiref/validate.pyi +0 -0
  912. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xdrlib.pyi +0 -0
  913. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/__init__.pyi +0 -0
  914. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/NodeFilter.pyi +0 -0
  915. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/__init__.pyi +0 -0
  916. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/domreg.pyi +0 -0
  917. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/expatbuilder.pyi +0 -0
  918. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/minicompat.pyi +0 -0
  919. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/minidom.pyi +0 -0
  920. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/pulldom.pyi +0 -0
  921. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/dom/xmlbuilder.pyi +0 -0
  922. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/etree/ElementInclude.pyi +0 -0
  923. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/etree/ElementPath.pyi +0 -0
  924. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/etree/ElementTree.pyi +0 -0
  925. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/etree/__init__.pyi +0 -0
  926. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/etree/cElementTree.pyi +0 -0
  927. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/parsers/__init__.pyi +0 -0
  928. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/parsers/expat/__init__.pyi +0 -0
  929. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/parsers/expat/errors.pyi +0 -0
  930. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/parsers/expat/model.pyi +0 -0
  931. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/sax/__init__.pyi +0 -0
  932. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/sax/_exceptions.pyi +0 -0
  933. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/sax/expatreader.pyi +0 -0
  934. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/sax/handler.pyi +0 -0
  935. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/sax/saxutils.pyi +0 -0
  936. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xml/sax/xmlreader.pyi +0 -0
  937. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xmlrpc/__init__.pyi +0 -0
  938. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xmlrpc/client.pyi +0 -0
  939. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xmlrpc/server.pyi +0 -0
  940. {type_python-0.3.0 → type_python-0.4.0}/stdlib/xxlimited.pyi +0 -0
  941. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zipapp.pyi +0 -0
  942. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zipfile/__init__.pyi +0 -0
  943. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zipfile/_path/__init__.pyi +0 -0
  944. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zipfile/_path/glob.pyi +0 -0
  945. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zipimport.pyi +0 -0
  946. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zlib.pyi +0 -0
  947. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zoneinfo/__init__.pyi +0 -0
  948. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zoneinfo/_common.pyi +0 -0
  949. {type_python-0.3.0 → type_python-0.4.0}/stdlib/zoneinfo/_tzpath.pyi +0 -0
  950. {type_python-0.3.0 → type_python-0.4.0}/templates/src/app/__init__.tpy +0 -0
  951. {type_python-0.3.0 → type_python-0.4.0}/templates/typepython.toml +0 -0
  952. {type_python-0.3.0 → type_python-0.4.0}/type_python.egg-info/dependency_links.txt +0 -0
  953. {type_python-0.3.0 → type_python-0.4.0}/type_python.egg-info/entry_points.txt +0 -0
  954. {type_python-0.3.0 → type_python-0.4.0}/type_python.egg-info/top_level.txt +0 -0
  955. {type_python-0.3.0 → type_python-0.4.0}/typepython/__main__.py +0 -0
  956. {type_python-0.3.0 → type_python-0.4.0}/typepython/_runner.py +0 -0
@@ -1779,7 +1779,7 @@ dependencies = [
1779
1779
 
1780
1780
  [[package]]
1781
1781
  name = "typepython-binding"
1782
- version = "0.3.0"
1782
+ version = "0.4.0"
1783
1783
  dependencies = [
1784
1784
  "typepython-diagnostics",
1785
1785
  "typepython-syntax",
@@ -1787,7 +1787,7 @@ dependencies = [
1787
1787
 
1788
1788
  [[package]]
1789
1789
  name = "typepython-checking"
1790
- version = "0.3.0"
1790
+ version = "0.4.0"
1791
1791
  dependencies = [
1792
1792
  "criterion",
1793
1793
  "proptest",
@@ -1802,7 +1802,7 @@ dependencies = [
1802
1802
 
1803
1803
  [[package]]
1804
1804
  name = "typepython-cli"
1805
- version = "0.3.0"
1805
+ version = "0.4.0"
1806
1806
  dependencies = [
1807
1807
  "anyhow",
1808
1808
  "clap",
@@ -1835,7 +1835,7 @@ dependencies = [
1835
1835
 
1836
1836
  [[package]]
1837
1837
  name = "typepython-config"
1838
- version = "0.3.0"
1838
+ version = "0.4.0"
1839
1839
  dependencies = [
1840
1840
  "serde",
1841
1841
  "thiserror",
@@ -1845,7 +1845,7 @@ dependencies = [
1845
1845
 
1846
1846
  [[package]]
1847
1847
  name = "typepython-diagnostics"
1848
- version = "0.3.0"
1848
+ version = "0.4.0"
1849
1849
  dependencies = [
1850
1850
  "serde",
1851
1851
  "serde_json",
@@ -1853,7 +1853,7 @@ dependencies = [
1853
1853
 
1854
1854
  [[package]]
1855
1855
  name = "typepython-emit"
1856
- version = "0.3.0"
1856
+ version = "0.4.0"
1857
1857
  dependencies = [
1858
1858
  "insta",
1859
1859
  "littrs-ruff-python-ast",
@@ -1866,7 +1866,7 @@ dependencies = [
1866
1866
 
1867
1867
  [[package]]
1868
1868
  name = "typepython-graph"
1869
- version = "0.3.0"
1869
+ version = "0.4.0"
1870
1870
  dependencies = [
1871
1871
  "criterion",
1872
1872
  "typepython-binding",
@@ -1875,7 +1875,7 @@ dependencies = [
1875
1875
 
1876
1876
  [[package]]
1877
1877
  name = "typepython-incremental"
1878
- version = "0.3.0"
1878
+ version = "0.4.0"
1879
1879
  dependencies = [
1880
1880
  "serde",
1881
1881
  "serde_json",
@@ -1887,7 +1887,7 @@ dependencies = [
1887
1887
 
1888
1888
  [[package]]
1889
1889
  name = "typepython-lowering"
1890
- version = "0.3.0"
1890
+ version = "0.4.0"
1891
1891
  dependencies = [
1892
1892
  "criterion",
1893
1893
  "insta",
@@ -1902,7 +1902,7 @@ dependencies = [
1902
1902
 
1903
1903
  [[package]]
1904
1904
  name = "typepython-lsp"
1905
- version = "0.3.0"
1905
+ version = "0.4.0"
1906
1906
  dependencies = [
1907
1907
  "anyhow",
1908
1908
  "criterion",
@@ -1917,6 +1917,7 @@ dependencies = [
1917
1917
  "typepython-emit",
1918
1918
  "typepython-graph",
1919
1919
  "typepython-incremental",
1920
+ "typepython-lowering",
1920
1921
  "typepython-project",
1921
1922
  "typepython-syntax",
1922
1923
  "url",
@@ -1924,7 +1925,7 @@ dependencies = [
1924
1925
 
1925
1926
  [[package]]
1926
1927
  name = "typepython-project"
1927
- version = "0.3.0"
1928
+ version = "0.4.0"
1928
1929
  dependencies = [
1929
1930
  "anyhow",
1930
1931
  "glob",
@@ -1938,7 +1939,7 @@ dependencies = [
1938
1939
 
1939
1940
  [[package]]
1940
1941
  name = "typepython-syntax"
1941
- version = "0.3.0"
1942
+ version = "0.4.0"
1942
1943
  dependencies = [
1943
1944
  "criterion",
1944
1945
  "littrs-ruff-python-ast",
@@ -1952,7 +1953,7 @@ dependencies = [
1952
1953
 
1953
1954
  [[package]]
1954
1955
  name = "typepython-target"
1955
- version = "0.3.0"
1956
+ version = "0.4.0"
1956
1957
  dependencies = [
1957
1958
  "serde",
1958
1959
  ]
@@ -15,13 +15,14 @@ members = [
15
15
  "crates/typepython_target",
16
16
  ]
17
17
  resolver = "3"
18
+ exclude = ["fuzz"]
18
19
 
19
20
  [workspace.package]
20
21
  authors = ["unadlib"]
21
22
  edition = "2024"
22
23
  license = "MIT"
23
24
  rust-version = "1.94.0"
24
- version = "0.3.0"
25
+ version = "0.4.0"
25
26
 
26
27
  [workspace.dependencies]
27
28
  anyhow = "1"
@@ -0,0 +1,175 @@
1
+ Metadata-Version: 2.4
2
+ Name: type-python
3
+ Version: 0.4.0
4
+ Summary: A statically-typed authoring language that compiles to standard Python
5
+ Author: unadlib
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/type-python/type-python
8
+ Project-URL: Repository, https://github.com/type-python/type-python
9
+ Project-URL: Documentation, https://github.com/type-python/type-python/tree/main/docs
10
+ Project-URL: Issues, https://github.com/type-python/type-python/issues
11
+ Keywords: typepython,type-checking,compiler,python,static-typing
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Classifier: Programming Language :: Rust
22
+ Classifier: Topic :: Software Development :: Compilers
23
+ Classifier: Topic :: Software Development :: Quality Assurance
24
+ Classifier: Typing :: Typed
25
+ Requires-Python: >=3.9
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+ Dynamic: license-file
29
+
30
+ <p align="center">
31
+ <img src="https://raw.githubusercontent.com/type-python/type-python/main/logo.png" alt="TypePython" width="160" />
32
+ </p>
33
+
34
+ <h1 align="center">TypePython</h1>
35
+
36
+ <p align="center">
37
+ <strong>Write richer types in <code>.tpy</code>. Ship plain <code>.py</code> + <code>.pyi</code>.</strong>
38
+ </p>
39
+
40
+ ---
41
+
42
+ TypePython is a typed dialect of Python that compiles to standard `.py` + `.pyi`.
43
+ It brings TypeScript-class ergonomics — `sealed` classes, exhaustive `match`,
44
+ strict null checks, `unknown`, `interface`, `data class` — to a language whose
45
+ output runs anywhere CPython runs.
46
+
47
+ **No custom runtime. No per-checker plugin. No vendor lock-in.**
48
+
49
+ > Status: **Core v1 Beta** (v0.4.0). Core syntax, config, `init`/`check`/`build`/
50
+ > `clean`/`verify`, diagnostic code identity, and emitted `.py`/`.pyi` compatibility
51
+ > are the stable Beta surfaces. LSP UX, adapter manifests, runtime validators, and
52
+ > migration heuristics remain prototype/experimental.
53
+ > Bug reports and contributions are very welcome.
54
+
55
+ ## Install
56
+
57
+ ```bash
58
+ pip install type-python
59
+ typepython init --dir hello && cd hello
60
+ typepython check --project .
61
+ typepython build --project .
62
+ ```
63
+
64
+ You now have `.typepython/build/` with `.py` + `.pyi` + `py.typed` ready for
65
+ any Python interpreter, IDE, or downstream type checker.
66
+
67
+ - **Wheels** are prebuilt for Windows AMD64, macOS x86_64, macOS arm64, and Linux x86_64.
68
+ Other platforms fall back to source and need Rust + `cargo`.
69
+ - **Python**: the package bridge supports 3.9+; generated projects target Python 3.10 through 3.14.
70
+
71
+ ## See it in 15 lines
72
+
73
+ ```python
74
+ # src/app/expr.tpy
75
+
76
+ sealed class Expr:
77
+ pass
78
+
79
+ class Num(Expr): value: int
80
+ class Add(Expr): left: Expr; right: Expr
81
+ class Neg(Expr): operand: Expr
82
+
83
+ def evaluate(expr: Expr) -> int:
84
+ match expr:
85
+ case Num(value=v): return v
86
+ case Add(left=l, right=r): return evaluate(l) + evaluate(r)
87
+ case Neg(operand=o): return -evaluate(o)
88
+ # No default branch needed — the compiler proves the match is exhaustive.
89
+ # Add a fourth subclass and TypePython tells you exactly where to update.
90
+ ```
91
+
92
+ `typepython build` lowers that to ordinary Python and writes a matching `.pyi`
93
+ that any modern type checker can consume — no TypePython runtime required.
94
+
95
+ ## What you write vs. what ships
96
+
97
+ | You write (`.tpy`) | TypePython emits (`.py` / `.pyi`) |
98
+ | ------------------------------------- | --------------------------------------------------------- |
99
+ | `interface Drawable:` | `class Drawable(Protocol):` |
100
+ | `data class User:` | `@dataclass class User:` |
101
+ | `sealed class Expr:` | ordinary class + `tpy:sealed` marker |
102
+ | `overload def parse(...)` | `@overload def parse(...)` |
103
+ | `typealias Pair[T] = tuple[T, T]` | `T = TypeVar("T")` + `Pair: TypeAlias = tuple[T, T]` |
104
+ | `def first[T](xs: list[T]) -> T:` | inline generic on 3.13+, `TypeVar`-based on 3.10 – 3.12 |
105
+ | `unsafe: eval(expr)` | valid Python, marker erased — runtime behavior preserved |
106
+ | `unknown` (must narrow before use) | `object` in `.pyi` |
107
+ | `Partial[Config]` / `Pick[Config, …]` | expanded `TypedDict` shapes (PEP 655 / 705) |
108
+
109
+ ## Why not just mypy / pyright / PEP 695?
110
+
111
+ | Capability | mypy strict | pyright strict | PEP 695 `.py` | **TypePython `.tpy`** |
112
+ | ------------------------------------------------------- | :---------: | :------------: | :-----------: | :-------------------: |
113
+ | `sealed class` + compiler-proved exhaustiveness | — | — | — | ✅ |
114
+ | `unknown` — safe dynamic boundary, must narrow | — | — | — | ✅ |
115
+ | `unsafe:` audit fence for `eval` / `exec` / `setattr` | — | — | — | ✅ |
116
+ | First-class `interface` / `data class` / `typealias` | via | via | via | keyword |
117
+ | Inline generics `def f[T]` on **any** target ≥ 3.10 | 3.12+ | 3.12+ | 3.12+ | ✅ |
118
+ | `TypedDict` transforms (`Partial`, `Pick`, `Readonly`…) | — | — | — | ✅ |
119
+ | Output consumed by mypy / pyright / ty unmodified | N/A | N/A | ✅ | ✅ |
120
+
121
+ TypePython doesn't replace those checkers. It sits **one step earlier**: you
122
+ author in `.tpy`, the compiler emits standard typed Python that those tools
123
+ then consume normally.
124
+
125
+ ## What you also get
126
+
127
+ - **Rust-native, incremental compiler** — public-API fingerprints skip
128
+ downstream rechecks when only a body changes.
129
+ - **Full toolchain** — `init`, `check`, `build`, `watch`, `clean`, `verify`,
130
+ `compat`, `api-diff`, `type-health`, `migrate`, `lsp`.
131
+ - **LSP server** — hover, go to definition, references, rename, completions,
132
+ signature help, real-time diagnostics, and code-action quick fixes.
133
+ Bring your own LSP-capable editor (VS Code, Neovim, Helix, Sublime, Emacs).
134
+ - **Standard, portable output** — emitted `.py` + `.pyi` work with mypy,
135
+ pyright, and ty out of the box. PEP 561 `py.typed` is written automatically.
136
+ - **Mixed projects** — `.tpy`, `.py`, and `.pyi` live in the same source tree.
137
+ `.py` is pass-through; `.pyi` is stub-authoritative.
138
+
139
+ ## For library authors
140
+
141
+ Five commands aimed at people who *publish* typed Python:
142
+
143
+ ```bash
144
+ typepython build --project .
145
+ typepython verify --project . --checker-preset all
146
+ typepython compat --project . --profile library-portable
147
+ typepython api-diff dist/previous.whl .typepython/build
148
+ typepython type-health --project . --fail-under 85
149
+ ```
150
+
151
+ These catch missing/stale `py.typed`, wheel ↔ build-tree drift, multi-checker
152
+ portability gaps, public-API drift between releases, and runtime-annotation
153
+ hazards for frameworks that introspect annotations.
154
+
155
+ ## Documentation
156
+
157
+ - [Getting Started](https://github.com/type-python/type-python/blob/main/docs/getting-started.md)
158
+ - [Syntax Guide](https://github.com/type-python/type-python/blob/main/docs/syntax-guide.md)
159
+ - [Type System](https://github.com/type-python/type-python/blob/main/docs/type-system.md)
160
+ - [Configuration](https://github.com/type-python/type-python/blob/main/docs/configuration.md)
161
+ - [CLI Reference](https://github.com/type-python/type-python/blob/main/docs/cli-reference.md)
162
+ - [Diagnostics (TPYxxxx codes)](https://github.com/type-python/type-python/blob/main/docs/diagnostics.md)
163
+ - [LSP Integration](https://github.com/type-python/type-python/blob/main/docs/lsp.md)
164
+ - [Interoperability](https://github.com/type-python/type-python/blob/main/docs/interop.md)
165
+ - [Migration Guide](https://github.com/type-python/type-python/blob/main/docs/migration-guide.md)
166
+ - [Framework Adapters](https://github.com/type-python/type-python/blob/main/docs/framework-adapters.md)
167
+ - [Beta Readiness](https://github.com/type-python/type-python/blob/main/docs/beta-readiness.md)
168
+ - [Language Spec v1](https://github.com/type-python/type-python/blob/main/docs/spec/language-spec-v1.md)
169
+
170
+ ## Links
171
+
172
+ - [Repository](https://github.com/type-python/type-python)
173
+ - [Issues / bug reports](https://github.com/type-python/type-python/issues)
174
+ - [Contributing](https://github.com/type-python/type-python/blob/main/docs/contributing.md)
175
+ - [License (MIT)](https://github.com/type-python/type-python/blob/main/LICENSE)
@@ -0,0 +1,146 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/type-python/type-python/main/logo.png" alt="TypePython" width="160" />
3
+ </p>
4
+
5
+ <h1 align="center">TypePython</h1>
6
+
7
+ <p align="center">
8
+ <strong>Write richer types in <code>.tpy</code>. Ship plain <code>.py</code> + <code>.pyi</code>.</strong>
9
+ </p>
10
+
11
+ ---
12
+
13
+ TypePython is a typed dialect of Python that compiles to standard `.py` + `.pyi`.
14
+ It brings TypeScript-class ergonomics — `sealed` classes, exhaustive `match`,
15
+ strict null checks, `unknown`, `interface`, `data class` — to a language whose
16
+ output runs anywhere CPython runs.
17
+
18
+ **No custom runtime. No per-checker plugin. No vendor lock-in.**
19
+
20
+ > Status: **Core v1 Beta** (v0.4.0). Core syntax, config, `init`/`check`/`build`/
21
+ > `clean`/`verify`, diagnostic code identity, and emitted `.py`/`.pyi` compatibility
22
+ > are the stable Beta surfaces. LSP UX, adapter manifests, runtime validators, and
23
+ > migration heuristics remain prototype/experimental.
24
+ > Bug reports and contributions are very welcome.
25
+
26
+ ## Install
27
+
28
+ ```bash
29
+ pip install type-python
30
+ typepython init --dir hello && cd hello
31
+ typepython check --project .
32
+ typepython build --project .
33
+ ```
34
+
35
+ You now have `.typepython/build/` with `.py` + `.pyi` + `py.typed` ready for
36
+ any Python interpreter, IDE, or downstream type checker.
37
+
38
+ - **Wheels** are prebuilt for Windows AMD64, macOS x86_64, macOS arm64, and Linux x86_64.
39
+ Other platforms fall back to source and need Rust + `cargo`.
40
+ - **Python**: the package bridge supports 3.9+; generated projects target Python 3.10 through 3.14.
41
+
42
+ ## See it in 15 lines
43
+
44
+ ```python
45
+ # src/app/expr.tpy
46
+
47
+ sealed class Expr:
48
+ pass
49
+
50
+ class Num(Expr): value: int
51
+ class Add(Expr): left: Expr; right: Expr
52
+ class Neg(Expr): operand: Expr
53
+
54
+ def evaluate(expr: Expr) -> int:
55
+ match expr:
56
+ case Num(value=v): return v
57
+ case Add(left=l, right=r): return evaluate(l) + evaluate(r)
58
+ case Neg(operand=o): return -evaluate(o)
59
+ # No default branch needed — the compiler proves the match is exhaustive.
60
+ # Add a fourth subclass and TypePython tells you exactly where to update.
61
+ ```
62
+
63
+ `typepython build` lowers that to ordinary Python and writes a matching `.pyi`
64
+ that any modern type checker can consume — no TypePython runtime required.
65
+
66
+ ## What you write vs. what ships
67
+
68
+ | You write (`.tpy`) | TypePython emits (`.py` / `.pyi`) |
69
+ | ------------------------------------- | --------------------------------------------------------- |
70
+ | `interface Drawable:` | `class Drawable(Protocol):` |
71
+ | `data class User:` | `@dataclass class User:` |
72
+ | `sealed class Expr:` | ordinary class + `tpy:sealed` marker |
73
+ | `overload def parse(...)` | `@overload def parse(...)` |
74
+ | `typealias Pair[T] = tuple[T, T]` | `T = TypeVar("T")` + `Pair: TypeAlias = tuple[T, T]` |
75
+ | `def first[T](xs: list[T]) -> T:` | inline generic on 3.13+, `TypeVar`-based on 3.10 – 3.12 |
76
+ | `unsafe: eval(expr)` | valid Python, marker erased — runtime behavior preserved |
77
+ | `unknown` (must narrow before use) | `object` in `.pyi` |
78
+ | `Partial[Config]` / `Pick[Config, …]` | expanded `TypedDict` shapes (PEP 655 / 705) |
79
+
80
+ ## Why not just mypy / pyright / PEP 695?
81
+
82
+ | Capability | mypy strict | pyright strict | PEP 695 `.py` | **TypePython `.tpy`** |
83
+ | ------------------------------------------------------- | :---------: | :------------: | :-----------: | :-------------------: |
84
+ | `sealed class` + compiler-proved exhaustiveness | — | — | — | ✅ |
85
+ | `unknown` — safe dynamic boundary, must narrow | — | — | — | ✅ |
86
+ | `unsafe:` audit fence for `eval` / `exec` / `setattr` | — | — | — | ✅ |
87
+ | First-class `interface` / `data class` / `typealias` | via | via | via | keyword |
88
+ | Inline generics `def f[T]` on **any** target ≥ 3.10 | 3.12+ | 3.12+ | 3.12+ | ✅ |
89
+ | `TypedDict` transforms (`Partial`, `Pick`, `Readonly`…) | — | — | — | ✅ |
90
+ | Output consumed by mypy / pyright / ty unmodified | N/A | N/A | ✅ | ✅ |
91
+
92
+ TypePython doesn't replace those checkers. It sits **one step earlier**: you
93
+ author in `.tpy`, the compiler emits standard typed Python that those tools
94
+ then consume normally.
95
+
96
+ ## What you also get
97
+
98
+ - **Rust-native, incremental compiler** — public-API fingerprints skip
99
+ downstream rechecks when only a body changes.
100
+ - **Full toolchain** — `init`, `check`, `build`, `watch`, `clean`, `verify`,
101
+ `compat`, `api-diff`, `type-health`, `migrate`, `lsp`.
102
+ - **LSP server** — hover, go to definition, references, rename, completions,
103
+ signature help, real-time diagnostics, and code-action quick fixes.
104
+ Bring your own LSP-capable editor (VS Code, Neovim, Helix, Sublime, Emacs).
105
+ - **Standard, portable output** — emitted `.py` + `.pyi` work with mypy,
106
+ pyright, and ty out of the box. PEP 561 `py.typed` is written automatically.
107
+ - **Mixed projects** — `.tpy`, `.py`, and `.pyi` live in the same source tree.
108
+ `.py` is pass-through; `.pyi` is stub-authoritative.
109
+
110
+ ## For library authors
111
+
112
+ Five commands aimed at people who *publish* typed Python:
113
+
114
+ ```bash
115
+ typepython build --project .
116
+ typepython verify --project . --checker-preset all
117
+ typepython compat --project . --profile library-portable
118
+ typepython api-diff dist/previous.whl .typepython/build
119
+ typepython type-health --project . --fail-under 85
120
+ ```
121
+
122
+ These catch missing/stale `py.typed`, wheel ↔ build-tree drift, multi-checker
123
+ portability gaps, public-API drift between releases, and runtime-annotation
124
+ hazards for frameworks that introspect annotations.
125
+
126
+ ## Documentation
127
+
128
+ - [Getting Started](https://github.com/type-python/type-python/blob/main/docs/getting-started.md)
129
+ - [Syntax Guide](https://github.com/type-python/type-python/blob/main/docs/syntax-guide.md)
130
+ - [Type System](https://github.com/type-python/type-python/blob/main/docs/type-system.md)
131
+ - [Configuration](https://github.com/type-python/type-python/blob/main/docs/configuration.md)
132
+ - [CLI Reference](https://github.com/type-python/type-python/blob/main/docs/cli-reference.md)
133
+ - [Diagnostics (TPYxxxx codes)](https://github.com/type-python/type-python/blob/main/docs/diagnostics.md)
134
+ - [LSP Integration](https://github.com/type-python/type-python/blob/main/docs/lsp.md)
135
+ - [Interoperability](https://github.com/type-python/type-python/blob/main/docs/interop.md)
136
+ - [Migration Guide](https://github.com/type-python/type-python/blob/main/docs/migration-guide.md)
137
+ - [Framework Adapters](https://github.com/type-python/type-python/blob/main/docs/framework-adapters.md)
138
+ - [Beta Readiness](https://github.com/type-python/type-python/blob/main/docs/beta-readiness.md)
139
+ - [Language Spec v1](https://github.com/type-python/type-python/blob/main/docs/spec/language-spec-v1.md)
140
+
141
+ ## Links
142
+
143
+ - [Repository](https://github.com/type-python/type-python)
144
+ - [Issues / bug reports](https://github.com/type-python/type-python/issues)
145
+ - [Contributing](https://github.com/type-python/type-python/blob/main/docs/contributing.md)
146
+ - [License (MIT)](https://github.com/type-python/type-python/blob/main/LICENSE)