jaclang 0.6.2__py3-none-any.whl → 0.9.5__py3-none-any.whl
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.
- jaclang/__init__.py +23 -15
- jaclang/__main__.py +6 -0
- jaclang/cli/__init__.py +4 -0
- jaclang/cli/cli.jac +136 -0
- jaclang/cli/cmdreg.jac +70 -0
- jaclang/cli/impl/cli.impl.jac +1487 -0
- jaclang/cli/impl/cmdreg.impl.jac +307 -0
- jaclang/compiler/__init__.py +62 -96
- jaclang/compiler/passes/__init__.py +3 -2
- jaclang/compiler/passes/ecmascript/__init__.py +25 -0
- jaclang/compiler/passes/ecmascript/es_unparse.jac +170 -0
- jaclang/compiler/passes/ecmascript/esast_gen_pass.jac +303 -0
- jaclang/compiler/passes/ecmascript/estree.jac +805 -0
- jaclang/compiler/passes/ecmascript/impl/es_unparse.impl.jac +788 -0
- jaclang/compiler/passes/ecmascript/impl/esast_gen_pass.impl.jac +2615 -0
- jaclang/compiler/passes/ecmascript/impl/estree.impl.jac +32 -0
- jaclang/compiler/passes/main/__init__.py +79 -23
- jaclang/compiler/passes/main/cfg_build_pass.jac +45 -0
- jaclang/compiler/passes/main/impl/cfg_build_pass.impl.jac +342 -0
- jaclang/compiler/passes/main/impl/pyast_load_pass.impl.jac +3057 -0
- jaclang/compiler/passes/main/impl/pyjac_ast_link_pass.impl.jac +161 -0
- jaclang/compiler/passes/main/impl/sem_def_match_pass.impl.jac +55 -0
- jaclang/compiler/passes/main/impl/type_checker_pass.impl.jac +284 -0
- jaclang/compiler/passes/main/pyast_load_pass.jac +249 -0
- jaclang/compiler/passes/main/pyjac_ast_link_pass.jac +38 -0
- jaclang/compiler/passes/main/sem_def_match_pass.jac +28 -0
- jaclang/compiler/passes/main/type_checker_pass.jac +37 -0
- jaclang/compiler/passes/tool/__init__.py +1 -9
- jaclang/compiler/passes/tool/comment_injection_pass.jac +171 -0
- jaclang/compiler/passes/tool/doc_ir.jac +85 -0
- jaclang/compiler/passes/tool/doc_ir_gen_pass.jac +208 -0
- jaclang/compiler/passes/tool/impl/comment_injection_pass.impl.jac +1199 -0
- jaclang/compiler/passes/tool/impl/doc_ir.impl.jac +174 -0
- jaclang/compiler/passes/tool/impl/doc_ir_gen_pass.impl.jac +2475 -0
- jaclang/compiler/passes/tool/impl/jac_auto_lint_pass.impl.jac +1066 -0
- jaclang/compiler/passes/tool/impl/jac_formatter_pass.impl.jac +179 -0
- jaclang/compiler/passes/tool/jac_auto_lint_pass.jac +93 -0
- jaclang/compiler/passes/tool/jac_formatter_pass.jac +30 -0
- jaclang/compiler/ts.lark +349 -0
- jaclang/compiler/type_system/__init__.py +1 -0
- jaclang/compiler/type_system/impl/type_utils.impl.jac +243 -0
- jaclang/compiler/type_system/impl/types.impl.jac +299 -0
- jaclang/compiler/type_system/jac_builtins.pyi +7 -0
- jaclang/compiler/type_system/operations.jac +154 -0
- jaclang/compiler/type_system/type_evaluator.jac +277 -0
- jaclang/compiler/type_system/type_utils.jac +98 -0
- jaclang/compiler/type_system/types.jac +253 -0
- jaclang/langserve/__init__.jac +1 -0
- jaclang/langserve/engine.jac +194 -0
- jaclang/langserve/impl/engine.impl.jac +520 -0
- jaclang/langserve/impl/module_manager.impl.jac +30 -0
- jaclang/langserve/impl/sem_manager.impl.jac +619 -0
- jaclang/langserve/impl/server.impl.jac +133 -0
- jaclang/langserve/impl/utils.impl.jac +414 -0
- jaclang/langserve/module_manager.jac +12 -0
- jaclang/langserve/sem_manager.jac +103 -0
- jaclang/langserve/server.jac +89 -0
- jaclang/langserve/utils.jac +71 -0
- jaclang/lib.jac +14 -0
- jaclang/meta_importer.py +248 -0
- jaclang/project/__init__.jac +61 -0
- jaclang/project/config.jac +181 -0
- jaclang/project/dep_registry.jac +70 -0
- jaclang/project/dependencies.jac +52 -0
- jaclang/project/impl/config.impl.jac +624 -0
- jaclang/project/impl/dep_registry.impl.jac +110 -0
- jaclang/project/impl/dependencies.impl.jac +326 -0
- jaclang/project/impl/plugin_config.impl.jac +81 -0
- jaclang/project/plugin_config.jac +76 -0
- jaclang/pycore/__init__.py +22 -0
- jaclang/pycore/archetype.py +470 -0
- jaclang/pycore/bccache.py +218 -0
- jaclang/pycore/codeinfo.py +135 -0
- jaclang/pycore/constant.py +777 -0
- jaclang/pycore/constructs.py +37 -0
- jaclang/pycore/helpers.py +487 -0
- jaclang/pycore/jac.lark +792 -0
- jaclang/pycore/jac_parser.py +3826 -0
- jaclang/pycore/jaclib.py +103 -0
- jaclang/pycore/lark_jac_parser.py +3444 -0
- jaclang/pycore/lark_ts_parser.py +3444 -0
- jaclang/pycore/memory.py +220 -0
- jaclang/pycore/modresolver.py +297 -0
- jaclang/pycore/mtp.py +36 -0
- jaclang/pycore/passes/__init__.py +38 -0
- jaclang/pycore/passes/annex_pass.py +53 -0
- jaclang/pycore/passes/ast_gen/__init__.py +5 -0
- jaclang/pycore/passes/ast_gen/base_ast_gen_pass.py +55 -0
- jaclang/pycore/passes/ast_gen/jsx_processor.py +356 -0
- jaclang/pycore/passes/def_impl_match_pass.py +207 -0
- jaclang/pycore/passes/pyast_gen_pass.py +3522 -0
- jaclang/pycore/passes/pybc_gen_pass.py +49 -0
- jaclang/pycore/passes/semantic_analysis_pass.py +119 -0
- jaclang/pycore/passes/sym_tab_build_pass.py +395 -0
- jaclang/pycore/passes/sym_tab_link_pass.py +139 -0
- jaclang/pycore/passes/transform.py +170 -0
- jaclang/pycore/passes/uni_pass.py +138 -0
- jaclang/pycore/program.py +365 -0
- jaclang/pycore/runtime.py +2216 -0
- jaclang/pycore/treeprinter.py +504 -0
- jaclang/pycore/tsparser.py +1783 -0
- jaclang/pycore/unitree.py +5523 -0
- jaclang/runtimelib/__init__.jac +8 -0
- jaclang/runtimelib/builtin.jac +73 -0
- jaclang/runtimelib/client_bundle.jac +65 -0
- jaclang/runtimelib/client_runtime.cl.jac +145 -0
- jaclang/runtimelib/impl/builtin.impl.jac +138 -0
- jaclang/runtimelib/impl/client_bundle.impl.jac +284 -0
- jaclang/runtimelib/impl/client_runtime.impl.jac +807 -0
- jaclang/runtimelib/impl/server.impl.jac +1246 -0
- jaclang/runtimelib/impl/test.impl.jac +121 -0
- jaclang/runtimelib/impl/utils.impl.jac +244 -0
- jaclang/runtimelib/server.jac +200 -0
- jaclang/runtimelib/test.jac +61 -0
- jaclang/runtimelib/utils.jac +58 -0
- jaclang/utils/NonGPT.jac +48 -0
- jaclang/utils/__init__.py +13 -0
- jaclang/utils/impl/NonGPT.impl.jac +371 -0
- jaclang/utils/impl/lang_tools.impl.jac +315 -0
- jaclang/utils/lang_tools.jac +41 -0
- jaclang/utils/symtable_test_helpers.jac +124 -0
- jaclang/vendor/__init__.py +11 -1
- jaclang/vendor/attr/__init__.py +104 -0
- jaclang/vendor/attr/__init__.pyi +389 -0
- jaclang/vendor/attr/_cmp.py +160 -0
- jaclang/vendor/attr/_cmp.pyi +13 -0
- jaclang/vendor/attr/_compat.py +94 -0
- jaclang/vendor/attr/_config.py +31 -0
- jaclang/vendor/attr/_funcs.py +468 -0
- jaclang/vendor/attr/_make.py +3123 -0
- jaclang/vendor/attr/_next_gen.py +623 -0
- jaclang/vendor/attr/_typing_compat.pyi +15 -0
- jaclang/vendor/attr/_version_info.py +86 -0
- jaclang/vendor/attr/_version_info.pyi +9 -0
- jaclang/vendor/attr/converters.py +162 -0
- jaclang/vendor/attr/converters.pyi +19 -0
- jaclang/vendor/attr/exceptions.py +95 -0
- jaclang/vendor/attr/exceptions.pyi +17 -0
- jaclang/vendor/attr/filters.py +72 -0
- jaclang/vendor/attr/filters.pyi +6 -0
- jaclang/vendor/attr/setters.py +79 -0
- jaclang/vendor/attr/setters.pyi +20 -0
- jaclang/vendor/attr/validators.py +710 -0
- jaclang/vendor/attr/validators.pyi +86 -0
- jaclang/vendor/attrs/__init__.py +69 -0
- jaclang/vendor/attrs/__init__.pyi +263 -0
- jaclang/vendor/attrs/converters.py +3 -0
- jaclang/vendor/attrs/exceptions.py +3 -0
- jaclang/vendor/attrs/filters.py +3 -0
- jaclang/vendor/attrs/setters.py +3 -0
- jaclang/vendor/attrs/validators.py +3 -0
- jaclang/vendor/cattr/__init__.py +25 -0
- jaclang/vendor/cattr/converters.py +8 -0
- jaclang/vendor/cattr/disambiguators.py +3 -0
- jaclang/vendor/cattr/dispatch.py +3 -0
- jaclang/vendor/cattr/errors.py +15 -0
- jaclang/vendor/cattr/gen.py +21 -0
- jaclang/vendor/cattr/preconf/__init__.py +3 -0
- jaclang/vendor/cattr/preconf/bson.py +5 -0
- jaclang/vendor/cattr/preconf/json.py +5 -0
- jaclang/vendor/cattr/preconf/msgpack.py +5 -0
- jaclang/vendor/cattr/preconf/orjson.py +5 -0
- jaclang/vendor/cattr/preconf/pyyaml.py +5 -0
- jaclang/vendor/cattr/preconf/tomlkit.py +5 -0
- jaclang/vendor/cattr/preconf/ujson.py +5 -0
- jaclang/vendor/cattrs/__init__.py +55 -0
- jaclang/vendor/cattrs/_compat.py +579 -0
- jaclang/vendor/cattrs/_generics.py +24 -0
- jaclang/vendor/cattrs/cols.py +289 -0
- jaclang/vendor/cattrs/converters.py +1419 -0
- jaclang/vendor/cattrs/disambiguators.py +205 -0
- jaclang/vendor/cattrs/dispatch.py +194 -0
- jaclang/vendor/cattrs/errors.py +129 -0
- jaclang/vendor/cattrs/fns.py +22 -0
- jaclang/vendor/cattrs/gen/__init__.py +1053 -0
- jaclang/vendor/cattrs/gen/_consts.py +19 -0
- jaclang/vendor/cattrs/gen/_generics.py +79 -0
- jaclang/vendor/cattrs/gen/_lc.py +29 -0
- jaclang/vendor/cattrs/gen/_shared.py +58 -0
- jaclang/vendor/cattrs/gen/typeddicts.py +611 -0
- jaclang/vendor/cattrs/preconf/__init__.py +27 -0
- jaclang/vendor/cattrs/preconf/bson.py +106 -0
- jaclang/vendor/cattrs/preconf/cbor2.py +50 -0
- jaclang/vendor/cattrs/preconf/json.py +56 -0
- jaclang/vendor/cattrs/preconf/msgpack.py +54 -0
- jaclang/vendor/cattrs/preconf/msgspec.py +185 -0
- jaclang/vendor/cattrs/preconf/orjson.py +95 -0
- jaclang/vendor/cattrs/preconf/pyyaml.py +72 -0
- jaclang/vendor/cattrs/preconf/tomlkit.py +87 -0
- jaclang/vendor/cattrs/preconf/ujson.py +55 -0
- jaclang/vendor/cattrs/strategies/__init__.py +12 -0
- jaclang/vendor/cattrs/strategies/_class_methods.py +64 -0
- jaclang/vendor/cattrs/strategies/_subclasses.py +238 -0
- jaclang/vendor/cattrs/strategies/_unions.py +258 -0
- jaclang/vendor/cattrs/v.py +112 -0
- jaclang/vendor/interegular/__init__.py +34 -0
- jaclang/vendor/interegular/comparator.py +163 -0
- jaclang/vendor/interegular/fsm.py +1015 -0
- jaclang/vendor/interegular/patterns.py +732 -0
- jaclang/vendor/interegular/utils/__init__.py +15 -0
- jaclang/vendor/interegular/utils/simple_parser.py +165 -0
- jaclang/vendor/lark/__init__.py +1 -1
- jaclang/vendor/lark/__pyinstaller/__init__.py +0 -1
- jaclang/vendor/lark/__pyinstaller/hook-lark.py +3 -3
- jaclang/vendor/lark/ast_utils.py +6 -17
- jaclang/vendor/lark/common.py +11 -38
- jaclang/vendor/lark/exceptions.py +49 -109
- jaclang/vendor/lark/grammar.py +18 -46
- jaclang/vendor/lark/indenter.py +40 -15
- jaclang/vendor/lark/lark.py +147 -289
- jaclang/vendor/lark/lexer.py +99 -250
- jaclang/vendor/lark/load_grammar.py +412 -657
- jaclang/vendor/lark/parse_tree_builder.py +52 -127
- jaclang/vendor/lark/parser_frontends.py +57 -105
- jaclang/vendor/lark/parsers/cyk.py +40 -91
- jaclang/vendor/lark/parsers/earley.py +49 -117
- jaclang/vendor/lark/parsers/earley_common.py +12 -29
- jaclang/vendor/lark/parsers/earley_forest.py +68 -189
- jaclang/vendor/lark/parsers/grammar_analysis.py +34 -70
- jaclang/vendor/lark/parsers/lalr_analysis.py +49 -95
- jaclang/vendor/lark/parsers/lalr_interactive_parser.py +24 -37
- jaclang/vendor/lark/parsers/lalr_parser.py +11 -34
- jaclang/vendor/lark/parsers/lalr_parser_state.py +12 -43
- jaclang/vendor/lark/parsers/xearley.py +23 -67
- jaclang/vendor/lark/reconstruct.py +10 -34
- jaclang/vendor/lark/tools/__init__.py +19 -42
- jaclang/vendor/lark/tools/nearley.py +47 -85
- jaclang/vendor/lark/tools/serialize.py +7 -10
- jaclang/vendor/lark/tools/standalone.py +50 -79
- jaclang/vendor/lark/tree.py +39 -74
- jaclang/vendor/lark/tree_matcher.py +9 -17
- jaclang/vendor/lark/tree_templates.py +18 -26
- jaclang/vendor/lark/utils.py +42 -89
- jaclang/vendor/lark/visitors.py +39 -88
- jaclang/vendor/lsprotocol/__init__.py +2 -0
- jaclang/vendor/lsprotocol/_hooks.py +1237 -0
- jaclang/vendor/lsprotocol/converters.py +17 -0
- jaclang/vendor/lsprotocol/types.py +12898 -0
- jaclang/vendor/lsprotocol/validators.py +47 -0
- jaclang/vendor/pluggy/__init__.py +15 -11
- jaclang/vendor/pluggy/_callers.py +34 -5
- jaclang/vendor/pluggy/_hooks.py +35 -7
- jaclang/vendor/pluggy/_manager.py +26 -3
- jaclang/vendor/pluggy/_result.py +0 -15
- jaclang/vendor/pluggy/_version.py +21 -0
- jaclang/vendor/pluggy/_warnings.py +27 -0
- jaclang/vendor/pygls/__init__.py +25 -0
- jaclang/vendor/pygls/capabilities.py +460 -0
- jaclang/vendor/pygls/client.py +176 -0
- jaclang/vendor/pygls/constants.py +26 -0
- jaclang/vendor/pygls/exceptions.py +215 -0
- jaclang/vendor/pygls/feature_manager.py +244 -0
- jaclang/vendor/pygls/lsp/__init__.py +139 -0
- jaclang/vendor/pygls/lsp/client.py +1961 -0
- jaclang/vendor/pygls/progress.py +79 -0
- jaclang/vendor/pygls/protocol/__init__.py +78 -0
- jaclang/vendor/pygls/protocol/json_rpc.py +560 -0
- jaclang/vendor/pygls/protocol/language_server.py +569 -0
- jaclang/vendor/pygls/protocol/lsp_meta.py +51 -0
- jaclang/vendor/pygls/py.typed +2 -0
- jaclang/vendor/pygls/server.py +616 -0
- jaclang/vendor/pygls/uris.py +184 -0
- jaclang/vendor/pygls/workspace/__init__.py +97 -0
- jaclang/vendor/pygls/workspace/position_codec.py +206 -0
- jaclang/vendor/pygls/workspace/text_document.py +238 -0
- jaclang/vendor/pygls/workspace/workspace.py +323 -0
- jaclang/vendor/typeshed/lib/ts_utils/__init__.py +1 -0
- jaclang/vendor/typeshed/lib/ts_utils/metadata.py +430 -0
- jaclang/vendor/typeshed/lib/ts_utils/mypy.py +81 -0
- jaclang/vendor/typeshed/lib/ts_utils/paths.py +41 -0
- jaclang/vendor/typeshed/lib/ts_utils/requirements.py +29 -0
- jaclang/vendor/typeshed/lib/ts_utils/utils.py +257 -0
- jaclang/vendor/typeshed/scripts/create_baseline_stubs.py +251 -0
- jaclang/vendor/typeshed/scripts/install_all_third_party_dependencies.py +15 -0
- jaclang/vendor/typeshed/scripts/stubsabot.py +1053 -0
- jaclang/vendor/typeshed/scripts/sync_protobuf/_utils.py +54 -0
- jaclang/vendor/typeshed/scripts/sync_protobuf/google_protobuf.py +97 -0
- jaclang/vendor/typeshed/scripts/sync_protobuf/s2clientprotocol.py +76 -0
- jaclang/vendor/typeshed/scripts/sync_protobuf/tensorflow.py +141 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/asyncio/check_coroutines.py +25 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/asyncio/check_gather.py +38 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/asyncio/check_task.py +28 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/asyncio/check_task_factory.py +13 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_dict.py +213 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_exception_group-py311.py +354 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_iteration.py +16 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_list.py +21 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_memoryview.py +61 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_min.py +94 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_object.py +13 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_pow.py +103 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_reversed.py +34 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_round.py +68 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_slice.py +251 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_sum.py +55 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_tuple.py +13 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_type.py +4 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/builtins/check_zip.py +15 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_SupportsGetItem.py +38 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_ast.py +44 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_codecs.py +13 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_compression.py +58 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_concurrent_futures.py +78 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_configparser.py +5 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_contextlib.py +20 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_copy.py +39 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_dataclasses.py +153 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_enum.py +38 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_functools.py +98 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_importlib.py +51 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_importlib_metadata.py +28 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_importlib_resources.py +32 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_io.py +10 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_logging.py +30 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_math.py +63 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_os_path.py +58 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_pathlib.py +46 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_platform.py +15 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_re.py +26 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_sqlite3.py +26 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_tarfile.py +17 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_tempfile.py +31 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_threading.py +14 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_tkinter.py +75 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_turtle.py +35 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_types.py +86 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_unittest.py +255 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_xml.py +31 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/check_zipfile.py +131 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/collections/check_defaultdict.py +70 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/ctypes/check_CDLL.py +11 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/ctypes/check_pointer.py +8 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/email/check_message.py +10 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/email/check_mime.py +4 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/email/check_parser.py +16 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/itertools/check_itertools_recipes.py +412 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/multiprocessing/check_ctypes.py +19 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/multiprocessing/check_pipe_connections.py +31 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/typing/check_MutableMapping.py +53 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/typing/check_all.py +12 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/typing/check_regression_issue_9296.py +16 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/typing/check_typing_io.py +21 -0
- jaclang/vendor/typeshed/stdlib/@tests/test_cases/urllib/check_parse.py +12 -0
- jaclang/vendor/typeshed/stdlib/__future__.pyi +36 -0
- jaclang/vendor/typeshed/stdlib/__main__.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/_ast.pyi +145 -0
- jaclang/vendor/typeshed/stdlib/_asyncio.pyi +112 -0
- jaclang/vendor/typeshed/stdlib/_bisect.pyi +84 -0
- jaclang/vendor/typeshed/stdlib/_blake2.pyi +119 -0
- jaclang/vendor/typeshed/stdlib/_bz2.pyi +24 -0
- jaclang/vendor/typeshed/stdlib/_codecs.pyi +122 -0
- jaclang/vendor/typeshed/stdlib/_collections_abc.pyi +105 -0
- jaclang/vendor/typeshed/stdlib/_compat_pickle.pyi +10 -0
- jaclang/vendor/typeshed/stdlib/_compression.pyi +39 -0
- jaclang/vendor/typeshed/stdlib/_contextvars.pyi +64 -0
- jaclang/vendor/typeshed/stdlib/_csv.pyi +139 -0
- jaclang/vendor/typeshed/stdlib/_ctypes.pyi +341 -0
- jaclang/vendor/typeshed/stdlib/_curses.pyi +551 -0
- jaclang/vendor/typeshed/stdlib/_curses_panel.pyi +27 -0
- jaclang/vendor/typeshed/stdlib/_dbm.pyi +44 -0
- jaclang/vendor/typeshed/stdlib/_decimal.pyi +72 -0
- jaclang/vendor/typeshed/stdlib/_frozen_importlib.pyi +124 -0
- jaclang/vendor/typeshed/stdlib/_frozen_importlib_external.pyi +200 -0
- jaclang/vendor/typeshed/stdlib/_gdbm.pyi +48 -0
- jaclang/vendor/typeshed/stdlib/_hashlib.pyi +127 -0
- jaclang/vendor/typeshed/stdlib/_heapq.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/_imp.pyi +30 -0
- jaclang/vendor/typeshed/stdlib/_interpchannels.pyi +86 -0
- jaclang/vendor/typeshed/stdlib/_interpqueues.pyi +19 -0
- jaclang/vendor/typeshed/stdlib/_interpreters.pyi +61 -0
- jaclang/vendor/typeshed/stdlib/_io.pyi +301 -0
- jaclang/vendor/typeshed/stdlib/_json.pyi +51 -0
- jaclang/vendor/typeshed/stdlib/_locale.pyi +121 -0
- jaclang/vendor/typeshed/stdlib/_lsprof.pyi +37 -0
- jaclang/vendor/typeshed/stdlib/_lzma.pyi +71 -0
- jaclang/vendor/typeshed/stdlib/_markupbase.pyi +16 -0
- jaclang/vendor/typeshed/stdlib/_msi.pyi +97 -0
- jaclang/vendor/typeshed/stdlib/_multibytecodec.pyi +49 -0
- jaclang/vendor/typeshed/stdlib/_operator.pyi +122 -0
- jaclang/vendor/typeshed/stdlib/_osx_support.pyi +34 -0
- jaclang/vendor/typeshed/stdlib/_pickle.pyi +107 -0
- jaclang/vendor/typeshed/stdlib/_posixsubprocess.pyi +59 -0
- jaclang/vendor/typeshed/stdlib/_py_abc.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/_pydecimal.pyi +47 -0
- jaclang/vendor/typeshed/stdlib/_queue.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/_random.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/_sitebuiltins.pyi +17 -0
- jaclang/vendor/typeshed/stdlib/_socket.pyi +858 -0
- jaclang/vendor/typeshed/stdlib/_sqlite3.pyi +313 -0
- jaclang/vendor/typeshed/stdlib/_ssl.pyi +295 -0
- jaclang/vendor/typeshed/stdlib/_stat.pyi +119 -0
- jaclang/vendor/typeshed/stdlib/_struct.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/_thread.pyi +117 -0
- jaclang/vendor/typeshed/stdlib/_threading_local.pyi +24 -0
- jaclang/vendor/typeshed/stdlib/_tkinter.pyi +144 -0
- jaclang/vendor/typeshed/stdlib/_tracemalloc.pyi +13 -0
- jaclang/vendor/typeshed/stdlib/_typeshed/__init__.pyi +393 -0
- jaclang/vendor/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +89 -0
- jaclang/vendor/typeshed/stdlib/_typeshed/dbapi.pyi +37 -0
- jaclang/vendor/typeshed/stdlib/_typeshed/importlib.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/_typeshed/wsgi.pyi +44 -0
- jaclang/vendor/typeshed/stdlib/_typeshed/xml.pyi +9 -0
- jaclang/vendor/typeshed/stdlib/_warnings.pyi +55 -0
- jaclang/vendor/typeshed/stdlib/_weakref.pyi +15 -0
- jaclang/vendor/typeshed/stdlib/_weakrefset.pyi +48 -0
- jaclang/vendor/typeshed/stdlib/_winapi.pyi +286 -0
- jaclang/vendor/typeshed/stdlib/_zstd.pyi +97 -0
- jaclang/vendor/typeshed/stdlib/abc.pyi +51 -0
- jaclang/vendor/typeshed/stdlib/aifc.pyi +79 -0
- jaclang/vendor/typeshed/stdlib/annotationlib.pyi +146 -0
- jaclang/vendor/typeshed/stdlib/argparse.pyi +827 -0
- jaclang/vendor/typeshed/stdlib/array.pyi +106 -0
- jaclang/vendor/typeshed/stdlib/ast.pyi +2099 -0
- jaclang/vendor/typeshed/stdlib/asyncio/__init__.pyi +1005 -0
- jaclang/vendor/typeshed/stdlib/asyncio/base_events.pyi +488 -0
- jaclang/vendor/typeshed/stdlib/asyncio/base_futures.pyi +17 -0
- jaclang/vendor/typeshed/stdlib/asyncio/base_subprocess.pyi +63 -0
- jaclang/vendor/typeshed/stdlib/asyncio/base_tasks.pyi +9 -0
- jaclang/vendor/typeshed/stdlib/asyncio/constants.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/asyncio/coroutines.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/asyncio/events.pyi +675 -0
- jaclang/vendor/typeshed/stdlib/asyncio/exceptions.pyi +44 -0
- jaclang/vendor/typeshed/stdlib/asyncio/format_helpers.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/asyncio/futures.pyi +19 -0
- jaclang/vendor/typeshed/stdlib/asyncio/graph.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/asyncio/locks.pyi +104 -0
- jaclang/vendor/typeshed/stdlib/asyncio/proactor_events.pyi +65 -0
- jaclang/vendor/typeshed/stdlib/asyncio/protocols.pyi +41 -0
- jaclang/vendor/typeshed/stdlib/asyncio/queues.pyi +55 -0
- jaclang/vendor/typeshed/stdlib/asyncio/runners.pyi +33 -0
- jaclang/vendor/typeshed/stdlib/asyncio/selector_events.pyi +10 -0
- jaclang/vendor/typeshed/stdlib/asyncio/sslproto.pyi +165 -0
- jaclang/vendor/typeshed/stdlib/asyncio/staggered.pyi +10 -0
- jaclang/vendor/typeshed/stdlib/asyncio/streams.pyi +159 -0
- jaclang/vendor/typeshed/stdlib/asyncio/subprocess.pyi +230 -0
- jaclang/vendor/typeshed/stdlib/asyncio/taskgroups.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/asyncio/tasks.pyi +475 -0
- jaclang/vendor/typeshed/stdlib/asyncio/threads.pyi +10 -0
- jaclang/vendor/typeshed/stdlib/asyncio/timeouts.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/asyncio/tools.pyi +46 -0
- jaclang/vendor/typeshed/stdlib/asyncio/transports.pyi +57 -0
- jaclang/vendor/typeshed/stdlib/asyncio/trsock.pyi +129 -0
- jaclang/vendor/typeshed/stdlib/asyncio/unix_events.pyi +248 -0
- jaclang/vendor/typeshed/stdlib/asyncio/windows_events.pyi +121 -0
- jaclang/vendor/typeshed/stdlib/asyncio/windows_utils.pyi +49 -0
- jaclang/vendor/typeshed/stdlib/asyncore.pyi +90 -0
- jaclang/vendor/typeshed/stdlib/atexit.pyi +12 -0
- jaclang/vendor/typeshed/stdlib/audioop.pyi +43 -0
- jaclang/vendor/typeshed/stdlib/base64.pyi +61 -0
- jaclang/vendor/typeshed/stdlib/bdb.pyi +130 -0
- jaclang/vendor/typeshed/stdlib/binascii.pyi +40 -0
- jaclang/vendor/typeshed/stdlib/binhex.pyi +45 -0
- jaclang/vendor/typeshed/stdlib/builtins.pyi +2316 -0
- jaclang/vendor/typeshed/stdlib/bz2.pyi +119 -0
- jaclang/vendor/typeshed/stdlib/cProfile.pyi +31 -0
- jaclang/vendor/typeshed/stdlib/calendar.pyi +208 -0
- jaclang/vendor/typeshed/stdlib/cgi.pyi +119 -0
- jaclang/vendor/typeshed/stdlib/cgitb.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/chunk.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/cmath.pyi +36 -0
- jaclang/vendor/typeshed/stdlib/cmd.pyi +46 -0
- jaclang/vendor/typeshed/stdlib/code.pyi +54 -0
- jaclang/vendor/typeshed/stdlib/codecs.pyi +354 -0
- jaclang/vendor/typeshed/stdlib/codeop.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/collections/__init__.pyi +511 -0
- jaclang/vendor/typeshed/stdlib/colorsys.pyi +15 -0
- jaclang/vendor/typeshed/stdlib/compileall.pyi +88 -0
- jaclang/vendor/typeshed/stdlib/compression/_common/_streams.pyi +37 -0
- jaclang/vendor/typeshed/stdlib/compression/bz2.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/compression/gzip.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/compression/lzma.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/compression/zlib.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/compression/zstd/__init__.pyi +88 -0
- jaclang/vendor/typeshed/stdlib/compression/zstd/_zstdfile.pyi +117 -0
- jaclang/vendor/typeshed/stdlib/concurrent/futures/__init__.pyi +71 -0
- jaclang/vendor/typeshed/stdlib/concurrent/futures/_base.pyi +119 -0
- jaclang/vendor/typeshed/stdlib/concurrent/futures/interpreter.pyi +79 -0
- jaclang/vendor/typeshed/stdlib/concurrent/futures/process.pyi +242 -0
- jaclang/vendor/typeshed/stdlib/concurrent/futures/thread.pyi +140 -0
- jaclang/vendor/typeshed/stdlib/concurrent/interpreters/__init__.pyi +68 -0
- jaclang/vendor/typeshed/stdlib/concurrent/interpreters/_crossinterp.pyi +30 -0
- jaclang/vendor/typeshed/stdlib/concurrent/interpreters/_queues.pyi +74 -0
- jaclang/vendor/typeshed/stdlib/configparser.pyi +486 -0
- jaclang/vendor/typeshed/stdlib/contextlib.pyi +225 -0
- jaclang/vendor/typeshed/stdlib/contextvars.pyi +3 -0
- jaclang/vendor/typeshed/stdlib/copy.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/copyreg.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/crypt.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/csv.pyi +155 -0
- jaclang/vendor/typeshed/stdlib/ctypes/__init__.pyi +332 -0
- jaclang/vendor/typeshed/stdlib/ctypes/_endian.pyi +16 -0
- jaclang/vendor/typeshed/stdlib/ctypes/macholib/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stdlib/ctypes/macholib/dyld.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/ctypes/macholib/dylib.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/ctypes/macholib/framework.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/ctypes/util.pyi +11 -0
- jaclang/vendor/typeshed/stdlib/ctypes/wintypes.pyi +321 -0
- jaclang/vendor/typeshed/stdlib/curses/__init__.pyi +41 -0
- jaclang/vendor/typeshed/stdlib/curses/ascii.pyi +62 -0
- jaclang/vendor/typeshed/stdlib/curses/has_key.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/curses/panel.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/curses/textpad.pyi +11 -0
- jaclang/vendor/typeshed/stdlib/dataclasses.pyi +490 -0
- jaclang/vendor/typeshed/stdlib/datetime.pyi +346 -0
- jaclang/vendor/typeshed/stdlib/dbm/__init__.pyi +105 -0
- jaclang/vendor/typeshed/stdlib/dbm/dumb.pyi +37 -0
- jaclang/vendor/typeshed/stdlib/dbm/gnu.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/dbm/ndbm.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/dbm/sqlite3.pyi +29 -0
- jaclang/vendor/typeshed/stdlib/decimal.pyi +274 -0
- jaclang/vendor/typeshed/stdlib/difflib.pyi +139 -0
- jaclang/vendor/typeshed/stdlib/dis.pyi +295 -0
- jaclang/vendor/typeshed/stdlib/distutils/_msvccompiler.pyi +13 -0
- jaclang/vendor/typeshed/stdlib/distutils/archive_util.pyi +35 -0
- jaclang/vendor/typeshed/stdlib/distutils/ccompiler.pyi +176 -0
- jaclang/vendor/typeshed/stdlib/distutils/cmd.pyi +229 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/__init__.pyi +48 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/bdist.pyi +27 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/bdist_dumb.pyi +22 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/bdist_msi.pyi +45 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/bdist_rpm.pyi +53 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/bdist_wininst.pyi +16 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/build.pyi +34 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/build_clib.pyi +29 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/build_ext.pyi +52 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/build_py.pyi +45 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/build_scripts.pyi +25 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/check.pyi +40 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/clean.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/config.pyi +84 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/install.pyi +71 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/install_data.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/install_egg_info.pyi +19 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/install_headers.pyi +17 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/install_lib.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/install_scripts.pyi +19 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/register.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/sdist.pyi +45 -0
- jaclang/vendor/typeshed/stdlib/distutils/command/upload.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/distutils/core.pyi +58 -0
- jaclang/vendor/typeshed/stdlib/distutils/cygwinccompiler.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/distutils/debug.pyi +3 -0
- jaclang/vendor/typeshed/stdlib/distutils/dep_util.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/distutils/dir_util.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/distutils/dist.pyi +315 -0
- jaclang/vendor/typeshed/stdlib/distutils/fancy_getopt.pyi +44 -0
- jaclang/vendor/typeshed/stdlib/distutils/file_util.pyi +38 -0
- jaclang/vendor/typeshed/stdlib/distutils/filelist.pyi +58 -0
- jaclang/vendor/typeshed/stdlib/distutils/log.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/distutils/spawn.pyi +10 -0
- jaclang/vendor/typeshed/stdlib/distutils/sysconfig.pyi +33 -0
- jaclang/vendor/typeshed/stdlib/distutils/text_file.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/distutils/util.pyi +53 -0
- jaclang/vendor/typeshed/stdlib/doctest.pyi +262 -0
- jaclang/vendor/typeshed/stdlib/email/__init__.pyi +60 -0
- jaclang/vendor/typeshed/stdlib/email/_header_value_parser.pyi +398 -0
- jaclang/vendor/typeshed/stdlib/email/_policybase.pyi +80 -0
- jaclang/vendor/typeshed/stdlib/email/base64mime.pyi +13 -0
- jaclang/vendor/typeshed/stdlib/email/charset.pyi +42 -0
- jaclang/vendor/typeshed/stdlib/email/errors.pyi +42 -0
- jaclang/vendor/typeshed/stdlib/email/feedparser.pyi +22 -0
- jaclang/vendor/typeshed/stdlib/email/generator.pyi +77 -0
- jaclang/vendor/typeshed/stdlib/email/header.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/email/headerregistry.pyi +181 -0
- jaclang/vendor/typeshed/stdlib/email/iterators.pyi +12 -0
- jaclang/vendor/typeshed/stdlib/email/message.pyi +174 -0
- jaclang/vendor/typeshed/stdlib/email/mime/base.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/email/mime/message.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/email/mime/multipart.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/email/mime/text.pyi +9 -0
- jaclang/vendor/typeshed/stdlib/email/parser.pyi +39 -0
- jaclang/vendor/typeshed/stdlib/email/policy.pyi +75 -0
- jaclang/vendor/typeshed/stdlib/email/quoprimime.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/email/utils.pyi +78 -0
- jaclang/vendor/typeshed/stdlib/encodings/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stdlib/encodings/aliases.pyi +1 -0
- jaclang/vendor/typeshed/stdlib/encodings/ascii.pyi +30 -0
- jaclang/vendor/typeshed/stdlib/encodings/base64_codec.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/big5.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/big5hkscs.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/bz2_codec.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/charmap.pyi +33 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp037.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1006.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1026.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1125.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1140.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1250.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1251.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1252.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1253.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1254.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1255.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1256.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1257.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp1258.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp273.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp424.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp437.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp500.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp720.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp737.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp775.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp850.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp852.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp855.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp856.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp857.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp858.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp860.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp861.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp862.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp863.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp864.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp865.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp866.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp869.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp874.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp875.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp932.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp949.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/cp950.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/euc_jis_2004.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/euc_jisx0213.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/euc_jp.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/euc_kr.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/gb18030.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/gb2312.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/gbk.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/hex_codec.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/hp_roman8.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/hz.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/idna.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_1.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_2.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_3.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso2022_kr.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_1.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_10.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_11.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_13.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_14.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_15.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_16.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_2.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_3.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_4.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_5.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_6.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_7.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_8.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/iso8859_9.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/johab.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/koi8_r.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/koi8_t.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/koi8_u.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/kz1048.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/latin_1.pyi +30 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_arabic.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_croatian.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_cyrillic.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_farsi.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_greek.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_iceland.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_latin2.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_roman.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_romanian.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mac_turkish.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/mbcs.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/encodings/oem.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/encodings/palmos.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/ptcp154.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/punycode.pyi +33 -0
- jaclang/vendor/typeshed/stdlib/encodings/quopri_codec.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/raw_unicode_escape.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/rot_13.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/shift_jis.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/shift_jis_2004.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/shift_jisx0213.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/tis_620.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/encodings/undefined.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/encodings/unicode_escape.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_16.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_16_be.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_16_le.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_32.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_32_be.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_32_le.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_7.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_8.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/encodings/utf_8_sig.pyi +22 -0
- jaclang/vendor/typeshed/stdlib/encodings/uu_codec.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/encodings/zlib_codec.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/enum.pyi +371 -0
- jaclang/vendor/typeshed/stdlib/errno.pyi +227 -0
- jaclang/vendor/typeshed/stdlib/faulthandler.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/fcntl.pyi +158 -0
- jaclang/vendor/typeshed/stdlib/filecmp.pyi +65 -0
- jaclang/vendor/typeshed/stdlib/fileinput.pyi +210 -0
- jaclang/vendor/typeshed/stdlib/fnmatch.pyi +15 -0
- jaclang/vendor/typeshed/stdlib/formatter.pyi +88 -0
- jaclang/vendor/typeshed/stdlib/fractions.pyi +167 -0
- jaclang/vendor/typeshed/stdlib/ftplib.pyi +153 -0
- jaclang/vendor/typeshed/stdlib/functools.pyi +258 -0
- jaclang/vendor/typeshed/stdlib/gc.pyi +33 -0
- jaclang/vendor/typeshed/stdlib/genericpath.pyi +64 -0
- jaclang/vendor/typeshed/stdlib/getopt.pyi +27 -0
- jaclang/vendor/typeshed/stdlib/getpass.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/gettext.pyi +189 -0
- jaclang/vendor/typeshed/stdlib/glob.pyi +62 -0
- jaclang/vendor/typeshed/stdlib/graphlib.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/gzip.pyi +176 -0
- jaclang/vendor/typeshed/stdlib/hashlib.pyi +89 -0
- jaclang/vendor/typeshed/stdlib/heapq.pyi +17 -0
- jaclang/vendor/typeshed/stdlib/hmac.pyi +34 -0
- jaclang/vendor/typeshed/stdlib/html/entities.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/html/parser.pyi +40 -0
- jaclang/vendor/typeshed/stdlib/http/__init__.pyi +118 -0
- jaclang/vendor/typeshed/stdlib/http/client.pyi +266 -0
- jaclang/vendor/typeshed/stdlib/http/cookiejar.pyi +159 -0
- jaclang/vendor/typeshed/stdlib/http/cookies.pyi +56 -0
- jaclang/vendor/typeshed/stdlib/http/server.pyi +142 -0
- jaclang/vendor/typeshed/stdlib/imaplib.pyi +175 -0
- jaclang/vendor/typeshed/stdlib/imghdr.pyi +18 -0
- jaclang/vendor/typeshed/stdlib/imp.pyi +63 -0
- jaclang/vendor/typeshed/stdlib/importlib/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stdlib/importlib/_abc.pyi +20 -0
- jaclang/vendor/typeshed/stdlib/importlib/_bootstrap.pyi +2 -0
- jaclang/vendor/typeshed/stdlib/importlib/_bootstrap_external.pyi +2 -0
- jaclang/vendor/typeshed/stdlib/importlib/abc.pyi +187 -0
- jaclang/vendor/typeshed/stdlib/importlib/machinery.pyi +43 -0
- jaclang/vendor/typeshed/stdlib/importlib/metadata/__init__.pyi +320 -0
- jaclang/vendor/typeshed/stdlib/importlib/metadata/_meta.pyi +63 -0
- jaclang/vendor/typeshed/stdlib/importlib/metadata/diagnose.pyi +2 -0
- jaclang/vendor/typeshed/stdlib/importlib/readers.pyi +72 -0
- jaclang/vendor/typeshed/stdlib/importlib/resources/__init__.pyi +86 -0
- jaclang/vendor/typeshed/stdlib/importlib/resources/_common.pyi +42 -0
- jaclang/vendor/typeshed/stdlib/importlib/resources/_functional.pyi +31 -0
- jaclang/vendor/typeshed/stdlib/importlib/resources/abc.pyi +55 -0
- jaclang/vendor/typeshed/stdlib/importlib/resources/simple.pyi +56 -0
- jaclang/vendor/typeshed/stdlib/importlib/simple.pyi +11 -0
- jaclang/vendor/typeshed/stdlib/importlib/util.pyi +75 -0
- jaclang/vendor/typeshed/stdlib/inspect.pyi +727 -0
- jaclang/vendor/typeshed/stdlib/io.pyi +75 -0
- jaclang/vendor/typeshed/stdlib/ipaddress.pyi +247 -0
- jaclang/vendor/typeshed/stdlib/itertools.pyi +351 -0
- jaclang/vendor/typeshed/stdlib/json/__init__.pyi +61 -0
- jaclang/vendor/typeshed/stdlib/json/decoder.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/json/encoder.pyi +40 -0
- jaclang/vendor/typeshed/stdlib/json/scanner.pyi +7 -0
- jaclang/vendor/typeshed/stdlib/keyword.pyi +16 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/btm_matcher.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixer_base.pyi +42 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +10 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +15 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +10 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +17 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +16 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +12 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +15 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/main.pyi +42 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/driver.pyi +27 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/parse.pyi +30 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +51 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/token.pyi +69 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +96 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/pytree.pyi +118 -0
- jaclang/vendor/typeshed/stdlib/lib2to3/refactor.pyi +82 -0
- jaclang/vendor/typeshed/stdlib/linecache.pyi +19 -0
- jaclang/vendor/typeshed/stdlib/locale.pyi +166 -0
- jaclang/vendor/typeshed/stdlib/logging/__init__.pyi +662 -0
- jaclang/vendor/typeshed/stdlib/logging/config.pyi +150 -0
- jaclang/vendor/typeshed/stdlib/logging/handlers.pyi +258 -0
- jaclang/vendor/typeshed/stdlib/lzma.pyi +180 -0
- jaclang/vendor/typeshed/stdlib/mailbox.pyi +262 -0
- jaclang/vendor/typeshed/stdlib/mailcap.pyi +11 -0
- jaclang/vendor/typeshed/stdlib/marshal.pyi +49 -0
- jaclang/vendor/typeshed/stdlib/math.pyi +140 -0
- jaclang/vendor/typeshed/stdlib/mimetypes.pyi +56 -0
- jaclang/vendor/typeshed/stdlib/mmap.pyi +152 -0
- jaclang/vendor/typeshed/stdlib/modulefinder.pyi +68 -0
- jaclang/vendor/typeshed/stdlib/msilib/__init__.pyi +177 -0
- jaclang/vendor/typeshed/stdlib/msilib/schema.pyi +95 -0
- jaclang/vendor/typeshed/stdlib/msilib/sequence.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/msilib/text.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/msvcrt.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/__init__.pyi +90 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/connection.pyi +83 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/context.pyi +206 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +77 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/dummy/connection.pyi +39 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/forkserver.pyi +45 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/heap.pyi +37 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/managers.pyi +350 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/pool.pyi +101 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/popen_fork.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +30 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/queues.pyi +36 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/reduction.pyi +88 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/resource_tracker.pyi +21 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/shared_memory.pyi +41 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/sharedctypes.pyi +129 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/spawn.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/synchronize.pyi +60 -0
- jaclang/vendor/typeshed/stdlib/multiprocessing/util.pyi +108 -0
- jaclang/vendor/typeshed/stdlib/netrc.pyi +23 -0
- jaclang/vendor/typeshed/stdlib/nntplib.pyi +120 -0
- jaclang/vendor/typeshed/stdlib/nt.pyi +116 -0
- jaclang/vendor/typeshed/stdlib/ntpath.pyi +123 -0
- jaclang/vendor/typeshed/stdlib/nturl2path.pyi +12 -0
- jaclang/vendor/typeshed/stdlib/numbers.pyi +217 -0
- jaclang/vendor/typeshed/stdlib/opcode.pyi +47 -0
- jaclang/vendor/typeshed/stdlib/operator.pyi +217 -0
- jaclang/vendor/typeshed/stdlib/optparse.pyi +308 -0
- jaclang/vendor/typeshed/stdlib/os/__init__.pyi +1671 -0
- jaclang/vendor/typeshed/stdlib/ossaudiodev.pyi +132 -0
- jaclang/vendor/typeshed/stdlib/parser.pyi +25 -0
- jaclang/vendor/typeshed/stdlib/pathlib/__init__.pyi +355 -0
- jaclang/vendor/typeshed/stdlib/pathlib/types.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/pdb.pyi +259 -0
- jaclang/vendor/typeshed/stdlib/pickle.pyi +233 -0
- jaclang/vendor/typeshed/stdlib/pickletools.pyi +177 -0
- jaclang/vendor/typeshed/stdlib/pkgutil.pyi +59 -0
- jaclang/vendor/typeshed/stdlib/platform.pyi +112 -0
- jaclang/vendor/typeshed/stdlib/plistlib.pyi +84 -0
- jaclang/vendor/typeshed/stdlib/poplib.pyi +72 -0
- jaclang/vendor/typeshed/stdlib/posix.pyi +405 -0
- jaclang/vendor/typeshed/stdlib/posixpath.pyi +160 -0
- jaclang/vendor/typeshed/stdlib/pprint.pyi +159 -0
- jaclang/vendor/typeshed/stdlib/profile.pyi +31 -0
- jaclang/vendor/typeshed/stdlib/pstats.pyi +91 -0
- jaclang/vendor/typeshed/stdlib/pty.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/pwd.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/py_compile.pyi +34 -0
- jaclang/vendor/typeshed/stdlib/pyclbr.pyi +74 -0
- jaclang/vendor/typeshed/stdlib/pydoc.pyi +341 -0
- jaclang/vendor/typeshed/stdlib/pydoc_data/topics.pyi +3 -0
- jaclang/vendor/typeshed/stdlib/pyexpat/__init__.pyi +82 -0
- jaclang/vendor/typeshed/stdlib/pyexpat/errors.pyi +53 -0
- jaclang/vendor/typeshed/stdlib/pyexpat/model.pyi +13 -0
- jaclang/vendor/typeshed/stdlib/queue.pyi +55 -0
- jaclang/vendor/typeshed/stdlib/quopri.pyi +12 -0
- jaclang/vendor/typeshed/stdlib/random.pyi +133 -0
- jaclang/vendor/typeshed/stdlib/re.pyi +314 -0
- jaclang/vendor/typeshed/stdlib/readline.pyi +40 -0
- jaclang/vendor/typeshed/stdlib/resource.pyi +95 -0
- jaclang/vendor/typeshed/stdlib/runpy.pyi +24 -0
- jaclang/vendor/typeshed/stdlib/sched.pyi +46 -0
- jaclang/vendor/typeshed/stdlib/secrets.pyi +15 -0
- jaclang/vendor/typeshed/stdlib/select.pyi +167 -0
- jaclang/vendor/typeshed/stdlib/selectors.pyi +69 -0
- jaclang/vendor/typeshed/stdlib/shelve.pyi +59 -0
- jaclang/vendor/typeshed/stdlib/shlex.pyi +63 -0
- jaclang/vendor/typeshed/stdlib/shutil.pyi +236 -0
- jaclang/vendor/typeshed/stdlib/signal.pyi +187 -0
- jaclang/vendor/typeshed/stdlib/site.pyi +36 -0
- jaclang/vendor/typeshed/stdlib/smtpd.pyi +92 -0
- jaclang/vendor/typeshed/stdlib/smtplib.pyi +195 -0
- jaclang/vendor/typeshed/stdlib/socket.pyi +1433 -0
- jaclang/vendor/typeshed/stdlib/socketserver.pyi +170 -0
- jaclang/vendor/typeshed/stdlib/spwd.pyi +46 -0
- jaclang/vendor/typeshed/stdlib/sqlite3/__init__.pyi +478 -0
- jaclang/vendor/typeshed/stdlib/sqlite3/dbapi2.pyi +247 -0
- jaclang/vendor/typeshed/stdlib/sqlite3/dump.pyi +2 -0
- jaclang/vendor/typeshed/stdlib/sre_compile.pyi +11 -0
- jaclang/vendor/typeshed/stdlib/sre_constants.pyi +135 -0
- jaclang/vendor/typeshed/stdlib/sre_parse.pyi +104 -0
- jaclang/vendor/typeshed/stdlib/ssl.pyi +540 -0
- jaclang/vendor/typeshed/stdlib/stat.pyi +114 -0
- jaclang/vendor/typeshed/stdlib/statistics.pyi +159 -0
- jaclang/vendor/typeshed/stdlib/string/__init__.pyi +79 -0
- jaclang/vendor/typeshed/stdlib/string/templatelib.pyi +36 -0
- jaclang/vendor/typeshed/stdlib/stringprep.pyi +29 -0
- jaclang/vendor/typeshed/stdlib/struct.pyi +5 -0
- jaclang/vendor/typeshed/stdlib/subprocess.pyi +2092 -0
- jaclang/vendor/typeshed/stdlib/sunau.pyi +82 -0
- jaclang/vendor/typeshed/stdlib/symbol.pyi +95 -0
- jaclang/vendor/typeshed/stdlib/symtable.pyi +89 -0
- jaclang/vendor/typeshed/stdlib/sys/__init__.pyi +520 -0
- jaclang/vendor/typeshed/stdlib/sys/_monitoring.pyi +68 -0
- jaclang/vendor/typeshed/stdlib/sysconfig.pyi +50 -0
- jaclang/vendor/typeshed/stdlib/syslog.pyi +57 -0
- jaclang/vendor/typeshed/stdlib/tabnanny.pyi +16 -0
- jaclang/vendor/typeshed/stdlib/tarfile.pyi +839 -0
- jaclang/vendor/typeshed/stdlib/telnetlib.pyi +123 -0
- jaclang/vendor/typeshed/stdlib/tempfile.pyi +479 -0
- jaclang/vendor/typeshed/stdlib/termios.pyi +304 -0
- jaclang/vendor/typeshed/stdlib/textwrap.pyi +103 -0
- jaclang/vendor/typeshed/stdlib/threading.pyi +205 -0
- jaclang/vendor/typeshed/stdlib/time.pyi +112 -0
- jaclang/vendor/typeshed/stdlib/timeit.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/tkinter/__init__.pyi +4173 -0
- jaclang/vendor/typeshed/stdlib/tkinter/colorchooser.pyi +12 -0
- jaclang/vendor/typeshed/stdlib/tkinter/commondialog.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/tkinter/constants.pyi +80 -0
- jaclang/vendor/typeshed/stdlib/tkinter/dialog.pyi +13 -0
- jaclang/vendor/typeshed/stdlib/tkinter/dnd.pyi +19 -0
- jaclang/vendor/typeshed/stdlib/tkinter/filedialog.pyi +149 -0
- jaclang/vendor/typeshed/stdlib/tkinter/font.pyi +120 -0
- jaclang/vendor/typeshed/stdlib/tkinter/messagebox.pyi +98 -0
- jaclang/vendor/typeshed/stdlib/tkinter/scrolledtext.pyi +9 -0
- jaclang/vendor/typeshed/stdlib/tkinter/tix.pyi +299 -0
- jaclang/vendor/typeshed/stdlib/tkinter/ttk.pyi +1344 -0
- jaclang/vendor/typeshed/stdlib/token.pyi +169 -0
- jaclang/vendor/typeshed/stdlib/tokenize.pyi +203 -0
- jaclang/vendor/typeshed/stdlib/tomllib.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/trace.pyi +86 -0
- jaclang/vendor/typeshed/stdlib/traceback.pyi +331 -0
- jaclang/vendor/typeshed/stdlib/tracemalloc.pyi +122 -0
- jaclang/vendor/typeshed/stdlib/tty.pyi +30 -0
- jaclang/vendor/typeshed/stdlib/turtle.pyi +791 -0
- jaclang/vendor/typeshed/stdlib/types.pyi +745 -0
- jaclang/vendor/typeshed/stdlib/typing.pyi +1172 -0
- jaclang/vendor/typeshed/stdlib/typing_extensions.pyi +709 -0
- jaclang/vendor/typeshed/stdlib/unicodedata.pyi +73 -0
- jaclang/vendor/typeshed/stdlib/unittest/__init__.pyi +63 -0
- jaclang/vendor/typeshed/stdlib/unittest/_log.pyi +27 -0
- jaclang/vendor/typeshed/stdlib/unittest/async_case.pyi +25 -0
- jaclang/vendor/typeshed/stdlib/unittest/case.pyi +322 -0
- jaclang/vendor/typeshed/stdlib/unittest/loader.pyi +72 -0
- jaclang/vendor/typeshed/stdlib/unittest/main.pyi +77 -0
- jaclang/vendor/typeshed/stdlib/unittest/mock.pyi +576 -0
- jaclang/vendor/typeshed/stdlib/unittest/result.pyi +47 -0
- jaclang/vendor/typeshed/stdlib/unittest/runner.pyi +93 -0
- jaclang/vendor/typeshed/stdlib/unittest/suite.pyi +24 -0
- jaclang/vendor/typeshed/stdlib/unittest/util.pyi +40 -0
- jaclang/vendor/typeshed/stdlib/urllib/error.pyi +28 -0
- jaclang/vendor/typeshed/stdlib/urllib/parse.pyi +201 -0
- jaclang/vendor/typeshed/stdlib/urllib/request.pyi +417 -0
- jaclang/vendor/typeshed/stdlib/urllib/response.pyi +40 -0
- jaclang/vendor/typeshed/stdlib/uu.pyi +13 -0
- jaclang/vendor/typeshed/stdlib/uuid.pyi +106 -0
- jaclang/vendor/typeshed/stdlib/venv/__init__.pyi +86 -0
- jaclang/vendor/typeshed/stdlib/warnings.pyi +126 -0
- jaclang/vendor/typeshed/stdlib/wave.pyi +90 -0
- jaclang/vendor/typeshed/stdlib/weakref.pyi +198 -0
- jaclang/vendor/typeshed/stdlib/webbrowser.pyi +84 -0
- jaclang/vendor/typeshed/stdlib/winreg.pyi +132 -0
- jaclang/vendor/typeshed/stdlib/winsound.pyi +38 -0
- jaclang/vendor/typeshed/stdlib/wsgiref/handlers.pyi +91 -0
- jaclang/vendor/typeshed/stdlib/wsgiref/headers.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/wsgiref/simple_server.pyi +37 -0
- jaclang/vendor/typeshed/stdlib/wsgiref/types.pyi +32 -0
- jaclang/vendor/typeshed/stdlib/wsgiref/util.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/wsgiref/validate.pyi +50 -0
- jaclang/vendor/typeshed/stdlib/xdrlib.pyi +57 -0
- jaclang/vendor/typeshed/stdlib/xml/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/NodeFilter.pyi +22 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/__init__.pyi +101 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/domreg.pyi +8 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/expatbuilder.pyi +126 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/minicompat.pyi +24 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/minidom.pyi +678 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/pulldom.pyi +109 -0
- jaclang/vendor/typeshed/stdlib/xml/dom/xmlbuilder.pyi +81 -0
- jaclang/vendor/typeshed/stdlib/xml/etree/ElementInclude.pyi +27 -0
- jaclang/vendor/typeshed/stdlib/xml/etree/ElementPath.pyi +41 -0
- jaclang/vendor/typeshed/stdlib/xml/etree/ElementTree.pyi +366 -0
- jaclang/vendor/typeshed/stdlib/xml/parsers/expat/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stdlib/xml/sax/__init__.pyi +43 -0
- jaclang/vendor/typeshed/stdlib/xml/sax/_exceptions.pyi +19 -0
- jaclang/vendor/typeshed/stdlib/xml/sax/expatreader.pyi +78 -0
- jaclang/vendor/typeshed/stdlib/xml/sax/handler.pyi +86 -0
- jaclang/vendor/typeshed/stdlib/xml/sax/saxutils.pyi +68 -0
- jaclang/vendor/typeshed/stdlib/xml/sax/xmlreader.pyi +90 -0
- jaclang/vendor/typeshed/stdlib/xmlrpc/client.pyi +298 -0
- jaclang/vendor/typeshed/stdlib/xmlrpc/server.pyi +150 -0
- jaclang/vendor/typeshed/stdlib/xxlimited.pyi +24 -0
- jaclang/vendor/typeshed/stdlib/zipfile/__init__.pyi +415 -0
- jaclang/vendor/typeshed/stdlib/zipfile/_path/__init__.pyi +83 -0
- jaclang/vendor/typeshed/stdlib/zipfile/_path/glob.pyi +26 -0
- jaclang/vendor/typeshed/stdlib/zipimport.pyi +59 -0
- jaclang/vendor/typeshed/stdlib/zlib.pyi +74 -0
- jaclang/vendor/typeshed/stdlib/zoneinfo/__init__.pyi +35 -0
- jaclang/vendor/typeshed/stdlib/zoneinfo/_common.pyi +14 -0
- jaclang/vendor/typeshed/stdlib/zoneinfo/_tzpath.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/common/encoding.pyi +26 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/common/errors.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/common/security.pyi +6 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/common/urls.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/consts.pyi +8 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/deprecate.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/__init__.pyi +29 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +18 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/async_openid.pyi +6 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/errors.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/framework_integration.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/registry.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/sync_app.pyi +96 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/sync_openid.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/__init__.pyi +42 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/_jwe_algorithms.pyi +29 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptodome.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptography.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/errors.pyi +76 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/jwk.pyi +2 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7515/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7515/jws.pyi +15 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7515/models.pyi +25 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7516/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7516/jwe.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7516/models.pyi +58 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/_cryptography_key.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/asymmetric_key.pyi +38 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/base_key.pyi +29 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/jwk.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/key_set.pyi +10 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/__init__.pyi +20 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/ec_key.pyi +25 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jwe_algs.pyi +66 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jwe_encs.pyi +27 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jwe_zips.pyi +14 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jws_algs.pyi +63 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/oct_key.pyi +24 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/rsa_key.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/util.pyi +2 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7519/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7519/claims.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7519/jwt.pyi +55 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc8037/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc8037/jws_eddsa.pyi +10 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc8037/okp_key.pyi +28 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/util.pyi +7 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/__init__.pyi +33 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/client.pyi +41 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/errors.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/__init__.pyi +35 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/authorization_server.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/base_server.pyi +12 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/client_auth.pyi +41 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/errors.pyi +52 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/models.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/parameters.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/resource_protector.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/rsa.pyi +2 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/signature.pyi +20 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/util.pyi +2 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/wrapper.pyi +33 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/__init__.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/auth.pyi +25 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/base.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/client.pyi +61 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/__init__.pyi +83 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/authenticate_client.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/authorization_server.pyi +51 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/errors.pyi +102 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/__init__.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/authorization_code.pyi +27 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/base.pyi +55 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/client_credentials.pyi +10 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/implicit.pyi +15 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/refresh_token.pyi +18 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/resource_owner_password_credentials.pyi +11 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/hooks.pyi +8 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/models.pyi +24 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/parameters.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/requests.pyi +93 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/resource_protector.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/token_endpoint.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/util.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/wrappers.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/errors.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/parameters.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/token.pyi +41 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/validator.pyi +6 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7009/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7009/parameters.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7009/revocation.pyi +9 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7521/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7521/client.pyi +40 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/__init__.pyi +18 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/assertion.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/auth.pyi +16 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/client.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/jwt_bearer.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/token.pyi +15 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/validator.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/claims.pyi +25 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/endpoint.pyi +24 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/errors.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7592/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7592/endpoint.pyi +24 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7636/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7636/challenge.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/introspection.pyi +11 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/models.pyi +8 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/token_validator.pyi +7 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8414/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8414/models.pyi +40 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8414/well_known.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/__init__.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/device_code.pyi +17 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/endpoint.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/errors.pyi +10 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/models.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/claims.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/introspection.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/revocation.pyi +9 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/token.pyi +17 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/token_validator.pyi +12 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9101/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9101/authorization_server.pyi +15 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9101/discovery.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9101/errors.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9101/registration.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9207/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9207/parameter.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/__init__.pyi +31 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/claims.pyi +36 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/errors.pyi +28 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/code.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/hybrid.pyi +16 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/implicit.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/util.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/models.pyi +7 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/userinfo.pyi +18 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/util.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/discovery/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/discovery/models.pyi +36 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/discovery/well_known.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/registration/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/registration/claims.pyi +29 -0
- jaclang/vendor/typeshed/stubs/Deprecated/deprecated/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/Deprecated/deprecated/classic.pyi +36 -0
- jaclang/vendor/typeshed/stubs/Deprecated/deprecated/params.pyi +20 -0
- jaclang/vendor/typeshed/stubs/Deprecated/deprecated/sphinx.pyi +36 -0
- jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/core.pyi +71 -0
- jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/decorator.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/extension.pyi +42 -0
- jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/version.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Flask-Migrate/flask_migrate/__init__.pyi +137 -0
- jaclang/vendor/typeshed/stubs/Flask-SocketIO/flask_socketio/__init__.pyi +164 -0
- jaclang/vendor/typeshed/stubs/Flask-SocketIO/flask_socketio/namespace.pyi +68 -0
- jaclang/vendor/typeshed/stubs/Flask-SocketIO/flask_socketio/test_client.pyi +41 -0
- jaclang/vendor/typeshed/stubs/JACK-Client/jack/__init__.pyi +331 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/__main__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/__meta__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/blockparser.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/blockprocessors.pyi +67 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/core.pyi +69 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/__init__.pyi +14 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/abbr.pyi +39 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/admonition.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/attr_list.pyi +23 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/codehilite.pyi +42 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/def_list.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/extra.pyi +8 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/fenced_code.pyi +21 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/footnotes.pyi +73 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/legacy_attrs.pyi +15 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/legacy_em.pyi +11 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/md_in_html.pyi +41 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/meta.pyi +20 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/nl2br.pyi +7 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/sane_lists.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/smarty.pyi +44 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/tables.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/toc.pyi +70 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/wikilinks.pyi +17 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/htmlparser.pyi +30 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/inlinepatterns.pyi +112 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/postprocessors.pyi +27 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/preprocessors.pyi +11 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/serializers.pyi +9 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/test_tools.pyi +30 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/treeprocessors.pyi +27 -0
- jaclang/vendor/typeshed/stubs/Markdown/markdown/util.pyi +72 -0
- jaclang/vendor/typeshed/stubs/PyAutoGUI/pyautogui/__init__.pyi +253 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Angle.pyi +95 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Coordinates.pyi +192 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/CurveFitting.pyi +43 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Earth.pyi +64 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Epoch.pyi +129 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Interpolation.pyi +42 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Jupiter.pyi +38 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/JupiterMoons.pyi +78 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Mars.pyi +38 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Mercury.pyi +42 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Minor.pyi +10 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Moon.pyi +39 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Neptune.pyi +30 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Pluto.pyi +17 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Saturn.pyi +44 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Sun.pyi +35 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Uranus.pyi +34 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/Venus.pyi +44 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/PyMeeus/pymeeus/base.pyi +8 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/@tests/test_cases/check_connection.py +15 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/__init__.pyi +107 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/_auth.pyi +13 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/charset.pyi +22 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/connections.pyi +225 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/CLIENT.pyi +27 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/COMMAND.pyi +34 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/CR.pyi +77 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/ER.pyi +476 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/FIELD_TYPE.pyi +32 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/FLAG.pyi +17 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/SERVER_STATUS.pyi +12 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/converters.pyi +52 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/cursors.pyi +57 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/err.pyi +20 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/optionfile.pyi +40 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/protocol.pyi +60 -0
- jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/times.pyi +10 -0
- jaclang/vendor/typeshed/stubs/PyScreeze/pyscreeze/__init__.pyi +217 -0
- jaclang/vendor/typeshed/stubs/PySocks/socks.pyi +143 -0
- jaclang/vendor/typeshed/stubs/PySocks/sockshandler.pyi +97 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/__init__.pyi +439 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/_yaml.pyi +59 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/composer.pyi +20 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/constructor.pyi +105 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/cyaml.pyi +69 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/dumper.pyi +73 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/emitter.pyi +135 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/error.pyi +28 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/events.pyi +62 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/loader.pyi +29 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/nodes.pyi +32 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/parser.pyi +47 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/reader.pyi +41 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/representer.pyi +63 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/resolver.pyi +27 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/scanner.pyi +99 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/serializer.pyi +27 -0
- jaclang/vendor/typeshed/stubs/PyYAML/yaml/tokens.pyi +93 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/__init__.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/cmdline.pyi +8 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/console.pyi +10 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/filter.pyi +18 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/filters/__init__.pyi +58 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatter.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/__init__.pyi +25 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/_mapping.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/bbcode.pyi +12 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/html.pyi +41 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/img.pyi +68 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/irc.pyi +14 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/latex.pyi +34 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/other.pyi +26 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/pangomarkup.pyi +12 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/rtf.pyi +13 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/svg.pyi +22 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/terminal.pyi +15 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/terminal256.pyi +36 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexer.pyi +102 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/__init__.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/javascript.pyi +40 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/jsx.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/kusto.pyi +10 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/ldap.pyi +6 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/lean.pyi +7 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/lisp.pyi +96 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/prql.pyi +11 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/vip.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/vyper.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/modeline.pyi +1 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/plugin.pyi +27 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/regexopt.pyi +8 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/scanner.pyi +19 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/sphinxext.pyi +14 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/style.pyi +44 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/styles/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/token.pyi +34 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/unistring.pyi +38 -0
- jaclang/vendor/typeshed/stubs/Pygments/pygments/util.pyi +34 -0
- jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/__main__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/exceptions.pyi +5 -0
- jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/util.pyi +5 -0
- jaclang/vendor/typeshed/stubs/TgCrypto/tgcrypto/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/WTForms/@tests/test_cases/check_choices.py +67 -0
- jaclang/vendor/typeshed/stubs/WTForms/@tests/test_cases/check_filters.py +45 -0
- jaclang/vendor/typeshed/stubs/WTForms/@tests/test_cases/check_form.py +16 -0
- jaclang/vendor/typeshed/stubs/WTForms/@tests/test_cases/check_validators.py +33 -0
- jaclang/vendor/typeshed/stubs/WTForms/@tests/test_cases/check_widgets.py +26 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/__init__.pyi +85 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/csrf/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/csrf/core.pyi +41 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/csrf/session.pyi +20 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/__init__.pyi +77 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/choices.pyi +79 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/core.pyi +134 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/datetime.pyi +138 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/form.pyi +40 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/list.pyi +51 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/numeric.pyi +145 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/simple.pyi +81 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/form.pyi +88 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/i18n.pyi +31 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/meta.pyi +59 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/utils.pyi +18 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/validators.pyi +210 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/widgets/__init__.pyi +59 -0
- jaclang/vendor/typeshed/stubs/WTForms/wtforms/widgets/core.pyi +120 -0
- jaclang/vendor/typeshed/stubs/WebOb/@tests/test_cases/check_cachecontrol.py +102 -0
- jaclang/vendor/typeshed/stubs/WebOb/@tests/test_cases/check_wsgify.py +115 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/__init__.pyi +28 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/_types.pyi +21 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/acceptparse.pyi +715 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/byterange.pyi +30 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/cachecontrol.pyi +99 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/client.pyi +14 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/compat.pyi +24 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/cookies.pyi +191 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/datetime_utils.pyi +40 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/dec.pyi +197 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/descriptors.pyi +97 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/etag.pyi +46 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/exc.pyi +190 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/headers.pyi +35 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/multidict.pyi +179 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/request.pyi +247 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/response.pyi +179 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/static.pyi +40 -0
- jaclang/vendor/typeshed/stubs/WebOb/webob/util.pyi +11 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/base.pyi +31 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/os.pyi +167 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/ospath.pyi +47 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/tempfile/__init__.pyi +324 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/tempfile/temptypes.pyi +49 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/__init__.pyi +108 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/binary.pyi +57 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/text.pyi +43 -0
- jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/utils.pyi +10 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/BufferedTokenStream.pyi +39 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/CommonTokenFactory.pyi +23 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/CommonTokenStream.pyi +12 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/FileStream.pyi +7 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/InputStream.pyi +24 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/IntervalSet.pyi +20 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/LL1Analyzer.pyi +27 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Lexer.pyi +94 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/ListTokenSource.pyi +20 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Parser.pyi +99 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/ParserInterpreter.pyi +46 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/ParserRuleContext.pyi +49 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/PredictionContext.pyi +87 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Recognizer.pyi +37 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/RuleContext.pyi +31 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/StdinStream.pyi +4 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Token.pyi +50 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/TokenStreamRewriter.pyi +56 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Utils.pyi +2 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/__init__.pyi +32 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/_pygrun.pyi +4 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATN.pyi +41 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNConfig.pyi +46 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNConfigSet.pyi +55 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNDeserializationOptions.pyi +10 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNDeserializer.pyi +49 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNSimulator.pyi +18 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNState.pyi +107 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNType.pyi +7 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/LexerATNSimulator.pyi +89 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/LexerAction.pyi +89 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/LexerActionExecutor.pyi +16 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ParserATNSimulator.pyi +134 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/PredictionMode.pyi +41 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/SemanticContext.pyi +52 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/Transition.pyi +111 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/DFA.pyi +22 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/DFASerializer.pyi +18 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/DFAState.pyi +34 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/DiagnosticErrorListener.pyi +20 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/ErrorListener.pyi +19 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/ErrorStrategy.pyi +56 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/Errors.pyi +60 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/Chunk.pyi +14 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/ParseTreeMatch.pyi +17 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/ParseTreePattern.pyi +16 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/ParseTreePatternMatcher.pyi +45 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/RuleTagToken.pyi +18 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/TokenTagToken.pyi +10 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/Tree.pyi +56 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/Trees.pyi +31 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/XPath.pyi +67 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/XPathLexer.pyi +28 -0
- jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/assertpy.pyi +70 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/base.pyi +21 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/collection.pyi +11 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/contains.pyi +16 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/date.pyi +11 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/dict.pyi +12 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/dynamic.pyi +7 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/exception.pyi +9 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/extracting.pyi +13 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/file.pyi +15 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/helpers.pyi +3 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/numeric.pyi +24 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/snapshot.pyi +6 -0
- jaclang/vendor/typeshed/stubs/assertpy/assertpy/string.pyi +17 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/asyncify.pyi +6 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/async_token_verifier.pyi +24 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/back_channel_login.pyi +13 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/base.pyi +30 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/client_authentication.pyi +13 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/database.pyi +21 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/delegated.pyi +12 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/enterprise.pyi +5 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/get_token.pyi +29 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/passwordless.pyi +5 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/pushed_authorization_requests.pyi +4 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/revoke_token.pyi +4 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/social.pyi +4 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/token_verifier.pyi +27 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/users.pyi +11 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/exceptions.pyi +14 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/__init__.pyi +65 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/actions.pyi +64 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/async_auth0.pyi +76 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/attack_protection.pyi +30 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/auth0.pyi +67 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/blacklists.pyi +21 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/branding.pyi +38 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/client_credentials.pyi +26 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/client_grants.pyi +60 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/clients.pyi +44 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/connections.pyi +48 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/custom_domains.pyi +28 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/device_credentials.pyi +44 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/email_templates.pyi +24 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/emails.pyi +26 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/grants.pyi +34 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/guardian.pyi +38 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/hooks.pyi +52 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/jobs.pyi +42 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/log_streams.pyi +29 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/logs.pyi +44 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/organizations.pyi +134 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/prompts.pyi +28 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/resource_servers.pyi +28 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/roles.pyi +63 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/rules.pyi +46 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/rules_configs.pyi +24 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/self_service_profiles.pyi +26 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/stats.pyi +24 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/tenants.pyi +22 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/tickets.pyi +22 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/user_blocks.pyi +26 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/users.pyi +119 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/users_by_email.pyi +24 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/rest.pyi +48 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/rest_async.pyi +23 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/types.pyi +5 -0
- jaclang/vendor/typeshed/stubs/auth0-python/auth0/utils.pyi +1 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/async_context.pyi +23 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/async_recorder.pyi +43 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/context.pyi +27 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/daemon_config.pyi +15 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/emitters/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/emitters/udp_emitter.pyi +18 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/exceptions/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/exceptions/exceptions.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/lambda_launcher.pyi +19 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/default_dynamic_naming.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/dummy_entities.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/entity.pyi +50 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/facade_segment.pyi +9 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/http.pyi +13 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/noop_traceid.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/segment.pyi +59 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/subsegment.pyi +40 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/throwable.pyi +29 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/trace_header.pyi +36 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/traceid.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/patcher.pyi +12 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/ec2_plugin.pyi +17 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/ecs_plugin.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/elasticbeanstalk_plugin.pyi +9 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/utils.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/recorder.pyi +119 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/connector.pyi +15 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/reservoir.pyi +6 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/sampler.pyi +18 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/sampling_rule.pyi +38 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/reservoir.pyi +15 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/rule_cache.pyi +17 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/rule_poller.pyi +13 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/sampler.pyi +16 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/sampling_rule.pyi +43 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/target_poller.pyi +11 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/streaming/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/streaming/default_streaming.pyi +14 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/atomic_counter.pyi +7 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/compat.pyi +4 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/conversion.pyi +13 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/search_pattern.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/sqs_message_helper.pyi +9 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/stacktrace.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiobotocore/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiobotocore/patch.pyi +1 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/client.pyi +10 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/middleware.pyi +1 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/boto_utils.pyi +6 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/patch.pyi +1 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/bottle/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/bottle/middleware.pyi +9 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/dbapi2.pyi +14 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/apps.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/conf.pyi +17 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/db.pyi +12 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/middleware.pyi +19 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/templates.pyi +5 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask/middleware.pyi +6 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask_sqlalchemy/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask_sqlalchemy/query.pyi +22 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/httplib/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/httplib/patch.pyi +12 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/httpx/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/httpx/patch.pyi +9 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/mysql/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/mysql/patch.pyi +6 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pg8000/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pg8000/patch.pyi +2 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg/patch.pyi +1 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/patch.pyi +1 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymongo/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymongo/patch.pyi +8 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymysql/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymysql/patch.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pynamodb/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pynamodb/patch.pyi +6 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/requests/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/requests/patch.pyi +2 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/query.pyi +16 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/util/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/util/decorators.pyi +6 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy_core/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy_core/patch.pyi +2 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlite3/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlite3/patch.pyi +7 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/util.pyi +21 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/sdk_config.pyi +12 -0
- jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/version.pyi +3 -0
- jaclang/vendor/typeshed/stubs/binaryornot/binaryornot/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/binaryornot/binaryornot/check.pyi +3 -0
- jaclang/vendor/typeshed/stubs/binaryornot/binaryornot/helpers.pyi +5 -0
- jaclang/vendor/typeshed/stubs/bleach/bleach/__init__.pyi +33 -0
- jaclang/vendor/typeshed/stubs/bleach/bleach/callbacks.pyi +14 -0
- jaclang/vendor/typeshed/stubs/bleach/bleach/css_sanitizer.pyi +12 -0
- jaclang/vendor/typeshed/stubs/bleach/bleach/html5lib_shim.pyi +71 -0
- jaclang/vendor/typeshed/stubs/bleach/bleach/linkifier.pyi +61 -0
- jaclang/vendor/typeshed/stubs/bleach/bleach/parse_shim.pyi +1 -0
- jaclang/vendor/typeshed/stubs/bleach/bleach/sanitizer.pyi +92 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/cacheutils.pyi +145 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/debugutils.pyi +10 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/deprutils.pyi +8 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/dictutils.pyi +105 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/easterutils.pyi +3 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/ecoutils.pyi +26 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/excutils.pyi +11 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/fileutils.pyi +95 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/formatutils.pyi +46 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/funcutils.pyi +63 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/gcutils.pyi +16 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/ioutils.pyi +92 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/iterutils.pyi +73 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/jsonutils.pyi +27 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/listutils.pyi +32 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/mathutils.pyi +41 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/mboxutils.pyi +17 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/namedutils.pyi +6 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/pathutils.pyi +15 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/queueutils.pyi +16 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/setutils.pyi +103 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/socketutils.pyi +72 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/statsutils.pyi +73 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/strutils.pyi +101 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/tableutils.pyi +65 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/tbutils.pyi +107 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/timeutils.pyi +62 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/typeutils.pyi +17 -0
- jaclang/vendor/typeshed/stubs/boltons/boltons/urlutils.pyi +80 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/__init__.pyi +108 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/account_updater_daily_report.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/ach_mandate.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/add_on.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/add_on_gateway.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/address.pyi +31 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/address_gateway.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/amex_express_checkout_card.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/android_pay_card.pyi +21 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/apple_pay_card.pyi +19 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/apple_pay_gateway.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/apple_pay_options.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/attribute_getter.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/authorization_adjustment.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/bank_account_instant_verification_gateway.pyi +13 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/bank_account_instant_verification_jwt.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/bank_account_instant_verification_jwt_request.pyi +18 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/bin_data.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/blik_alias.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/braintree_gateway.pyi +67 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/client_token.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/client_token_gateway.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/configuration.pyi +69 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/connected_merchant_paypal_status_changed.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/connected_merchant_status_transitioned.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/credentials_parser.pyi +15 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card.pyi +96 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_gateway.pyi +23 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_verification.pyi +36 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_verification_gateway.pyi +14 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_verification_search.pyi +15 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/customer.pyi +66 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/customer_gateway.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/customer_search.pyi +27 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/customer_session_gateway.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/descriptor.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/disbursement.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/disbursement_detail.pyi +10 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/discount.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/discount_gateway.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/dispute.pyi +79 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/evidence.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/paypal_message.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/status_history.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_gateway.pyi +18 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_search.pyi +23 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/document_upload.pyi +16 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/document_upload_gateway.pyi +10 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/enriched_customer_data.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/environment.pyi +45 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/error_codes.pyi +742 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/error_result.pyi +20 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/errors.pyi +13 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/europe_bank_account.pyi +11 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/__init__.pyi +16 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/authentication_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/authorization_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/braintree_error.pyi +1 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/configuration_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/gateway_timeout_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/connection_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/invalid_response_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/timeout_error.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/invalid_challenge_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/invalid_signature_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/not_found_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/request_timeout_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/server_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/service_unavailable_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/test_operation_performed_in_production_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/too_many_requests_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/unexpected_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/upgrade_required_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_gateway.pyi +13 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_input.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_payload.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_request.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/facilitated_details.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/facilitator_details.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/granted_payment_instrument_update.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/enums/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/enums/recommendations.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/enums/recommended_payment_option.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/create_customer_session_input.pyi +27 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/customer_recommendations_input.pyi +27 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/customer_session_input.pyi +32 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/monetary_amount_input.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/paypal_payee_input.pyi +14 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/paypal_purchase_unit_input.pyi +16 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/phone_input.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/update_customer_session_input.pyi +24 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/customer_recommendations_payload.pyi +21 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/payment_options.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/payment_recommendation.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/unions/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/unions/customer_recommendations.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/iban_bank_account.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/ids_search.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/liability_shift.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_completed.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_expired.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_funded.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_reversed.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/masterpass_card.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/merchant.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account/address_details.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account/merchant_account.pyi +24 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account_gateway.pyi +13 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_gateway.pyi +10 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/meta_checkout_card.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/meta_checkout_token.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/modification.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/monetary_amount.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/oauth_access_revocation.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/oauth_credentials.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/oauth_gateway.pyi +13 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/package_details.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/paginated_collection.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/paginated_result.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/partner_merchant.pyi +11 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_facilitator.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_instrument_type.pyi +19 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method.pyi +66 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_customer_data_updated_metadata.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_gateway.pyi +45 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_nonce.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_nonce_gateway.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_parser.pyi +31 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_account.pyi +16 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_account_gateway.pyi +13 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_here.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_payment_resource.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_payment_resource_gateway.pyi +10 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/plan.pyi +20 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/plan_gateway.pyi +10 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/processor_response_types.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/receiver.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/resource.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/resource_collection.pyi +14 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/revoked_payment_method_metadata.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/risk_data.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/samsung_pay_card.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/search.pyi +59 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/sender.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/sepa_direct_debit_account.pyi +10 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/sepa_direct_debit_account_gateway.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/settlement_batch_summary.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/settlement_batch_summary_gateway.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/signature_service.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/status_event.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/sub_merchant.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/subscription.pyi +59 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_details.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_gateway.pyi +19 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_search.pyi +15 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_status_event.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/successful_result.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/test/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/test/authentication_ids.pyi +18 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/test/credit_card_defaults.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/test/credit_card_numbers.pyi +45 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/test/merchant_account.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/test/nonces.pyi +88 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/test/venmo_sdk.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/testing_gateway.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/three_d_secure_info.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction.pyi +193 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_amounts.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_details.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_gateway.pyi +23 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_line_item.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_line_item_gateway.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_review.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_search.pyi +72 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_us_bank_account_request.pyi +17 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/transfer.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/unknown_payment_method.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account.pyi +16 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_gateway.pyi +9 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_verification.pyi +36 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_verification_gateway.pyi +14 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_verification_search.pyi +15 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/constants.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/crypto.pyi +23 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/datetime_parser.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/experimental.pyi +5 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/generator.pyi +27 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/graphql_client.pyi +38 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/http.pyi +28 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/parser.pyi +10 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/util/xml_util.pyi +7 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/validation_error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/validation_error_collection.pyi +21 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/venmo_account.pyi +6 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/venmo_profile_data.pyi +4 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/version.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/visa_checkout_card.pyi +14 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_notification.pyi +94 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_notification_gateway.pyi +12 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_testing.pyi +3 -0
- jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_testing_gateway.pyi +7 -0
- jaclang/vendor/typeshed/stubs/cachetools/@tests/test_cases/check_cachetools.py +104 -0
- jaclang/vendor/typeshed/stubs/cachetools/cachetools/__init__.pyi +154 -0
- jaclang/vendor/typeshed/stubs/cachetools/cachetools/func.pyi +51 -0
- jaclang/vendor/typeshed/stubs/cachetools/cachetools/keys.pyi +9 -0
- jaclang/vendor/typeshed/stubs/capturer/capturer.pyi +122 -0
- jaclang/vendor/typeshed/stubs/cffi/_cffi_backend.pyi +273 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/api.pyi +103 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/backend_ctypes.pyi +85 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/cffi_opcode.pyi +92 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/commontypes.pyi +6 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/cparser.pyi +12 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/error.pyi +14 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/ffiplatform.pyi +12 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/lock.pyi +1 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/model.pyi +164 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/pkgconfig.pyi +5 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/recompiler.pyi +97 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/setuptools_ext.pyi +6 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/vengine_cpy.pyi +13 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/vengine_gen.pyi +14 -0
- jaclang/vendor/typeshed/stubs/cffi/cffi/verifier.pyi +43 -0
- jaclang/vendor/typeshed/stubs/channels/@tests/django_settings.py +12 -0
- jaclang/vendor/typeshed/stubs/channels/channels/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/channels/channels/apps.pyi +7 -0
- jaclang/vendor/typeshed/stubs/channels/channels/auth.pyi +26 -0
- jaclang/vendor/typeshed/stubs/channels/channels/consumer.pyi +75 -0
- jaclang/vendor/typeshed/stubs/channels/channels/db.pyi +32 -0
- jaclang/vendor/typeshed/stubs/channels/channels/exceptions.pyi +8 -0
- jaclang/vendor/typeshed/stubs/channels/channels/generic/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/channels/channels/generic/http.pyi +19 -0
- jaclang/vendor/typeshed/stubs/channels/channels/generic/websocket.pyi +61 -0
- jaclang/vendor/typeshed/stubs/channels/channels/layers.pyi +91 -0
- jaclang/vendor/typeshed/stubs/channels/channels/management/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/channels/channels/management/commands/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/channels/channels/management/commands/runworker.pyi +25 -0
- jaclang/vendor/typeshed/stubs/channels/channels/middleware.pyi +12 -0
- jaclang/vendor/typeshed/stubs/channels/channels/routing.pyi +31 -0
- jaclang/vendor/typeshed/stubs/channels/channels/security/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/channels/channels/security/websocket.pyi +25 -0
- jaclang/vendor/typeshed/stubs/channels/channels/sessions.pyi +56 -0
- jaclang/vendor/typeshed/stubs/channels/channels/testing/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/channels/channels/testing/application.pyi +21 -0
- jaclang/vendor/typeshed/stubs/channels/channels/testing/http.pyi +41 -0
- jaclang/vendor/typeshed/stubs/channels/channels/testing/live.pyi +26 -0
- jaclang/vendor/typeshed/stubs/channels/channels/testing/websocket.pyi +54 -0
- jaclang/vendor/typeshed/stubs/channels/channels/utils.pyi +20 -0
- jaclang/vendor/typeshed/stubs/channels/channels/worker.pyi +13 -0
- jaclang/vendor/typeshed/stubs/chevron/chevron/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/chevron/chevron/main.pyi +5 -0
- jaclang/vendor/typeshed/stubs/chevron/chevron/metadata.pyi +1 -0
- jaclang/vendor/typeshed/stubs/chevron/chevron/renderer.pyi +22 -0
- jaclang/vendor/typeshed/stubs/chevron/chevron/tokenizer.pyi +11 -0
- jaclang/vendor/typeshed/stubs/click-default-group/click_default_group.pyi +83 -0
- jaclang/vendor/typeshed/stubs/click-log/click_log/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/click-log/click_log/core.pyi +15 -0
- jaclang/vendor/typeshed/stubs/click-log/click_log/options.pyi +11 -0
- jaclang/vendor/typeshed/stubs/click-shell/click_shell/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/click-shell/click_shell/_cmd.pyi +28 -0
- jaclang/vendor/typeshed/stubs/click-shell/click_shell/_compat.pyi +10 -0
- jaclang/vendor/typeshed/stubs/click-shell/click_shell/core.pyi +35 -0
- jaclang/vendor/typeshed/stubs/click-shell/click_shell/decorators.pyi +8 -0
- jaclang/vendor/typeshed/stubs/click-spinner/click_spinner/__init__.pyi +32 -0
- jaclang/vendor/typeshed/stubs/click-spinner/click_spinner/_version.pyi +12 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/__init__.pyi +16 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/exceptions.pyi +2 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/resources/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/resources/cmd_exec.pyi +93 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/resources/cmd_form.pyi +13 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/resources/index.pyi +9 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/resources/input_fields.pyi +85 -0
- jaclang/vendor/typeshed/stubs/click-web/click_web/web_click_types.pyi +20 -0
- jaclang/vendor/typeshed/stubs/colorama/colorama/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/colorama/colorama/ansi.pyi +69 -0
- jaclang/vendor/typeshed/stubs/colorama/colorama/ansitowin32.pyi +54 -0
- jaclang/vendor/typeshed/stubs/colorama/colorama/initialise.pyi +23 -0
- jaclang/vendor/typeshed/stubs/colorama/colorama/win32.pyi +35 -0
- jaclang/vendor/typeshed/stubs/colorama/colorama/winterm.pyi +38 -0
- jaclang/vendor/typeshed/stubs/colorful/colorful/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/colorful/colorful/ansi.pyi +14 -0
- jaclang/vendor/typeshed/stubs/colorful/colorful/colors.pyi +6 -0
- jaclang/vendor/typeshed/stubs/colorful/colorful/core.pyi +102 -0
- jaclang/vendor/typeshed/stubs/colorful/colorful/styles.pyi +4 -0
- jaclang/vendor/typeshed/stubs/colorful/colorful/terminal.pyi +16 -0
- jaclang/vendor/typeshed/stubs/colorful/colorful/utils.pyi +2 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/console_menu.pyi +97 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/__init__.pyi +29 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_borders.pyi +194 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_margins.pyi +18 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_padding.pyi +18 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_style.pyi +29 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/command_item.pyi +18 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/external_item.pyi +5 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/function_item.pyi +25 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/selection_item.pyi +11 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/submenu_item.pyi +22 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/menu_component.pyi +99 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/menu_formatter.pyi +55 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/multiselect_menu.pyi +22 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/prompt_utils.pyi +47 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/screen.pyi +17 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/selection_menu.pyi +31 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/base.pyi +11 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/regex.pyi +7 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/url.pyi +5 -0
- jaclang/vendor/typeshed/stubs/console-menu/consolemenu/version.pyi +0 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/__init__.pyi +48 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/armenian.pyi +24 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/bahai.pyi +37 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/coptic.pyi +14 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/data/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/data/french_republican_days.pyi +3 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/data/positivist.pyi +6 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/daycount.pyi +13 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/dublin.pyi +13 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/french_republican.pyi +27 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/gregorian.pyi +20 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/hebrew.pyi +34 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/holidays.pyi +161 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/indian_civil.pyi +15 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/islamic.pyi +17 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/iso.pyi +17 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/julian.pyi +20 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/julianday.pyi +8 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/mayan.pyi +40 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/ordinal.pyi +4 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/persian.pyi +19 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/positivist.pyi +15 -0
- jaclang/vendor/typeshed/stubs/convertdate/convertdate/utils.pyi +43 -0
- jaclang/vendor/typeshed/stubs/croniter/croniter/__init__.pyi +22 -0
- jaclang/vendor/typeshed/stubs/croniter/croniter/croniter.pyi +357 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/__init__.pyi +39 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/__init__.pyi +25 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/hijri.pyi +5 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/hijri_parser.pyi +28 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/jalali.pyi +6 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/jalali_parser.pyi +18 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/conf.pyi +17 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/fasttext.pyi +1 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/langdetect.pyi +1 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/language_mapping.pyi +1 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/data/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/data/languages_info.pyi +5 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/date.pyi +110 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/date_parser.pyi +14 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/freshness_date_parser.pyi +16 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/dictionary.pyi +28 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/loader.pyi +29 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/locale.pyi +18 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/validation.pyi +10 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/parser.pyi +64 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/__init__.pyi +22 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/detection.pyi +17 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/search.pyi +37 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/text_detection.pyi +11 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/timezone_parser.pyi +24 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/timezones.pyi +3 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/utils/__init__.pyi +27 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser/utils/strptime.pyi +9 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser_data/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/dateparser/dateparser_data/settings.pyi +4 -0
- jaclang/vendor/typeshed/stubs/decorator/decorator.pyi +73 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/ElementTree.pyi +76 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/cElementTree.pyi +16 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/common.pyi +31 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/expatbuilder.pyi +49 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/expatreader.pyi +43 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/lxml.pyi +55 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/minidom.pyi +22 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/pulldom.pyi +22 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/sax.pyi +26 -0
- jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/xmlrpc.pyi +48 -0
- jaclang/vendor/typeshed/stubs/dirhash/dirhash/__init__.pyi +93 -0
- jaclang/vendor/typeshed/stubs/dirhash/dirhash/cli.pyi +5 -0
- jaclang/vendor/typeshed/stubs/django-filter/@tests/django_settings.py +12 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/compat.pyi +1 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/conf.pyi +17 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/constants.pyi +6 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/exceptions.pyi +8 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/fields.pyi +157 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/filters.pyi +328 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/filterset.pyi +86 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/rest_framework/__init__.pyi +34 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/rest_framework/backends.pyi +30 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/rest_framework/filters.pyi +68 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/rest_framework/filterset.pyi +17 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/utils.pyi +36 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/views.pyi +38 -0
- jaclang/vendor/typeshed/stubs/django-filter/django_filters/widgets.pyi +81 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/admin.pyi +109 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/command_utils.pyi +12 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/declarative.pyi +11 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/exceptions.pyi +11 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/fields.pyi +34 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/formats/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/formats/base_formats.pyi +60 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/forms.pyi +38 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/instance_loaders.pyi +23 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/mixins.pyi +65 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/options.pyi +32 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/resources.pyi +168 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/results.pyi +89 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/signals.pyi +4 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/templatetags/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/templatetags/import_export_tags.pyi +8 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/tmp_storages.pyi +34 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/utils.pyi +19 -0
- jaclang/vendor/typeshed/stubs/django-import-export/import_export/widgets.pyi +74 -0
- jaclang/vendor/typeshed/stubs/django-import-export/management/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/django-import-export/management/commands/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/django-import-export/management/commands/export.pyi +3 -0
- jaclang/vendor/typeshed/stubs/django-import-export/management/commands/import.pyi +3 -0
- jaclang/vendor/typeshed/stubs/docker/docker/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/docker/docker/_types.pyi +25 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/build.pyi +55 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/client.pyi +55 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/config.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/container.pyi +170 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/daemon.pyi +27 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/exec_api.pyi +20 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/image.pyi +43 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/network.pyi +51 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/plugin.pyi +12 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/secret.pyi +12 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/service.pyi +45 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/swarm.pyi +39 -0
- jaclang/vendor/typeshed/stubs/docker/docker/api/volume.pyi +14 -0
- jaclang/vendor/typeshed/stubs/docker/docker/auth.pyi +48 -0
- jaclang/vendor/typeshed/stubs/docker/docker/client.pyi +63 -0
- jaclang/vendor/typeshed/stubs/docker/docker/constants.pyi +22 -0
- jaclang/vendor/typeshed/stubs/docker/docker/context/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/docker/docker/context/api.pyi +29 -0
- jaclang/vendor/typeshed/stubs/docker/docker/context/config.pyi +10 -0
- jaclang/vendor/typeshed/stubs/docker/docker/context/context.pyi +76 -0
- jaclang/vendor/typeshed/stubs/docker/docker/credentials/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/docker/docker/credentials/constants.pyi +4 -0
- jaclang/vendor/typeshed/stubs/docker/docker/credentials/errors.pyi +7 -0
- jaclang/vendor/typeshed/stubs/docker/docker/credentials/store.pyi +11 -0
- jaclang/vendor/typeshed/stubs/docker/docker/credentials/utils.pyi +1 -0
- jaclang/vendor/typeshed/stubs/docker/docker/errors.pyi +73 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/configs.pyi +13 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/containers.pyi +416 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/images.pyi +114 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/networks.pyi +37 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/nodes.pyi +13 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/plugins.pyi +25 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/resource.pyi +32 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/secrets.pyi +13 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/services.pyi +25 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/swarm.pyi +33 -0
- jaclang/vendor/typeshed/stubs/docker/docker/models/volumes.pyi +16 -0
- jaclang/vendor/typeshed/stubs/docker/docker/tls.pyi +10 -0
- jaclang/vendor/typeshed/stubs/docker/docker/transport/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/docker/docker/transport/basehttpadapter.pyi +4 -0
- jaclang/vendor/typeshed/stubs/docker/docker/transport/npipeconn.pyi +29 -0
- jaclang/vendor/typeshed/stubs/docker/docker/transport/npipesocket.pyi +57 -0
- jaclang/vendor/typeshed/stubs/docker/docker/transport/sshconn.pyi +53 -0
- jaclang/vendor/typeshed/stubs/docker/docker/transport/unixconn.pyi +34 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/__init__.pyi +35 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/base.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/containers.pyi +174 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/daemon.pyi +12 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/healthcheck.pyi +24 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/networks.pyi +35 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/services.pyi +194 -0
- jaclang/vendor/typeshed/stubs/docker/docker/types/swarm.pyi +30 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/__init__.pyi +32 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/build.pyi +39 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/config.pyi +12 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/decorators.pyi +10 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/fnmatch.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/json_stream.pyi +15 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/ports.pyi +11 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/proxy.pyi +35 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/socket.pyi +29 -0
- jaclang/vendor/typeshed/stubs/docker/docker/utils/utils.pyi +72 -0
- jaclang/vendor/typeshed/stubs/docker/docker/version.pyi +1 -0
- jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/constants.pyi +4 -0
- jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/parser.pyi +70 -0
- jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/util.pyi +52 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/__init__.pyi +44 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/__main__.pyi +11 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/core.pyi +219 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/examples.pyi +44 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/frontend.pyi +199 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/io.pyi +136 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/__init__.pyi +25 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/af.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ar.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ca.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/cs.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/da.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/de.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/en.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/eo.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/es.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/fa.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/fi.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/fr.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/gl.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/he.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/it.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ja.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ka.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ko.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/lt.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/lv.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/nl.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/pl.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/pt_br.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ru.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/sk.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/sv.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/uk.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/zh_cn.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/languages/zh_tw.pyi +6 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/nodes.pyi +746 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/__init__.pyi +19 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/commonmark_wrapper.pyi +10 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/docutils_xml.pyi +16 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/null.pyi +9 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/recommonmark_wrapper.pyi +54 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/__init__.pyi +71 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/__init__.pyi +43 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/admonitions.pyi +39 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/body.pyi +74 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/html.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/images.pyi +18 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/misc.pyi +46 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/parts.pyi +14 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/references.pyi +7 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/tables.pyi +62 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/__init__.pyi +20 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/af.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ar.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ca.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/cs.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/da.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/de.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/en.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/eo.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/es.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/fa.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/fi.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/fr.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/gl.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/he.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/it.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ja.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ka.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ko.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/lt.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/lv.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/nl.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/pl.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/pt_br.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ru.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/sk.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/sv.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/uk.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/zh_cn.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/zh_tw.pyi +5 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/roles.pyi +135 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/states.pyi +390 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/tableparser.pyi +65 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/readers/__init__.pyi +31 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/readers/doctree.pyi +10 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/readers/pep.pyi +12 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/readers/standalone.pyi +11 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/statemachine.pyi +202 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/__init__.pyi +36 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/components.pyi +9 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/frontmatter.pyi +34 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/misc.pyi +19 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/parts.pyi +34 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/peps.pyi +43 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/references.pyi +79 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/universal.pyi +56 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/writer_aux.pyi +9 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/__init__.pyi +131 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/_roman_numerals.pyi +30 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/code_analyzer.pyi +29 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/latex2mathml.pyi +44 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/math2html.pyi +638 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/mathalphabet2unichar.pyi +13 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/mathml_elements.pyi +83 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/tex2mathml_extern.pyi +9 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/tex2unichar.pyi +14 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/unichar2tex.pyi +1 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/punctuation_chars.pyi +9 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/smartquotes.pyi +44 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/utils/urischemes.pyi +1 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/__init__.pyi +92 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/_html_base.pyi +304 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/docutils_xml.pyi +45 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/html4css1/__init__.pyi +125 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/html5_polyglot/__init__.pyi +16 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/latex2e/__init__.pyi +421 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/manpage.pyi +252 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/null.pyi +11 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/odf_odt/__init__.pyi +426 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/odf_odt/prepstyles.pyi +7 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/odf_odt/pygmentsformatter.pyi +31 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/pep_html/__init__.pyi +20 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/pseudoxml.pyi +9 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/s5_html/__init__.pyi +42 -0
- jaclang/vendor/typeshed/stubs/docutils/docutils/writers/xetex/__init__.pyi +30 -0
- jaclang/vendor/typeshed/stubs/editdistance/editdistance/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/entrypoints/entrypoints.pyi +48 -0
- jaclang/vendor/typeshed/stubs/et_xmlfile/et_xmlfile/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/et_xmlfile/et_xmlfile/incremental_tree.pyi +170 -0
- jaclang/vendor/typeshed/stubs/et_xmlfile/et_xmlfile/xmlfile.pyi +37 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/__init__.pyi +43 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/checksum.pyi +10 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/compiler.pyi +124 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/config.pyi +10 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/core.pyi +237 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/inclusion.pyi +22 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/injector.pyi +60 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/publisher.pyi +48 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/registry.pyi +50 -0
- jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/wsgi.pyi +22 -0
- jaclang/vendor/typeshed/stubs/first/first.pyi +19 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/_compat.pyi +9 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/api/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/api/legacy.pyi +27 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/checker.pyi +56 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/defaults.pyi +12 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/discover_files.pyi +8 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/exceptions.pyi +24 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/_windows_color.pyi +1 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/base.pyi +25 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/default.pyi +29 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/main/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/main/application.pyi +29 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/main/cli.pyi +3 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/main/debug.pyi +5 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/main/options.pyi +12 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/options/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/options/aggregator.pyi +12 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/options/config.pyi +10 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/options/manager.pyi +71 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/options/parse_args.pyi +6 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/finder.pyi +48 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/pycodestyle.pyi +32 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/pyflakes.pyi +21 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/reporter.pyi +9 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/processor.pyi +73 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/statistics.pyi +27 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/style_guide.pyi +70 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/utils.pyi +25 -0
- jaclang/vendor/typeshed/stubs/flake8/flake8/violation.pyi +13 -0
- jaclang/vendor/typeshed/stubs/flake8-bugbear/bugbear.pyi +268 -0
- jaclang/vendor/typeshed/stubs/flake8-builtins/flake8_builtins.pyi +46 -0
- jaclang/vendor/typeshed/stubs/flake8-docstrings/flake8_docstrings.pyi +24 -0
- jaclang/vendor/typeshed/stubs/flake8-rst-docstrings/flake8_rst_docstrings.pyi +34 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/__init__.pyi +30 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/constants.pyi +3 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_assign.pyi +6 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_bool_op.pyi +8 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_call.pyi +13 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_classdef.pyi +3 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_compare.pyi +4 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_expr.pyi +3 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_for.pyi +7 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_if.pyi +11 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_ifexp.pyi +5 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_subscript.pyi +3 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_try.pyi +4 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_unary_op.pyi +8 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/rules/ast_with.pyi +3 -0
- jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/utils.pyi +37 -0
- jaclang/vendor/typeshed/stubs/flake8-typing-imports/flake8_typing_imports.pyi +40 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/__init__.pyi +36 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/_fonttools_shims.pyi +55 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/actions.pyi +36 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/annotations.pyi +102 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/bidi.pyi +68 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/deprecation.pyi +11 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/drawing.pyi +479 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/encryption.pyi +110 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/enums.pyi +421 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/errors.pyi +12 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/fonts.pyi +182 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/fpdf.pyi +720 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/graphics_state.pyi +128 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/html.pyi +97 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/image_datastructures.pyi +57 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/image_parsing.pyi +59 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/line_break.pyi +170 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/linearization.pyi +54 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/outline.pyi +61 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/output.pyi +271 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/pattern.pyi +104 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/prefs.pyi +74 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/recorder.pyi +13 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/sign.pyi +16 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/structure_tree.pyi +51 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/svg.pyi +142 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/syntax.pyi +81 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/table.pyi +139 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/template.pyi +43 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/text_region.pyi +174 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/transitions.pyi +59 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/unicode_script.pyi +172 -0
- jaclang/vendor/typeshed/stubs/fpdf2/fpdf/util.pyi +39 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/FrameDecorator.pyi +24 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/FrameIterator.pyi +8 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/__init__.pyi +1037 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/__init__.pyi +21 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/breakpoint.pyi +49 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/bt.pyi +49 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/disassemble.pyi +22 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/evaluate.pyi +31 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/events.pyi +12 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/frames.pyi +7 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/io.pyi +16 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/launch.pyi +14 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/locations.pyi +16 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/memory.pyi +10 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/modules.pyi +21 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/next.pyi +14 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/pause.pyi +3 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/scopes.pyi +47 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/server.pyi +77 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/sources.pyi +24 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/startup.pyi +44 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/state.pyi +1 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/threads.pyi +14 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/typecheck.pyi +6 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/dap/varref.pyi +70 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/disassembler.pyi +60 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/events.pyi +25 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/missing_debug.pyi +8 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/missing_files.pyi +13 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/missing_objfile.pyi +7 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/printing.pyi +56 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/prompt.pyi +1 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/types.pyi +29 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/unwinder.pyi +20 -0
- jaclang/vendor/typeshed/stubs/gdb/gdb/xmethod.pyi +46 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/__init__.pyi +20 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/_config.pyi +21 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/_decorator.pyi +21 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/_exports.pyi +21 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/accessors.pyi +7 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/array.pyi +258 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/base.pyi +241 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/explore.pyi +65 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/geodataframe.pyi +357 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/geoseries.pyi +213 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/_geoarrow.pyi +67 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/arrow.pyi +28 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/file.pyi +47 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/sql.pyi +118 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/plotting.pyi +259 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/sindex.pyi +79 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/testing.pyi +33 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/_show_versions.pyi +1 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/clip.pyi +9 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/geocoding.pyi +18 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/hilbert_curve.pyi +1 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/overlay.pyi +5 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/sjoin.pyi +26 -0
- jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/util.pyi +12 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/__init__.pyi +76 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_abstract_linkable.pyi +16 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_config.pyi +202 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_ffi/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_ffi/loop.pyi +87 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_ffi/watcher.pyi +93 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_fileobjectcommon.pyi +370 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_greenlet_primitives.pyi +20 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_hub_local.pyi +15 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_hub_primitives.pyi +72 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_ident.pyi +15 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_imap.pyi +28 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_monitor.pyi +51 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_threading.pyi +22 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_types.pyi +148 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_util.pyi +59 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/_waiter.pyi +47 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/ares.pyi +3 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/backdoor.pyi +47 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/baseserver.pyi +65 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/event.pyi +68 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/events.pyi +198 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/exceptions.pyi +17 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/fileobject.pyi +157 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/greenlet.pyi +101 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/hub.pyi +114 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/libev/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/libev/corecext.pyi +102 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/libev/corecffi.pyi +46 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/libev/watcher.pyi +65 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/libuv/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/libuv/loop.pyi +44 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/libuv/watcher.pyi +35 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/local.pyi +20 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/lock.pyi +44 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/monkey/__init__.pyi +68 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/monkey/api.pyi +7 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/os.pyi +36 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/pool.pyi +206 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/pywsgi.pyi +193 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/queue.pyi +110 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/__init__.pyi +23 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/ares.pyi +41 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/blocking.pyi +15 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/cares.pyi +52 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/dnspython.pyi +11 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/thread.pyi +17 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver_ares.pyi +3 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/resolver_thread.pyi +2 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/select.pyi +20 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/selectors.pyi +27 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/server.pyi +87 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/signal.pyi +13 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/socket.pyi +23 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/ssl.pyi +29 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/subprocess.pyi +4 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/threadpool.pyi +69 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/time.pyi +3 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/timeout.pyi +58 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/util.pyi +51 -0
- jaclang/vendor/typeshed/stubs/gevent/gevent/win32util.pyi +5 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/__init__.pyi +218 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_batch.pyi +3 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_cache.pyi +73 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_datastore_api.pyi +5 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_datastore_query.pyi +23 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_eventloop.pyi +26 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_options.pyi +15 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_transaction.pyi +20 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/blobstore.pyi +65 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/client.pyi +35 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/context.pyi +110 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/django_middleware.pyi +2 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/exceptions.pyi +22 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/global_cache.pyi +78 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/key.pyi +100 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/metadata.pyi +52 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/model.pyi +515 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/msgprop.pyi +5 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/polymodel.pyi +9 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/query.pyi +149 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/stats.pyi +102 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/tasklets.pyi +58 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/utils.pyi +28 -0
- jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/version.pyi +1 -0
- jaclang/vendor/typeshed/stubs/greenlet/@tests/test_cases/check_greenlet.py +15 -0
- jaclang/vendor/typeshed/stubs/greenlet/greenlet/__init__.pyi +14 -0
- jaclang/vendor/typeshed/stubs/greenlet/greenlet/_greenlet.pyi +84 -0
- jaclang/vendor/typeshed/stubs/grpcio/@tests/test_cases/check_aio.py +25 -0
- jaclang/vendor/typeshed/stubs/grpcio/@tests/test_cases/check_aio_multi_callable.py +37 -0
- jaclang/vendor/typeshed/stubs/grpcio/@tests/test_cases/check_grpc.py +47 -0
- jaclang/vendor/typeshed/stubs/grpcio/@tests/test_cases/check_handler_inheritance.py +36 -0
- jaclang/vendor/typeshed/stubs/grpcio/@tests/test_cases/check_multi_callable.py +35 -0
- jaclang/vendor/typeshed/stubs/grpcio/@tests/test_cases/check_register.py +14 -0
- jaclang/vendor/typeshed/stubs/grpcio/@tests/test_cases/check_server_interceptor.py +35 -0
- jaclang/vendor/typeshed/stubs/grpcio/grpc/__init__.pyi +610 -0
- jaclang/vendor/typeshed/stubs/grpcio/grpc/aio/__init__.pyi +466 -0
- jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/_async.pyi +19 -0
- jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/_servicer.pyi +25 -0
- jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/channelz.pyi +6 -0
- jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/channelz_pb2.pyi +604 -0
- jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/channelz_pb2_grpc.pyi +121 -0
- jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/health.pyi +35 -0
- jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/health_pb2.pyi +26 -0
- jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/health_pb2_grpc.pyi +41 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/@tests/test_cases/check_reflection.py +9 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/@tests/test_cases/check_reflection_aio.py +9 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/_async.pyi +11 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/_base.pyi +6 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/proto_reflection_descriptor_database.pyi +11 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/reflection.pyi +28 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/reflection_pb2.pyi +107 -0
- jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/reflection_pb2_grpc.pyi +31 -0
- jaclang/vendor/typeshed/stubs/grpcio-status/grpc_status/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/grpcio-status/grpc_status/_async.pyi +5 -0
- jaclang/vendor/typeshed/stubs/grpcio-status/grpc_status/rpc_status.pyi +11 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/_types.pyi +23 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/app/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/app/base.pyi +33 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/app/pasterapp.pyi +7 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/app/wsgiapp.pyi +16 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/arbiter.pyi +68 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/config.pyi +1064 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/debug.pyi +18 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/errors.pyi +8 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/glogging.pyi +157 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/http/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/http/body.pyi +48 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/http/errors.pyi +89 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/http/message.pyi +59 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/http/parser.pyi +26 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/http/unreader.pyi +25 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/http/wsgi.pyi +68 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/instrument/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/instrument/statsd.pyi +96 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/pidfile.pyi +8 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/reloader.pyi +48 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/sock.pyi +40 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/systemd.pyi +6 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/util.pyi +48 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/base.pyi +48 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/base_async.pyi +17 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/geventlet.pyi +24 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/ggevent.pyi +45 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/gthread.pyi +50 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/gtornado.pyi +25 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/sync.pyi +19 -0
- jaclang/vendor/typeshed/stubs/gunicorn/gunicorn/workers/workertmp.pyi +11 -0
- jaclang/vendor/typeshed/stubs/hdbcli/hdbcli/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/hdbcli/hdbcli/dbapi.pyi +143 -0
- jaclang/vendor/typeshed/stubs/hdbcli/hdbcli/resultrow.pyi +17 -0
- jaclang/vendor/typeshed/stubs/hnswlib/hnswlib.pyi +64 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/_ihatexml.pyi +55 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/_inputstream.pyi +144 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/_tokenizer.pyi +126 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/_trie/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/_trie/_base.pyi +9 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/_trie/py.pyi +10 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/_utils.pyi +41 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/constants.pyi +35 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/alphabeticalattributes.pyi +5 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/base.pyi +10 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/inject_meta_charset.pyi +8 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/lint.pyi +10 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/optionaltags.pyi +9 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/sanitizer.pyi +51 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/whitespace.pyi +12 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/html5parser.pyi +65 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/serializer.pyi +98 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treeadapters/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treeadapters/genshi.pyi +1 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treeadapters/sax.pyi +3 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/base.pyi +55 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/dom.pyi +7 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/etree.pyi +10 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/etree_lxml.pyi +45 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/base.pyi +33 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/dom.pyi +7 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/etree.pyi +9 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/etree_lxml.pyi +58 -0
- jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/genshi.pyi +5 -0
- jaclang/vendor/typeshed/stubs/httplib2/httplib2/__init__.pyi +216 -0
- jaclang/vendor/typeshed/stubs/httplib2/httplib2/auth.pyi +19 -0
- jaclang/vendor/typeshed/stubs/httplib2/httplib2/certs.pyi +10 -0
- jaclang/vendor/typeshed/stubs/httplib2/httplib2/error.pyi +22 -0
- jaclang/vendor/typeshed/stubs/httplib2/httplib2/iri2uri.pyi +14 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/adapters.pyi +66 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/__init__.pyi +40 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/approle.pyi +39 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/aws.pyi +103 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/azure.pyi +42 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/cert.pyi +41 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/gcp.pyi +38 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/github.pyi +12 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/jwt.pyi +59 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/kubernetes.pyi +34 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/ldap.pyi +56 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/legacy_mfa.pyi +11 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/oidc.pyi +33 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/okta.pyi +18 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/radius.pyi +14 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/token.pyi +70 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/userpass.pyi +11 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/__init__.pyi +40 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/active_directory.pyi +24 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/aws.pyi +28 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/azure.pyi +13 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/consul.pyi +13 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/database.pyi +45 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/gcp.pyi +46 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/identity.pyi +106 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/kv.pyi +18 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/kv_v1.pyi +9 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/kv_v2.pyi +27 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/ldap.pyi +41 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/pki.pyi +36 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/rabbitmq.pyi +18 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/ssh.pyi +71 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/transform.pyi +79 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/transit.pyi +93 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/__init__.pyi +62 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/audit.pyi +7 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/auth.pyi +21 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/capabilities.pyi +4 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/health.pyi +14 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/init.pyi +16 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/key.pyi +27 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/leader.pyi +5 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/lease.pyi +9 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/mount.pyi +34 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/namespace.pyi +6 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/policies.pyi +15 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/policy.pyi +7 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/quota.pyi +9 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/raft.pyi +21 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/seal.pyi +8 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/system_backend_mixin.pyi +8 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/wrapping.pyi +6 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/vault_api_base.pyi +10 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/api/vault_api_category.pyi +24 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/aws_utils.pyi +11 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/approle.pyi +4 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/aws.pyi +7 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/azure.pyi +3 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/client.pyi +8 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/gcp.pyi +8 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/identity.pyi +5 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/constants/transit.pyi +12 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/exceptions.pyi +43 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/utils.pyi +48 -0
- jaclang/vendor/typeshed/stubs/hvac/hvac/v1/__init__.pyi +84 -0
- jaclang/vendor/typeshed/stubs/ibm-db/ibm_db.pyi +353 -0
- jaclang/vendor/typeshed/stubs/icalendar/@tests/test_cases/check_cal.py +9 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/__init__.pyi +126 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/alarms.pyi +48 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/attr.pyi +26 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/cal.pyi +480 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/caselessdict.pyi +45 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/enums.pyi +44 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/error.pyi +19 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/param.pyi +62 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/parser.pyi +95 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/parser_tools.pyi +21 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/prop.pyi +329 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/equivalent_timezone_ids.pyi +13 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/equivalent_timezone_ids_result.pyi +6 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/provider.pyi +29 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/pytz.pyi +22 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/tzid.pyi +7 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/tzp.pyi +30 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/windows_to_olson.pyi +3 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/zoneinfo.pyi +28 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/tools.pyi +25 -0
- jaclang/vendor/typeshed/stubs/icalendar/icalendar/version.pyi +8 -0
- jaclang/vendor/typeshed/stubs/inifile/inifile.pyi +132 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/ast.pyi +56 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/compat.pyi +13 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/exceptions.pyi +47 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/functions.pyi +23 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/lexer.pyi +19 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/parser.pyi +19 -0
- jaclang/vendor/typeshed/stubs/jmespath/jmespath/visitor.pyi +66 -0
- jaclang/vendor/typeshed/stubs/jsonnet/_jsonnet.pyi +35 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/__init__.pyi +42 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_format.pyi +49 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_keywords.pyi +36 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_legacy_keywords.pyi +23 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_types.pyi +27 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_typing.pyi +13 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_utils.pyi +31 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/cli.pyi +65 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/exceptions.pyi +92 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/protocols.pyi +33 -0
- jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/validators.pyi +133 -0
- jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/common.pyi +50 -0
- jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwa.pyi +35 -0
- jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwe.pyi +53 -0
- jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwk.pyi +250 -0
- jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jws.pyi +62 -0
- jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwt.pyi +78 -0
- jaclang/vendor/typeshed/stubs/keyboard/keyboard/__init__.pyi +113 -0
- jaclang/vendor/typeshed/stubs/keyboard/keyboard/_canonical_names.pyi +5 -0
- jaclang/vendor/typeshed/stubs/keyboard/keyboard/_generic.pyi +24 -0
- jaclang/vendor/typeshed/stubs/keyboard/keyboard/_keyboard_event.pyi +28 -0
- jaclang/vendor/typeshed/stubs/keyboard/keyboard/_mouse_event.pyi +43 -0
- jaclang/vendor/typeshed/stubs/keyboard/keyboard/mouse.pyi +84 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/__init__.pyi +103 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/attrDef.pyi +33 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/attribute.pyi +34 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/cursor.pyi +102 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/entry.pyi +76 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/objectDef.pyi +15 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/connection.pyi +180 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/exceptions.pyi +129 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/pooling.pyi +42 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/rdns.pyi +12 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/results.pyi +56 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/server.pyi +52 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/timezone.pyi +11 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/tls.pyi +36 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/usage.pyi +41 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/__init__.pyi +97 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/addMembersToGroups.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/dirSync.pyi +30 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/modifyPassword.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/persistentSearch.pyi +15 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/removeMembersFromGroups.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/unlockAccount.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/addMembersToGroups.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/checkGroupsMemberships.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/endTransaction.pyi +15 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/getBindDn.pyi +10 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/listReplicas.pyi +13 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/nmasGetUniversalPassword.pyi +12 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/nmasSetUniversalPassword.pyi +12 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/partition_entry_count.pyi +11 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/removeMembersFromGroups.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/replicaInfo.pyi +11 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/startTransaction.pyi +15 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/operation.pyi +21 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/PagedSearch.pyi +30 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/PersistentSearch.pyi +36 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/modifyPassword.pyi +13 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/whoAmI.pyi +7 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/abandon.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/add.pyi +3 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/bind.pyi +11 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/compare.pyi +3 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/delete.pyi +3 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/extended.pyi +14 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/modify.pyi +7 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/modifyDn.pyi +3 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/search.pyi +65 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/unbind.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/controls.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/convert.pyi +20 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/formatters.pyi +16 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/standard.pyi +7 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/validators.pyi +16 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/microsoft.pyi +25 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/novell.pyi +67 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/oid.pyi +29 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/persistentSearch.pyi +14 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc2696.pyi +19 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc2849.pyi +18 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc3062.pyi +25 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc4511.pyi +321 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc4512.pyi +204 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc4527.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/digestMd5.pyi +9 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/external.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/kerberos.pyi +8 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/plain.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/sasl.pyi +5 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/ad2012R2.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/ds389.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/edir888.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/edir914.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/slapd24.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/asyncStream.pyi +18 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/asynchronous.pyi +28 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/base.pyi +42 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/ldifProducer.pyi +21 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/mockAsync.pyi +11 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/mockBase.pyi +37 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/mockSync.pyi +10 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/restartable.pyi +19 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/reusable.pyi +75 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/safeRestartable.pyi +5 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/safeSync.pyi +5 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/sync.pyi +19 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/asn1.pyi +51 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/ciDict.pyi +29 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/config.pyi +6 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/conv.pyi +12 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/dn.pyi +11 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/hashed.pyi +6 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/log.pyi +25 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/ntlm.pyi +117 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/port_validators.pyi +2 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/repr.pyi +5 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/tls_backport.pyi +3 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/uri.pyi +1 -0
- jaclang/vendor/typeshed/stubs/ldap3/ldap3/version.pyi +9 -0
- jaclang/vendor/typeshed/stubs/libsass/sass.pyi +202 -0
- jaclang/vendor/typeshed/stubs/libsass/sassutils/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/libsass/sassutils/builder.pyi +36 -0
- jaclang/vendor/typeshed/stubs/libsass/sassutils/distutils.pyi +18 -0
- jaclang/vendor/typeshed/stubs/libsass/sassutils/wsgi.pyi +24 -0
- jaclang/vendor/typeshed/stubs/lunardate/lunardate.pyi +40 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/lua51.pyi +102 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/lua52.pyi +102 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/lua53.pyi +102 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/lua54.pyi +102 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/luajit20.pyi +96 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/luajit21.pyi +96 -0
- jaclang/vendor/typeshed/stubs/lupa/lupa/version.pyi +3 -0
- jaclang/vendor/typeshed/stubs/lzstring/lzstring/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/__init__.pyi +73 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/httpclient.pyi +19 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/mixins.pyi +25 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/model.pyi +447 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/parser.pyi +29 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/protocol.pyi +41 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/version_matching.pyi +5 -0
- jaclang/vendor/typeshed/stubs/m3u8/m3u8/version_matching_rules.pyi +24 -0
- jaclang/vendor/typeshed/stubs/mock/mock/__init__.pyi +24 -0
- jaclang/vendor/typeshed/stubs/mock/mock/backports.pyi +7 -0
- jaclang/vendor/typeshed/stubs/mock/mock/mock.pyi +374 -0
- jaclang/vendor/typeshed/stubs/mypy-extensions/mypy_extensions.pyi +87 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/__init__.pyi +95 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/_exceptions.pyi +13 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/_mysql.pyi +92 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/connections.pyi +59 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/CLIENT.pyi +18 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/CR.pyi +69 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/ER.pyi +790 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/FIELD_TYPE.pyi +29 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/FLAG.pyi +16 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/converters.pyi +30 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/cursors.pyi +70 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/release.pyi +1 -0
- jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/times.pyi +27 -0
- jaclang/vendor/typeshed/stubs/nanoid/nanoid/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/nanoid/nanoid/algorithm.pyi +1 -0
- jaclang/vendor/typeshed/stubs/nanoid/nanoid/generate.pyi +3 -0
- jaclang/vendor/typeshed/stubs/nanoid/nanoid/method.pyi +6 -0
- jaclang/vendor/typeshed/stubs/nanoid/nanoid/non_secure_generate.pyi +3 -0
- jaclang/vendor/typeshed/stubs/nanoid/nanoid/resources.pyi +2 -0
- jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/__init__.pyi +16 -0
- jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/digital_twin.pyi +12 -0
- jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/discovery.pyi +1 -0
- jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/nanoleaf.pyi +68 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/__init__.pyi +124 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/cli.pyi +8 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/compat.pyi +0 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/contrib/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/contrib/subnet_splitter.pyi +7 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/core.pyi +34 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/eui/__init__.pyi +86 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/eui/ieee.pyi +33 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/fbsocket.pyi +8 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/__init__.pyi +184 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/glob.pyi +18 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/iana.pyi +52 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/nmap.pyi +6 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/rfc1924.pyi +9 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/sets.pyi +46 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/eui48.pyi +39 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/eui64.pyi +38 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/ipv4.pyi +39 -0
- jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/ipv6.pyi +43 -0
- jaclang/vendor/typeshed/stubs/netifaces/netifaces.pyi +72 -0
- jaclang/vendor/typeshed/stubs/networkx/@tests/test_cases/check_dispatch_decorator.py +23 -0
- jaclang/vendor/typeshed/stubs/networkx/@tests/test_cases/check_tricky_function_params.py +25 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/__init__.pyi +30 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/_typing.pyi +29 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/__init__.pyi +139 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/__init__.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/clique.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/clustering_coefficient.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/connectivity.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/density.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/distance_measures.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/dominating_set.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/kcomponents.pyi +10 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/matching.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/maxcut.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/ramsey.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/steinertree.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/traveling_salesman.pyi +69 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/treewidth.pyi +25 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/vertex_cover.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/connectivity.pyi +17 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/correlation.pyi +25 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/mixing.pyi +36 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/neighbor_degree.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/pairs.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/asteroidal.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/basic.pyi +20 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/centrality.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/cluster.pyi +25 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/covering.pyi +10 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/edgelist.pyi +33 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/extendability.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/generators.pyi +45 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/link_analysis.pyi +20 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/matching.pyi +23 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/matrix.pyi +19 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/projection.pyi +26 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/redundancy.pyi +10 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/spectral.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/boundary.pyi +111 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bridges.pyi +20 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/broadcasting.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/__init__.pyi +20 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/betweenness.pyi +23 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/betweenness_subset.pyi +23 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/closeness.pyi +19 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/current_flow_betweenness.pyi +31 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/current_flow_betweenness_subset.pyi +28 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/current_flow_closeness.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/degree_alg.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/dispersion.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/eigenvector.pyi +19 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/flow_matrix.pyi +44 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/group.pyi +37 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/harmonic.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/katz.pyi +26 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/laplacian.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/load.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/percolation.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/reaching.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/second_order.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/subgraph_alg.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/trophic.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/voterank_alg.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/chains.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/chordal.pyi +29 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/clique.pyi +51 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/cluster.pyi +22 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/coloring/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/coloring/equitable_coloring.pyi +23 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/coloring/greedy_coloring.pyi +42 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/communicability_alg.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/asyn_fluid.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/centrality.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/community_utils.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/divisive.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/kclique.pyi +10 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/kernighan_lin.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/label_propagation.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/leiden.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/local.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/louvain.pyi +26 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/lukes.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/modularity_max.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/quality.pyi +22 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/attracting.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/biconnected.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/connected.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/semiconnected.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/strongly_connected.pyi +24 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/weakly_connected.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/connectivity.pyi +62 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/cuts.pyi +38 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/disjoint_paths.pyi +31 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/edge_augmentation.pyi +47 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/edge_kcomponents.pyi +26 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/kcomponents.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/kcutsets.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/stoerwagner.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/utils.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/core.pyi +21 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/covering.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/cuts.pyi +32 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/cycles.pyi +33 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/d_separation.pyi +22 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/dag.pyi +65 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/distance_measures.pyi +63 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/distance_regular.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/dominance.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/dominating.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/efficiency_measures.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/euler.pyi +22 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/__init__.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/boykovkolmogorov.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/capacityscaling.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/dinitz_alg.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/edmondskarp.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/gomory_hu.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/maxflow.pyi +47 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/mincost.pyi +21 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/networksimplex.pyi +50 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/preflowpush.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/shortestaugmentingpath.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/utils.pyi +38 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/graph_hashing.pyi +24 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/graphical.pyi +27 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/hierarchy.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/hybrid.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isolate.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/ismags.pyi +19 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/isomorph.pyi +34 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/isomorphvf2.pyi +67 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/matchhelpers.pyi +40 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/temporalisomorphvf2.pyi +30 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/tree_isomorphism.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/vf2pp.pyi +40 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/vf2userfunc.pyi +26 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_analysis/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_analysis/hits_alg.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_analysis/pagerank_alg.pyi +29 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_prediction.pyi +30 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/lowest_common_ancestors.pyi +17 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/matching.pyi +30 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/minors/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/minors/contraction.pyi +37 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/mis.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/moral.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/node_classification.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/non_randomness.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/all.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/binary.pyi +28 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/product.pyi +37 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/unary.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/planar_drawing.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/planarity.pyi +113 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/polynomials.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/reciprocity.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/regular.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/richclub.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/astar.pyi +28 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/dense.pyi +19 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/generic.pyi +145 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/unweighted.pyi +41 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/weighted.pyi +146 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/similarity.pyi +109 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/simple_paths.pyi +36 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/smallworld.pyi +16 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/smetric.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/sparsifiers.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/structuralholes.pyi +22 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/summarization.pyi +19 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/swap.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/threshold.pyi +40 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/time_dependent.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tournament.pyi +31 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/beamsearch.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/breadth_first_search.pyi +66 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/depth_first_search.pyi +73 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/edgebfs.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/edgedfs.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/branchings.pyi +70 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/coding.pyi +19 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/decomposition.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/mst.pyi +90 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/operations.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/recognition.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/triads.pyi +25 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/vitality.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/voronoi.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/walks.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/wiener.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/coreviews.pyi +79 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/digraph.pyi +52 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/filters.pyi +32 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/function.pyi +173 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/graph.pyi +107 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/graphviews.pyi +40 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/multidigraph.pyi +38 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/multigraph.pyi +57 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/classes/reportviews.pyi +409 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/convert.pyi +32 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/convert_matrix.pyi +103 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/layout.pyi +160 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_agraph.pyi +45 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_latex.pyi +70 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_pydot.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_pylab.pyi +354 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/exception.pyi +33 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/__init__.pyi +29 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/atlas.pyi +22 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/classic.pyi +71 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/cographs.pyi +6 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/community.pyi +59 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/degree_seq.pyi +52 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/directed.pyi +30 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/duplication.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/ego.pyi +7 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/expanders.pyi +24 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/geometric.pyi +38 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/harary_graph.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/internet_as_graphs.pyi +45 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/intersection.pyi +10 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/interval_graph.pyi +6 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/joint_degree_seq.pyi +27 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/lattice.pyi +14 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/line.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/mycielski.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/nonisomorphic_trees.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/random_clustered.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/random_graphs.pyi +66 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/small.pyi +74 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/social.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/spectral_graph_forge.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/stochastic.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/sudoku.pyi +6 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/time_series.pyi +6 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/trees.pyi +33 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/generators/triads.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/lazy_imports.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/algebraicconnectivity.pyi +45 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/attrmatrix.pyi +41 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/bethehessianmatrix.pyi +10 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/graphmatrix.pyi +31 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/laplacianmatrix.pyi +39 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/modularitymatrix.pyi +18 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/spectrum.pyi +23 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/adjlist.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/edgelist.pyi +39 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/gexf.pyi +72 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/gml.pyi +41 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/graph6.pyi +17 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/graphml.pyi +129 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/adjacency.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/cytoscape.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/node_link.pyi +51 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/tree.pyi +9 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/leda.pyi +8 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/multiline_adjlist.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/p2g.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/pajek.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/sparse6.pyi +13 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/text.pyi +63 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/relabel.pyi +29 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/__init__.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/backends.pyi +65 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/configs.pyi +89 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/decorators.pyi +29 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/heaps.pyi +42 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/mapped_queue.pyi +26 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/misc.pyi +64 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/random_sequence.pyi +15 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/rcm.pyi +11 -0
- jaclang/vendor/typeshed/stubs/networkx/networkx/utils/union_find.pyi +11 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/common.pyi +84 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/__init__.pyi +31 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/__init__.pyi +68 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/access_token.pyi +10 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/authorization.pyi +8 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/base.pyi +6 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/pre_configured.pyi +9 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/request_token.pyi +10 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/resource.pyi +8 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/signature_only.pyi +8 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/errors.pyi +26 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/parameters.pyi +5 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/request_validator.pyi +67 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/signature.pyi +36 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/utils.pyi +18 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/__init__.pyi +65 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/__init__.pyi +11 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/backend_application.pyi +15 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/base.pyi +122 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/legacy_application.pyi +42 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/mobile_application.pyi +18 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/service_application.pyi +56 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/web_application.pyi +53 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/authorization.pyi +31 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/base.pyi +24 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/introspect.pyi +20 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/metadata.pyi +27 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/pre_configured.pyi +83 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/resource.pyi +26 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/revocation.pyi +26 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/token.pyi +32 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/errors.pyi +150 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/authorization_code.pyi +24 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/base.pyi +68 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/client_credentials.pyi +12 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/implicit.pyi +19 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/refresh_token.pyi +25 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/resource_owner_password_credentials.pyi +12 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/parameters.pyi +47 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/request_validator.pyi +62 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/tokens.pyi +69 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/utils.pyi +16 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/clients/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/clients/device.pyi +40 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/endpoints/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/endpoints/device_authorization.pyi +32 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/endpoints/pre_configured.pyi +16 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/errors.pyi +13 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/grant_types/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/grant_types/device_code.pyi +8 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/request_validator.pyi +5 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/endpoints/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/endpoints/pre_configured.pyi +54 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/endpoints/userinfo.pyi +22 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/exceptions.pyi +51 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/authorization_code.pyi +25 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/base.pyi +19 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/dispatchers.pyi +32 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/hybrid.pyi +29 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/implicit.pyi +26 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/refresh_token.pyi +25 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/request_validator.pyi +24 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/tokens.pyi +23 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/signals.pyi +20 -0
- jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/uri_validate.pyi +44 -0
- jaclang/vendor/typeshed/stubs/objgraph/objgraph.pyi +91 -0
- jaclang/vendor/typeshed/stubs/olefile/olefile/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/olefile/olefile/olefile.pyi +247 -0
- jaclang/vendor/typeshed/stubs/openpyxl/@tests/test_cases/check_base_descriptors.py +392 -0
- jaclang/vendor/typeshed/stubs/openpyxl/@tests/test_cases/check_nested_descriptors.py +458 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/__init__.pyi +32 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/_constants.pyi +7 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/__init__.pyi +28 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/_writer.pyi +9 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/cell.pyi +102 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/read_only.pyi +72 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/rich_text.pyi +29 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/text.pyi +98 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/_3d.pyi +66 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/_chart.pyi +51 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/area_chart.pyi +60 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/axis.pyi +311 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/bar_chart.pyi +87 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/bubble_chart.pyi +41 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/chartspace.pyi +145 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/data_source.pyi +120 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/descriptors.pyi +21 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/error_bar.pyi +45 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/label.pyi +92 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/layout.pyi +49 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/legend.pyi +54 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/line_chart.pyi +87 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/marker.pyi +56 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/picture.pyi +28 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/pie_chart.pyi +105 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/pivot.pyi +50 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/plotarea.pyi +77 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/print_settings.pyi +42 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/radar_chart.pyi +36 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/reader.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/reference.pyi +50 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/scatter_chart.pyi +35 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/series.pyi +107 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/series_factory.pyi +9 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/shapes.pyi +51 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/stock_chart.pyi +33 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/surface_chart.pyi +65 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/text.pyi +26 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/title.pyi +42 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/trendline.pyi +68 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/updown_bars.pyi +18 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/chartsheet.pyi +59 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/custom.pyi +48 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/properties.pyi +15 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/protection.pyi +27 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/publish.pyi +53 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/relation.pyi +71 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/views.pyi +30 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/author.pyi +11 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/comment_sheet.pyi +124 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/comments.pyi +19 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/shape_writer.pyi +21 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/abc.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/numbers.pyi +14 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/product.pyi +3 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/singleton.pyi +15 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/strings.pyi +6 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/base.pyi +354 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/container.pyi +18 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/excel.pyi +48 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/namespace.pyi +2 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/nested.pyi +276 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/sequence.pyi +78 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/serialisable.pyi +54 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/slots.pyi +4 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/colors.pyi +510 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/connector.pyi +98 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/drawing.pyi +28 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/effect.pyi +254 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/fill.pyi +315 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/geometry.pyi +577 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/graphic.pyi +83 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/image.pyi +24 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/line.pyi +89 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/picture.pyi +79 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/properties.pyi +120 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/relation.pyi +10 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/spreadsheet_drawing.pyi +121 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/text.pyi +516 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/xdr.pyi +26 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formatting/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formatting/formatting.pyi +32 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formatting/rule.pyi +202 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formula/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formula/tokenizer.pyi +63 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formula/translate.pyi +22 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/core.pyi +60 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/custom.pyi +66 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/extended.pyi +81 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/interface.pyi +8 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/manifest.pyi +41 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/relationship.pyi +56 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/workbook.pyi +101 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/cache.pyi +643 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/fields.pyi +242 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/record.pyi +33 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/table.pyi +959 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/drawings.pyi +6 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/excel.pyi +54 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/strings.pyi +6 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/workbook.pyi +24 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/alignment.pyi +47 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/borders.pyi +83 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/builtins.pyi +53 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/cell_style.pyi +98 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/colors.pyi +88 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/differential.pyi +42 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/fills.pyi +118 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/fonts.pyi +77 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/named_styles.pyi +83 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/numbers.pyi +84 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/protection.pyi +10 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/proxy.pyi +13 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/styleable.pyi +54 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/stylesheet.pyi +59 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/table.pyi +80 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/bound_dictionary.pyi +9 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/cell.pyi +27 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/dataframe.pyi +5 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/datetime.pyi +21 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/escape.pyi +2 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/exceptions.pyi +7 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/formulas.pyi +5 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/indexed_list.pyi +12 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/inference.pyi +10 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/protection.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/units.pyi +24 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/_writer.pyi +20 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/child.pyi +49 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/defined_name.pyi +71 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/external_link/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/external_link/external.pyi +81 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/external_reference.pyi +9 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/function_group.pyi +17 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/properties.pyi +103 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/protection.pyi +92 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/smart_tags.pyi +29 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/views.pyi +134 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/web.pyi +84 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/workbook.pyi +122 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_read_only.pyi +40 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_reader.pyi +117 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_write_only.pyi +45 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_writer.pyi +59 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/cell_range.pyi +104 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/cell_watch.pyi +16 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/controls.pyi +64 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/copier.pyi +7 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/custom.pyi +16 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/datavalidation.pyi +110 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/dimensions.pyi +149 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/drawing.pyi +9 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/errors.pyi +49 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/filters.pyi +316 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/formula.pyi +37 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/header_footer.pyi +73 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/hyperlink.pyi +30 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/merge.pyi +37 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/ole.pyi +115 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/page.pyi +105 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/pagebreak.pyi +48 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/picture.pyi +6 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/print_settings.pyi +51 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/properties.pyi +56 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/protection.pyi +76 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/related.pyi +9 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/scenario.pyi +87 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/smart_tag.pyi +49 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/table.pyi +222 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/views.pyi +99 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/worksheet.pyi +275 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/writer/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/writer/excel.pyi +18 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/writer/theme.pyi +3 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/__init__.pyi +11 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/_functions_overloads.pyi +129 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/constants.pyi +91 -0
- jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/functions.pyi +28 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/__init__.pyi +24 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/ext/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/ext/tags.pyi +1 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/harness/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/harness/api_check.pyi +34 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/harness/scope_check.pyi +15 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/logs.pyi +7 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/binary_propagator.pyi +8 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/context.pyi +13 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/propagator.pyi +7 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/span.pyi +38 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/text_propagator.pyi +14 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/tracer.pyi +26 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/propagation.pyi +10 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope.pyi +17 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_manager.pyi +8 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/asyncio.pyi +8 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/constants.pyi +1 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/contextvars.pyi +10 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/gevent.pyi +8 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/tornado.pyi +16 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/span.pyi +29 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/tags.pyi +23 -0
- jaclang/vendor/typeshed/stubs/opentracing/opentracing/tracer.pyi +47 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/__init__.pyi +47 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/_winapi.pyi +104 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/agent.pyi +98 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/auth_handler.pyi +58 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/auth_strategy.pyi +57 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/ber.pyi +18 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/buffered_pipe.pyi +14 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/channel.pyi +101 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/client.pyi +90 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/common.pyi +133 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/compress.pyi +12 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/config.pyi +35 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/ecdsakey.pyi +55 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/ed25519key.pyi +23 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/file.pyi +39 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/hostkeys.pyi +49 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_curve25519.pyi +20 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_ecdh_nist.pyi +32 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_gex.pyi +34 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_group1.pyi +24 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_group14.pyi +15 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_group16.pyi +11 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_gss.pyi +64 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/message.pyi +43 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/packet.pyi +69 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/pipe.pyi +37 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/pkey.pyi +68 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/primes.pyi +8 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/proxy.pyi +19 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/rsakey.pyi +35 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/server.pyi +50 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp.pyi +61 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_attr.pyi +22 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_client.pyi +73 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_file.pyi +33 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_handle.pyi +12 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_server.pyi +35 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_si.pyi +23 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/ssh_exception.pyi +47 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/ssh_gss.pyi +50 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/transport.pyi +213 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/util.pyi +48 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/win_openssh.pyi +12 -0
- jaclang/vendor/typeshed/stubs/paramiko/paramiko/win_pageant.pyi +22 -0
- jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/exceptions.pyi +27 -0
- jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/expressions.pyi +82 -0
- jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/grammar.pyi +60 -0
- jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/nodes.pyi +48 -0
- jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/utils.pyi +11 -0
- jaclang/vendor/typeshed/stubs/passlib/@tests/test_cases/check_bcrypt_using_rounds.py +3 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/apache.pyi +102 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/apps.pyi +35 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/context.pyi +87 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/_gen_files.pyi +11 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/base.pyi +15 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/unrolled.pyi +7 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_md4.pyi +12 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/des.pyi +5 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/digest.pyi +39 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/_builtin.pyi +21 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/_gen_files.pyi +1 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/_salsa.pyi +1 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/exc.pyi +55 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/ext/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/ext/django/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/ext/django/models.pyi +3 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/ext/django/utils.pyi +55 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/argon2.pyi +79 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/bcrypt.pyi +57 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/cisco.pyi +30 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/des_crypt.pyi +55 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/digests.pyi +37 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/django.pyi +93 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/fshp.pyi +29 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/ldap_digests.pyi +82 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/md5_crypt.pyi +23 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/misc.pyi +54 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/mssql.pyi +24 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/mysql.pyi +15 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/oracle.pyi +21 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/pbkdf2.pyi +91 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/phpass.pyi +22 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/postgres.pyi +10 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/roundup.pyi +7 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/scram.pyi +32 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/scrypt.pyi +35 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/sha1_crypt.pyi +25 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/sha2_crypt.pyi +31 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/sun_md5_crypt.pyi +26 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/windows.pyi +45 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/hash.pyi +75 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/hosts.pyi +15 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/ifc.pyi +39 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/pwd.pyi +142 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/registry.pyi +17 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/totp.pyi +159 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/__init__.pyi +87 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/binary.pyi +83 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/compat/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/compat/_ordered_dict.pyi +27 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/decor.pyi +38 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/des.pyi +8 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/handlers.pyi +192 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/md4.pyi +5 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/utils/pbkdf2.pyi +15 -0
- jaclang/vendor/typeshed/stubs/passlib/passlib/win32.pyi +16 -0
- jaclang/vendor/typeshed/stubs/passpy/passpy/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/passpy/passpy/exceptions.pyi +2 -0
- jaclang/vendor/typeshed/stubs/passpy/passpy/store.pyi +31 -0
- jaclang/vendor/typeshed/stubs/passpy/passpy/util.pyi +13 -0
- jaclang/vendor/typeshed/stubs/peewee/peewee.pyi +1904 -0
- jaclang/vendor/typeshed/stubs/peewee/playhouse/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/peewee/playhouse/flask_utils.pyi +28 -0
- jaclang/vendor/typeshed/stubs/pep8-naming/pep8ext_naming.pyi +163 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/ANSI.pyi +43 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/FSM.pyi +35 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/__init__.pyi +20 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/_async.pyi +19 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/exceptions.pyi +6 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/expect.pyi +38 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/fdpexpect.pyi +36 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/popen_spawn.pyi +34 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/pty_spawn.pyi +95 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/pxssh.pyi +66 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/replwrap.pyi +27 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/run.pyi +28 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/screen.pyi +80 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/socket_pexpect.pyi +35 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/spawnbase.pyi +147 -0
- jaclang/vendor/typeshed/stubs/pexpect/pexpect/utils.pyi +10 -0
- jaclang/vendor/typeshed/stubs/pika/pika/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/asyncio_connection.pyi +56 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/base_connection.pyi +35 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/blocking_connection.pyi +245 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/gevent_connection.pyi +55 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/select_connection.pyi +99 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/tornado_connection.pyi +21 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/twisted_connection.pyi +150 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/connection_workflow.pyi +37 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/io_services_utils.pyi +43 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/nbio_interface.pyi +61 -0
- jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/selector_ioloop_adapter.pyi +78 -0
- jaclang/vendor/typeshed/stubs/pika/pika/amqp_object.pyi +18 -0
- jaclang/vendor/typeshed/stubs/pika/pika/callback.pyi +42 -0
- jaclang/vendor/typeshed/stubs/pika/pika/channel.pyi +163 -0
- jaclang/vendor/typeshed/stubs/pika/pika/compat.pyi +49 -0
- jaclang/vendor/typeshed/stubs/pika/pika/connection.pyi +210 -0
- jaclang/vendor/typeshed/stubs/pika/pika/credentials.pyi +37 -0
- jaclang/vendor/typeshed/stubs/pika/pika/data.pyi +14 -0
- jaclang/vendor/typeshed/stubs/pika/pika/delivery_mode.pyi +5 -0
- jaclang/vendor/typeshed/stubs/pika/pika/diagnostic_utils.pyi +7 -0
- jaclang/vendor/typeshed/stubs/pika/pika/exceptions.pyi +62 -0
- jaclang/vendor/typeshed/stubs/pika/pika/exchange_type.pyi +19 -0
- jaclang/vendor/typeshed/stubs/pika/pika/frame.pyi +47 -0
- jaclang/vendor/typeshed/stubs/pika/pika/heartbeat.pyi +12 -0
- jaclang/vendor/typeshed/stubs/pika/pika/spec.pyi +872 -0
- jaclang/vendor/typeshed/stubs/pika/pika/tcp_socket_opts.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pika/pika/validators.pyi +12 -0
- jaclang/vendor/typeshed/stubs/polib/polib.pyi +170 -0
- jaclang/vendor/typeshed/stubs/pony/pony/__init__.pyi +14 -0
- jaclang/vendor/typeshed/stubs/pony/pony/converting.pyi +48 -0
- jaclang/vendor/typeshed/stubs/pony/pony/flask/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stubs/pony/pony/flask/example/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pony/pony/flask/example/app.pyi +8 -0
- jaclang/vendor/typeshed/stubs/pony/pony/flask/example/config.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pony/pony/flask/example/models.pyi +10 -0
- jaclang/vendor/typeshed/stubs/pony/pony/flask/example/views.pyi +4 -0
- jaclang/vendor/typeshed/stubs/pony/pony/options.pyi +39 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/asttranslation.pyi +139 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/core.pyi +917 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbapiprovider.pyi +216 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbproviders/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbproviders/cockroach.pyi +49 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbproviders/mysql.pyi +102 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbproviders/oracle.pyi +159 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbproviders/postgres.pyi +105 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbproviders/sqlite.pyi +220 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/dbschema.pyi +86 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/decompiling.pyi +135 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/alessandro_bug.pyi +51 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/bottle_example.pyi +6 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/bug_ben.pyi +19 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/compositekeys.pyi +89 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/demo.pyi +34 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/estore.pyi +64 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/inheritance1.pyi +46 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/numbers.pyi +21 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/session01.pyi +15 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/university1.pyi +47 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/examples/university2.pyi +99 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/integration/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/integration/bottle_plugin.pyi +6 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/ormtypes.pyi +156 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/serialization.pyi +32 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/sqlbuilding.pyi +165 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/sqlsymbols.pyi +88 -0
- jaclang/vendor/typeshed/stubs/pony/pony/orm/sqltranslation.pyi +773 -0
- jaclang/vendor/typeshed/stubs/pony/pony/py23compat.pyi +13 -0
- jaclang/vendor/typeshed/stubs/pony/pony/thirdparty/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pony/pony/thirdparty/decorator.pyi +31 -0
- jaclang/vendor/typeshed/stubs/pony/pony/utils/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/pony/pony/utils/properties.pyi +16 -0
- jaclang/vendor/typeshed/stubs/pony/pony/utils/utils.pyi +86 -0
- jaclang/vendor/typeshed/stubs/portpicker/portpicker.pyi +21 -0
- jaclang/vendor/typeshed/stubs/protobuf/@tests/test_cases/check_struct.py +17 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/_upb/_message.pyi +311 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/any_pb2.pyi +172 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/api_pb2.pyi +336 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/compiler/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/compiler/plugin_pb2.pyi +362 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor.pyi +363 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor_database.pyi +16 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor_pb2.pyi +2959 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor_pool.pyi +22 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/duration_pb2.pyi +126 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/empty_pb2.pyi +57 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/field_mask_pb2.pyi +259 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/api_implementation.pyi +2 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/builder.pyi +4 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/containers.pyi +113 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/decoder.pyi +61 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/encoder.pyi +41 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/enum_type_wrapper.pyi +22 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/extension_dict.pyi +28 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/message_listener.pyi +5 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/python_message.pyi +3 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/type_checkers.pyi +11 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/well_known_types.pyi +97 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/wire_format.pyi +50 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/json_format.pyi +44 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/message.pyi +46 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/message_factory.pyi +15 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/reflection.pyi +2 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/runtime_version.pyi +23 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/source_context_pb2.pyi +59 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/struct_pb2.pyi +215 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/symbol_database.pyi +16 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/text_format.pyi +218 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/timestamp_pb2.pyi +155 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/type_pb2.pyi +492 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/util/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/wrappers_pb2.pyi +238 -0
- jaclang/vendor/typeshed/stubs/psutil/@tests/test_cases/check_process_iter.py +16 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/__init__.pyi +294 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_common.pyi +379 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psaix.pyi +98 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psbsd.pyi +168 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_pslinux.pyi +237 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psosx.pyi +119 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psposix.pyi +26 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_pssunos.pyi +129 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_linux.pyi +15 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_osx.pyi +64 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_posix.pyi +34 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_windows.pyi +103 -0
- jaclang/vendor/typeshed/stubs/psutil/psutil/_pswindows.pyi +231 -0
- jaclang/vendor/typeshed/stubs/psycopg2/@tests/test_cases/check_connect.py +40 -0
- jaclang/vendor/typeshed/stubs/psycopg2/@tests/test_cases/check_extensions.py +62 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/__init__.pyi +59 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_ipaddress.pyi +9 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_json.pyi +33 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_psycopg.pyi +631 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_range.pyi +84 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/errorcodes.pyi +312 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/errors.pyi +269 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/extensions.pyi +125 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/extras.pyi +251 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/pool.pyi +24 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/sql.pyi +49 -0
- jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/tz.pyi +26 -0
- jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/generator.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/parser.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/utils.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/decoder.pyi +356 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/encoder.pyi +84 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/eoo.pyi +11 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/cer/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/cer/decoder.pyi +43 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/cer/encoder.pyi +55 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/der/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/der/decoder.pyi +33 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/der/encoder.pyi +25 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/native/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/native/decoder.pyi +42 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/native/encoder.pyi +71 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/streaming.pyi +21 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/compat/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/compat/integer.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/debug.pyi +28 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/error.pyi +15 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/base.pyi +150 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/char.pyi +88 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/constraint.pyi +52 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/error.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/namedtype.pyi +73 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/namedval.pyi +26 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/opentype.pyi +17 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/tag.pyi +64 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/tagmap.pyi +25 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/univ.pyi +398 -0
- jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/useful.pyi +31 -0
- jaclang/vendor/typeshed/stubs/pyaudio/pyaudio.pyi +179 -0
- jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/coco.pyi +95 -0
- jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/cocoeval.pyi +65 -0
- jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/mask.pyi +29 -0
- jaclang/vendor/typeshed/stubs/pycountry/pycountry/__init__.pyi +63 -0
- jaclang/vendor/typeshed/stubs/pycountry/pycountry/db.pyi +45 -0
- jaclang/vendor/typeshed/stubs/pycurl/pycurl.pyi +739 -0
- jaclang/vendor/typeshed/stubs/pyfarmhash/farmhash.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/__main__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/api.pyi +17 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/checker.pyi +368 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/messages.pyi +148 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/reporter.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/scripts/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/scripts/pyflakes.pyi +8 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/@tests/test_cases/check_versioninfo.py +63 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/__main__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/api.pyi +176 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/build_main.pyi +55 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/datastruct.pyi +47 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/splash.pyi +47 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/compat.pyi +83 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/depend/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/depend/analysis.pyi +27 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/depend/imphookapi.pyi +71 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/isolated/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/isolated/_parent.pyi +19 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/lib/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/lib/modulegraph/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/lib/modulegraph/modulegraph.pyi +56 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi +76 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/hooks/conda.pyi +48 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/win32/versioninfo.pyi +99 -0
- jaclang/vendor/typeshed/stubs/pyinstaller/pyi_splash/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/pyjks/jks/__init__.pyi +48 -0
- jaclang/vendor/typeshed/stubs/pyjks/jks/bks.pyi +125 -0
- jaclang/vendor/typeshed/stubs/pyjks/jks/jks.pyi +129 -0
- jaclang/vendor/typeshed/stubs/pyjks/jks/rfc2898.pyi +5 -0
- jaclang/vendor/typeshed/stubs/pyjks/jks/rfc7292.pyi +29 -0
- jaclang/vendor/typeshed/stubs/pyjks/jks/sun_crypto.pyi +8 -0
- jaclang/vendor/typeshed/stubs/pyjks/jks/util.pyi +66 -0
- jaclang/vendor/typeshed/stubs/pyluach/pyluach/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pyluach/pyluach/dates.pyi +106 -0
- jaclang/vendor/typeshed/stubs/pyluach/pyluach/hebrewcal.pyi +141 -0
- jaclang/vendor/typeshed/stubs/pyluach/pyluach/parshios.pyi +14 -0
- jaclang/vendor/typeshed/stubs/pyluach/pyluach/utils.pyi +32 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/_info.pyi +2 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/_util.pyi +73 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/keyboard/__init__.pyi +32 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/keyboard/_base.pyi +135 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/keyboard/_dummy.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/mouse/__init__.pyi +32 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/mouse/_base.pyi +94 -0
- jaclang/vendor/typeshed/stubs/pynput/pynput/mouse/_dummy.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pyperclip/pyperclip/__init__.pyi +24 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/__init__.pyi +30 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/__main__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/rfc2217.pyi +187 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/rs485.pyi +18 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/serialcli.pyi +25 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/serialjava.pyi +30 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/serialposix.pyi +93 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/serialutil.pyi +152 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/serialwin32.pyi +26 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/threaded/__init__.pyi +51 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/hexlify_codec.pyi +23 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports.pyi +13 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_common.pyi +33 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_linux.pyi +11 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_osx.pyi +36 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_posix.pyi +11 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_windows.pyi +78 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/tools/miniterm.pyi +122 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_alt.pyi +3 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_cp2110.pyi +13 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_hwgrep.pyi +4 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_loop.pyi +32 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_rfc2217.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_socket.pyi +26 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_spy.pyi +34 -0
- jaclang/vendor/typeshed/stubs/pyserial/serial/win32.pyi +253 -0
- jaclang/vendor/typeshed/stubs/pysftp/pysftp/__init__.pyi +133 -0
- jaclang/vendor/typeshed/stubs/pysftp/pysftp/exceptions.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pysftp/pysftp/helpers.pyi +35 -0
- jaclang/vendor/typeshed/stubs/pytest-lazy-fixture/pytest_lazyfixture.pyi +14 -0
- jaclang/vendor/typeshed/stubs/python-crontab/cronlog.pyi +36 -0
- jaclang/vendor/typeshed/stubs/python-crontab/crontab.pyi +323 -0
- jaclang/vendor/typeshed/stubs/python-crontab/crontabs.pyi +24 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/@tests/test_cases/check_inheritance.py +21 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/@tests/test_cases/check_relativedelta.py +9 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/@tests/test_cases/check_rrule.py +13 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/_common.pyi +10 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/_version.pyi +6 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/easter.pyi +10 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/parser/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/parser/_parser.pyi +135 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/parser/isoparser.pyi +17 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/relativedelta.pyi +91 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/rrule.pyi +223 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tz/__init__.pyi +67 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tz/_common.pyi +33 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tz/tz.pyi +137 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tz/win.pyi +27 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tzwin.pyi +4 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/utils.pyi +5 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/zoneinfo/__init__.pyi +45 -0
- jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/zoneinfo/rebuild.pyi +8 -0
- jaclang/vendor/typeshed/stubs/python-http-client/python_http_client/__init__.pyi +20 -0
- jaclang/vendor/typeshed/stubs/python-http-client/python_http_client/client.pyi +32 -0
- jaclang/vendor/typeshed/stubs/python-http-client/python_http_client/exceptions.pyi +32 -0
- jaclang/vendor/typeshed/stubs/python-jenkins/jenkins/__init__.pyi +251 -0
- jaclang/vendor/typeshed/stubs/python-jenkins/jenkins/plugins.pyi +15 -0
- jaclang/vendor/typeshed/stubs/python-jenkins/jenkins/version.pyi +3 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/__init__.pyi +11 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/backends/__init__.pyi +18 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/backends/_asn1.pyi +17 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/backends/base.pyi +23 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/backends/cryptography_backend.pyi +66 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/backends/ecdsa_backend.pyi +25 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/backends/native.pyi +21 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/backends/rsa_backend.pyi +27 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/constants.pyi +75 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/exceptions.pyi +12 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/jwe.pyi +22 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/jwk.pyi +12 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/jws.pyi +24 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/jwt.pyi +29 -0
- jaclang/vendor/typeshed/stubs/python-jose/jose/utils.pyi +16 -0
- jaclang/vendor/typeshed/stubs/python-nmap/nmap/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/python-nmap/nmap/nmap.pyi +143 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/X.pyi +347 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/XK.pyi +7 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/Xatom.pyi +71 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/Xcursorfont.pyi +80 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/Xutil.pyi +59 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/__init__.pyi +14 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/_typing.pyi +9 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/display.pyi +163 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/error.pyi +57 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/__init__.pyi +35 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/composite.pyi +48 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/damage.pyi +41 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/dpms.pyi +48 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/ge.pyi +18 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/nvcontrol.pyi +1065 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/randr.pyi +262 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/record.pyi +115 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/res.pyi +62 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/screensaver.pyi +52 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/security.pyi +33 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/shape.pyi +62 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xfixes.pyi +50 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xinerama.pyi +37 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xinput.pyi +249 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xtest.pyi +28 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/__init__.pyi +43 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/apl.pyi +21 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/arabic.pyi +52 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/cyrillic.pyi +109 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/greek.pyi +76 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/hebrew.pyi +42 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/katakana.pyi +72 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/korean.pyi +109 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin1.pyi +197 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin2.pyi +59 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin3.pyi +24 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin4.pyi +38 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/miscellany.pyi +171 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/publishing.pyi +85 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/special.pyi +26 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/technical.pyi +51 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/thai.pyi +86 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/xf86.pyi +186 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/xk3270.pyi +32 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/xkb.pyi +102 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/display.pyi +117 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/event.pyi +83 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/request.pyi +133 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/rq.pyi +393 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/structs.pyi +26 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/rdb.pyi +98 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/connect.pyi +6 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/lock.pyi +8 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/unix_connect.pyi +25 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/vms_connect.pyi +11 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/threaded.pyi +4 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xauth.pyi +21 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/colormap.pyi +25 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/cursor.pyi +10 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/drawable.pyi +274 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/fontable.pyi +33 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/icccm.pyi +7 -0
- jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/resource.pyi +10 -0
- jaclang/vendor/typeshed/stubs/pytz/pytz/__init__.pyi +64 -0
- jaclang/vendor/typeshed/stubs/pytz/pytz/exceptions.pyi +7 -0
- jaclang/vendor/typeshed/stubs/pytz/pytz/lazy.pyi +20 -0
- jaclang/vendor/typeshed/stubs/pytz/pytz/reference.pyi +40 -0
- jaclang/vendor/typeshed/stubs/pytz/pytz/tzfile.pyi +5 -0
- jaclang/vendor/typeshed/stubs/pytz/pytz/tzinfo.pyi +43 -0
- jaclang/vendor/typeshed/stubs/pywin32/_win32typing.pyi +6171 -0
- jaclang/vendor/typeshed/stubs/pywin32/commctrl.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/dde.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/isapi/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pywin32/isapi/install.pyi +101 -0
- jaclang/vendor/typeshed/stubs/pywin32/isapi/isapicon.pyi +86 -0
- jaclang/vendor/typeshed/stubs/pywin32/isapi/simple.pyi +10 -0
- jaclang/vendor/typeshed/stubs/pywin32/isapi/threaded_extension.pyi +29 -0
- jaclang/vendor/typeshed/stubs/pywin32/mmapfile.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/mmsystem.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/ntsecuritycon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/odbc.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/perfmon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/pythoncom.pyi +497 -0
- jaclang/vendor/typeshed/stubs/pywin32/pythonwin/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/pythonwin/dde.pyi +33 -0
- jaclang/vendor/typeshed/stubs/pywin32/pythonwin/win32ui.pyi +374 -0
- jaclang/vendor/typeshed/stubs/pywin32/pythonwin/win32uiole.pyi +27 -0
- jaclang/vendor/typeshed/stubs/pywin32/pywintypes.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/regutil.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/servicemanager.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/sspicon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/timer.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win2kras.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/commctrl.pyi +1522 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/mmsystem.pyi +858 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/ntsecuritycon.pyi +554 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/pywintypes.pyi +57 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/regutil.pyi +26 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/sspicon.pyi +457 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win2kras.pyi +34 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32con.pyi +4913 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32cryptcon.pyi +1790 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32evtlogutil.pyi +25 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32gui_struct.pyi +198 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32inetcon.pyi +989 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32netcon.pyi +571 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32pdhquery.pyi +45 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32serviceutil.pyi +81 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32timezone.pyi +112 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/win32verstamp.pyi +21 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/winerror.pyi +7270 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/winioctlcon.pyi +661 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/winnt.pyi +1134 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/winperf.pyi +73 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/lib/winxptheme.pyi +25 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/mmapfile.pyi +6 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/odbc.pyi +32 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/perfmon.pyi +13 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/servicemanager.pyi +34 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/timer.pyi +6 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32api.pyi +368 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32clipboard.pyi +49 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32console.pyi +79 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32cred.pyi +91 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32crypt.pyi +107 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32event.pyi +69 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32evtlog.pyi +272 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32file.pyi +475 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32gui.pyi +561 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32help.pyi +180 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32inet.pyi +69 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32job.pyi +74 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32lz.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32net.pyi +94 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32pdh.pyi +62 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32pipe.pyi +64 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32print.pyi +201 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32process.pyi +124 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32profile.pyi +19 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32ras.pyi +56 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32security.pyi +598 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32service.pyi +187 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32trace.pyi +13 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32transaction.pyi +18 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32ts.pyi +97 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/win32wnet.pyi +36 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32/winxpgui.pyi +5 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32api.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32clipboard.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/adsi/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/adsi/adsi.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/adsi/adsicon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/authorization/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/authorization/authorization.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axcontrol/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axcontrol/axcontrol.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/adb.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/axdebug.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/codecontainer.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/contexts.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/debugger.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/documents.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/expressions.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/gateways.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/stackframe.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/util.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/asputil.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/axscript.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/debug.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/error.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/framework.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/server/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/server/axsite.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/bits/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/bits/bits.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/client/__init__.pyi +76 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/client/build.pyi +36 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/client/dynamic.pyi +70 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/client/gencache.pyi +5 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/directsound/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/directsound/directsound.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/gen_py/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/ifilter/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/ifilter/ifilter.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/ifilter/ifiltercon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/internet/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/internet/inetcon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/internet/internet.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/emsabtags.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/exchange.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/mapi.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/mapitags.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/mapiutil.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/olectl.pyi +54 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/propsys/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/propsys/propsys.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/propsys/pscon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/connect.pyi +15 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/dispatcher.pyi +18 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/exception.pyi +23 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/factory.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/localserver.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/policy.pyi +43 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/register.pyi +68 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/server/util.pyi +39 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/shell/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/shell/shell.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/shell/shellcon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/storagecon.pyi +113 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/taskscheduler/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/taskscheduler/taskscheduler.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/universal.pyi +36 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32com/util.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/adsi/__init__.pyi +77 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/adsi/adsi.pyi +58 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/adsi/adsicon.pyi +318 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/authorization/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/authorization/authorization.pyi +5 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axcontrol/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axcontrol/axcontrol.pyi +61 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/adb.pyi +71 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/axdebug.pyi +122 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/codecontainer.pyi +42 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/contexts.pyi +18 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/debugger.pyi +56 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/documents.pyi +30 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/expressions.pyi +67 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/gateways.pyi +114 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/stackframe.pyi +33 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/util.pyi +11 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/asputil.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/axscript.pyi +52 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/debug.pyi +42 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/error.pyi +35 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/framework.pyi +154 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/server/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/server/axsite.pyi +32 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/bits/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/bits/bits.pyi +61 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/directsound/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/directsound/directsound.pyi +116 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/ifilter/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/ifilter/ifilter.pyi +33 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/ifilter/ifiltercon.pyi +103 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/internet/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/internet/inetcon.pyi +254 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/internet/internet.pyi +51 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/emsabtags.pyi +865 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/exchange.pyi +9 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/mapi.pyi +342 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/mapitags.pyi +991 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/mapiutil.pyi +15 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/propsys/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/propsys/propsys.pyi +61 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/propsys/pscon.pyi +695 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/shell/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/shell/shell.pyi +438 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/shell/shellcon.pyi +1413 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/taskscheduler/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32comext/taskscheduler/taskscheduler.pyi +83 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32con.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32console.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32cred.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32crypt.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32cryptcon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32event.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32evtlog.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32evtlogutil.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32file.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32gui.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32gui_struct.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32help.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32inet.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32inetcon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32job.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32lz.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32net.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32netcon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32pdh.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32pdhquery.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32pipe.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32print.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32process.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32profile.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32ras.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32security.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32service.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32serviceutil.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32timezone.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32trace.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32transaction.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32ts.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32ui.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32uiole.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32verstamp.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/win32wnet.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/winerror.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/winioctlcon.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/winnt.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/winperf.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/winxpgui.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pywin32/winxptheme.pyi +1 -0
- jaclang/vendor/typeshed/stubs/pyxdg/@tests/test_cases/check_IniFile.py +279 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/BaseDirectory.pyi +18 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/Config.pyi +13 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/DesktopEntry.pyi +65 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/Exceptions.pyi +41 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/IconTheme.pyi +55 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/IniFile.pyi +254 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/Locale.pyi +8 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/Menu.pyi +167 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/MenuEditor.pyi +146 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/Mime.pyi +102 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/RecentFiles.pyi +26 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/pyxdg/xdg/util.pyi +6 -0
- jaclang/vendor/typeshed/stubs/qrbill/qrbill/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/qrbill/qrbill/bill.pyi +190 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/LUT.pyi +3 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/__init__.pyi +22 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/_types.pyi +15 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/base.pyi +27 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/console_scripts.pyi +12 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/constants.pyi +6 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/exceptions.pyi +1 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/base.pyi +67 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/pil.pyi +30 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/pure.pyi +23 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styledpil.pyi +56 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/colormasks.pyi +64 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/base.pyi +12 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/pil.pyi +66 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/svg.pyi +56 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/svg.pyi +66 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/main.pyi +133 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/release.pyi +1 -0
- jaclang/vendor/typeshed/stubs/qrcode/qrcode/util.pyi +69 -0
- jaclang/vendor/typeshed/stubs/ratelimit/ratelimit/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/ratelimit/ratelimit/decorators.pyi +14 -0
- jaclang/vendor/typeshed/stubs/ratelimit/ratelimit/exception.pyi +3 -0
- jaclang/vendor/typeshed/stubs/regex/@tests/test_cases/check_finditer.py +11 -0
- jaclang/vendor/typeshed/stubs/regex/regex/__init__.pyi +64 -0
- jaclang/vendor/typeshed/stubs/regex/regex/_main.pyi +713 -0
- jaclang/vendor/typeshed/stubs/regex/regex/_regex.pyi +26 -0
- jaclang/vendor/typeshed/stubs/regex/regex/_regex_core.pyi +131 -0
- jaclang/vendor/typeshed/stubs/reportlab/@tests/test_cases/check_tables.py +199 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/__init__.pyi +11 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/code128.pyi +33 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/code39.pyi +32 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/code93.pyi +28 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/common.pyi +124 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/dmtx.pyi +68 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/eanbc.pyi +43 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/ecc200datamatrix.pyi +24 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/fourstate.pyi +0 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/lto.pyi +35 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/qr.pyi +55 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/qrencoder.pyi +202 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/usps.pyi +36 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/usps4s.pyi +87 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/widgets.pyi +80 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/areas.pyi +19 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/axes.pyi +205 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/barcharts.pyi +105 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/dotbox.pyi +24 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/doughnut.pyi +35 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/legends.pyi +101 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/linecharts.pyi +67 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/lineplots.pyi +119 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/markers.pyi +10 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/piecharts.pyi +183 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/slidebox.pyi +38 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/spider.pyi +60 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/textlabels.pyi +66 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/utils.pyi +45 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/utils3d.pyi +26 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderPDF.pyi +39 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderPM.pyi +132 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderPS.pyi +73 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderSVG.pyi +107 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderbase.pyi +39 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/bubble.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/clustered_bar.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/clustered_column.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/excelcolors.pyi +33 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/exploded_pie.pyi +8 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/filled_radar.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/line_chart.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/linechart_with_markers.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/radar.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/runall.pyi +3 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/scatter.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/scatter_lines.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/scatter_lines_markers.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/simple_pie.pyi +8 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/stacked_bar.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/stacked_column.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/shapes.pyi +381 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/svgpath.pyi +10 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/transform.pyi +27 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/utils.pyi +22 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgetbase.pyi +111 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/adjustableArrow.pyi +11 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/eventcal.pyi +29 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/flags.pyi +32 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/grids.pyi +76 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/markers.pyi +21 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/signsandsymbols.pyi +164 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/table.pyi +32 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/PyFontify.pyi +21 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/abag.pyi +11 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/arciv.pyi +9 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/attrmap.pyi +26 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/boxstuff.pyi +6 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/codecharts.pyi +80 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/colors.pyi +319 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/corp.pyi +79 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/enums.pyi +7 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/extformat.pyi +6 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/fontfinder.pyi +53 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/fonts.pyi +10 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/formatters.pyi +19 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/geomutils.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/logger.pyi +24 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/normalDate.pyi +82 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/pagesizes.pyi +51 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/pdfencrypt.pyi +133 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/pygments2xpre.pyi +3 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/randomtext.pyi +19 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/rl_accel.pyi +27 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/rl_safe_eval.pyi +237 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/rltempfile.pyi +4 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/rparsexml.pyi +34 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/sequencer.pyi +29 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/styles.pyi +183 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/testutils.pyi +72 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/textsplit.pyi +19 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/units.pyi +9 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/utils.pyi +206 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/validators.pyi +169 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/lib/yaml.pyi +26 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/acroform.pyi +214 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/cidfonts.pyi +51 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfdoc.pyi +612 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfform.pyi +81 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfmetrics.pyi +88 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfpattern.pyi +21 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfutils.pyi +15 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/rl_codecs.pyi +24 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/ttfonts.pyi +186 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/canvas.pyi +271 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/pathobject.pyi +17 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/pdfgeom.pyi +5 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/pdfimages.pyi +36 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/textobject.pyi +72 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/doctemplate.pyi +276 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/figures.pyi +108 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/flowables.pyi +472 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/frames.pyi +38 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/multicol.pyi +19 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/para.pyi +274 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/paragraph.pyi +40 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/paraparser.pyi +117 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/tableofcontents.pyi +110 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/tables.pyi +134 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/xpreformatted.pyi +32 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/rl_config.pyi +72 -0
- jaclang/vendor/typeshed/stubs/reportlab/reportlab/rl_settings.pyi +140 -0
- jaclang/vendor/typeshed/stubs/requests/@tests/test_cases/check_post.py +56 -0
- jaclang/vendor/typeshed/stubs/requests/requests/__init__.pyi +39 -0
- jaclang/vendor/typeshed/stubs/requests/requests/__version__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/requests/requests/adapters.pyi +111 -0
- jaclang/vendor/typeshed/stubs/requests/requests/api.pyi +154 -0
- jaclang/vendor/typeshed/stubs/requests/requests/auth.pyi +39 -0
- jaclang/vendor/typeshed/stubs/requests/requests/certs.pyi +1 -0
- jaclang/vendor/typeshed/stubs/requests/requests/compat.pyi +27 -0
- jaclang/vendor/typeshed/stubs/requests/requests/cookies.pyi +62 -0
- jaclang/vendor/typeshed/stubs/requests/requests/exceptions.pyi +42 -0
- jaclang/vendor/typeshed/stubs/requests/requests/help.pyi +40 -0
- jaclang/vendor/typeshed/stubs/requests/requests/hooks.pyi +6 -0
- jaclang/vendor/typeshed/stubs/requests/requests/models.pyi +169 -0
- jaclang/vendor/typeshed/stubs/requests/requests/packages.pyi +3 -0
- jaclang/vendor/typeshed/stubs/requests/requests/sessions.pyi +314 -0
- jaclang/vendor/typeshed/stubs/requests/requests/status_codes.pyi +3 -0
- jaclang/vendor/typeshed/stubs/requests/requests/structures.pyi +25 -0
- jaclang/vendor/typeshed/stubs/requests/requests/utils.pyi +70 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/douban.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/ebay.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/facebook.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/fitbit.pyi +3 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/instagram.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/mailchimp.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/plentymarkets.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/slack.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/weibo.pyi +7 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth1_auth.pyi +35 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth1_session.pyi +66 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth2_auth.pyi +5 -0
- jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth2_session.pyi +142 -0
- jaclang/vendor/typeshed/stubs/retry/retry/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/retry/retry/api.pyi +30 -0
- jaclang/vendor/typeshed/stubs/rfc3339-validator/rfc3339_validator.pyi +10 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/build.pyi +5 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/common_pb2.pyi +177 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/data_pb2.pyi +615 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/debug_pb2.pyi +501 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/error_pb2.pyi +459 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/query_pb2.pyi +228 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/raw_pb2.pyi +1024 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/sc2api_pb2.pyi +2896 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/score_pb2.pyi +406 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/spatial_pb2.pyi +712 -0
- jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/ui_pb2.pyi +681 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/__init__.pyi +13 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/data.pyi +26 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/exceptions.pyi +1 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/groupby.pyi +32 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/moves.pyi +44 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/plot.pyi +153 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/properties.pyi +98 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/rules.pyi +14 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/scales.pyi +100 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/subplots.pyi +19 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/typing.pyi +32 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/area.pyi +28 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/bar.pyi +31 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/base.pyi +38 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/dot.pyi +39 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/line.pyi +42 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/text.pyi +14 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/aggregation.pyi +19 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/base.pyi +11 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/counting.pyi +19 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/density.pyi +15 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/order.pyi +8 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/regression.pyi +11 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/algorithms.pyi +28 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/axisgrid.pyi +402 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/categorical.pyi +294 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/cm.pyi +15 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/colors/__init__.pyi +2 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/colors/crayons.pyi +1 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/colors/xkcd_rgb.pyi +1 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/distributions.pyi +171 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/appdirs.pyi +9 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/docscrape.pyi +68 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/husl.pyi +42 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/kde.pyi +44 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/version.pyi +45 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/matrix.pyi +219 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/miscplot.pyi +9 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/objects.pyi +21 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/palettes.pyi +149 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/rcmod.pyi +74 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/regression.pyi +162 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/relational.pyi +103 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/utils.pyi +113 -0
- jaclang/vendor/typeshed/stubs/seaborn/seaborn/widgets.pyi +36 -0
- jaclang/vendor/typeshed/stubs/setuptools/@tests/test_cases/check_distutils.py +31 -0
- jaclang/vendor/typeshed/stubs/setuptools/@tests/test_cases/check_extension.py +15 -0
- jaclang/vendor/typeshed/stubs/setuptools/@tests/test_cases/check_protocols.py +19 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/_modified.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/_msvccompiler.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/archive_util.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/ccompiler.pyi +12 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/cmd.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/__init__.pyi +39 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/bdist.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/bdist_rpm.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build_clib.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build_ext.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build_py.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install_data.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install_lib.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install_scripts.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/command/sdist.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/compat/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/base.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/errors.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/msvc.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/unix.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/dep_util.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/dist.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/errors.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/extension.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/filelist.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/spawn.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/sysconfig.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/unixccompiler.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/distutils/util.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/__init__.pyi +219 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/_modified.pyi +17 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/_msvccompiler.pyi +5 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/archive_util.pyi +35 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/ccompiler.pyi +15 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/cmd.pyi +117 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/__init__.pyi +39 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist.pyi +26 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist_rpm.pyi +53 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build.pyi +30 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build_clib.pyi +27 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build_ext.pyi +49 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build_py.pyi +39 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install.pyi +60 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install_data.pyi +20 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install_lib.pyi +24 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install_scripts.pyi +19 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/sdist.pyi +46 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compat/__init__.pyi +6 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/base.pyi +196 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/errors.pyi +6 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/msvc.pyi +19 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/unix.pyi +16 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/dep_util.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/dist.pyi +176 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/errors.pyi +25 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/extension.pyi +39 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/filelist.pyi +38 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/spawn.pyi +12 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/sysconfig.pyi +22 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/unixccompiler.pyi +3 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/util.pyi +38 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/archive_util.pyi +24 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/build_meta.pyi +64 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/alias.pyi +19 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/bdist_egg.pyi +61 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/bdist_rpm.pyi +7 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/bdist_wheel.pyi +54 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build.pyi +18 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build_clib.pyi +8 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build_ext.pyi +51 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build_py.pyi +43 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/develop.pyi +24 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/dist_info.pyi +12 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/easy_install.pyi +11 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/editable_wheel.pyi +79 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/egg_info.pyi +84 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install.pyi +21 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install_egg_info.pyi +17 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install_lib.pyi +20 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install_scripts.pyi +11 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/rotate.pyi +15 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/saveopts.pyi +5 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/sdist.pyi +24 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/setopt.pyi +33 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/test.pyi +17 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/expand.pyi +50 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/pyprojecttoml.pyi +46 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/setupcfg.pyi +84 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/depends.pyi +20 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/discovery.pyi +43 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/dist.pyi +195 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/errors.pyi +24 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/extension.pyi +32 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/glob.pyi +5 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/installer.pyi +16 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/launch.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/logging.pyi +2 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/modified.pyi +3 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/monkey.pyi +15 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/msvc.pyi +166 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/namespaces.pyi +10 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/unicode_utils.pyi +3 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/version.pyi +1 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/warnings.pyi +19 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/wheel.pyi +17 -0
- jaclang/vendor/typeshed/stubs/setuptools/setuptools/windows_support.pyi +2 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/__init__.pyi +35 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/_coverage.pyi +15 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/_enum.pyi +5 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/_geometry.pyi +189 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/_ragged_array.pyi +14 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/_typing.pyi +58 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/_version.pyi +6 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/affinity.pyi +23 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/algorithms/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/algorithms/cga.pyi +5 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/algorithms/polylabel.pyi +3 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/constructive.pyi +547 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/coordinates.pyi +51 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/coords.pyi +18 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/creation.pyi +295 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/decorators.pyi +12 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/errors.pyi +17 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/__init__.pyi +25 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/base.pyi +291 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/collection.pyi +19 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/geo.pyi +9 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/linestring.pyi +46 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/multilinestring.pyi +16 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/multipoint.pyi +21 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/multipolygon.pyi +23 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/point.pyi +42 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/polygon.pyi +47 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/geos.pyi +3 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/io.pyi +157 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/lib.pyi +180 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/linear.pyi +69 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/measurement.pyi +68 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/ops.pyi +100 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/plotting.pyi +76 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/predicates.pyi +246 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/prepared.pyi +20 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/set_operations.pyi +96 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/speedups.pyi +12 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/strtree.pyi +82 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/testing.pyi +14 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/validation.pyi +7 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/vectorized/__init__.pyi +46 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/wkb.pyi +16 -0
- jaclang/vendor/typeshed/stubs/shapely/shapely/wkt.pyi +8 -0
- jaclang/vendor/typeshed/stubs/simple-websocket/simple_websocket/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/simple-websocket/simple_websocket/aiows.pyi +130 -0
- jaclang/vendor/typeshed/stubs/simple-websocket/simple_websocket/asgi.pyi +44 -0
- jaclang/vendor/typeshed/stubs/simple-websocket/simple_websocket/errors.pyi +12 -0
- jaclang/vendor/typeshed/stubs/simple-websocket/simple_websocket/ws.pyi +136 -0
- jaclang/vendor/typeshed/stubs/simplejson/@tests/test_cases/check_simplejson.py +16 -0
- jaclang/vendor/typeshed/stubs/simplejson/simplejson/__init__.pyi +182 -0
- jaclang/vendor/typeshed/stubs/simplejson/simplejson/decoder.pyi +32 -0
- jaclang/vendor/typeshed/stubs/simplejson/simplejson/encoder.pyi +60 -0
- jaclang/vendor/typeshed/stubs/simplejson/simplejson/errors.pyi +16 -0
- jaclang/vendor/typeshed/stubs/simplejson/simplejson/raw_json.pyi +3 -0
- jaclang/vendor/typeshed/stubs/simplejson/simplejson/scanner.pyi +17 -0
- jaclang/vendor/typeshed/stubs/singledispatch/singledispatch.pyi +34 -0
- jaclang/vendor/typeshed/stubs/six/six/__init__.pyi +112 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/BaseHTTPServer.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/CGIHTTPServer.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/SimpleHTTPServer.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/__init__.pyi +65 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/_dummy_thread.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/_thread.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/builtins.pyi +3 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/cPickle.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/collections_abc.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/configparser.pyi +3 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/copyreg.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_base.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_multipart.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_nonmultipart.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_text.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/html_entities.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/html_parser.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/http_client.pyi +61 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/http_cookiejar.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/http_cookies.pyi +3 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/queue.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/reprlib.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/socketserver.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/tkinter.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_commondialog.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_constants.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_dialog.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_filedialog.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_tkfiledialog.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_ttk.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib/error.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib/parse.pyi +30 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib/request.pyi +44 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib/response.pyi +8 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib/robotparser.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib_error.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib_parse.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib_request.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib_response.pyi +1 -0
- jaclang/vendor/typeshed/stubs/six/six/moves/urllib_robotparser.pyi +1 -0
- jaclang/vendor/typeshed/stubs/slumber/slumber/__init__.pyi +37 -0
- jaclang/vendor/typeshed/stubs/slumber/slumber/exceptions.pyi +13 -0
- jaclang/vendor/typeshed/stubs/slumber/slumber/serialize.pyi +28 -0
- jaclang/vendor/typeshed/stubs/slumber/slumber/utils.pyi +10 -0
- jaclang/vendor/typeshed/stubs/str2bool/str2bool/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/tabulate/tabulate/__init__.pyi +66 -0
- jaclang/vendor/typeshed/stubs/tabulate/tabulate/version.pyi +6 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/__init__.pyi +437 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/_aliases.pyi +70 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/audio.pyi +7 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/autodiff.pyi +63 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/autograph/__init__.pyi +17 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/autograph/experimental.pyi +30 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/bitwise.pyi +37 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/service/hlo_pb2.pyi +2113 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/service/hlo_profile_printer_data_pb2.pyi +187 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/service/metrics_pb2.pyi +283 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/service/test_compilation_environment_pb2.pyi +59 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/service/xla_compile_result_pb2.pyi +167 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/tsl/protobuf/bfc_memory_map_pb2.pyi +218 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/tsl/protobuf/test_log_pb2.pyi +707 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/xla_data_pb2.pyi +2681 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/compiler/xla/xla_pb2.pyi +2558 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/config/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/config/experimental.pyi +16 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/example/example_parser_configuration_pb2.pyi +153 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/example/example_pb2.pyi +330 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/example/feature_pb2.pyi +222 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/allocation_description_pb2.pyi +64 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/api_def_pb2.pyi +312 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/attr_value_pb2.pyi +274 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/cost_graph_pb2.pyi +229 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/cpp_shape_inference_pb2.pyi +110 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/dataset_metadata_pb2.pyi +25 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/dataset_options_pb2.pyi +720 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/dataset_pb2.pyi +116 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/device_attributes_pb2.pyi +140 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/full_type_pb2.pyi +617 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/function_pb2.pyi +309 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/graph_debug_info_pb2.pyi +210 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/graph_pb2.pyi +100 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/graph_transfer_info_pb2.pyi +290 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/kernel_def_pb2.pyi +116 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/log_memory_pb2.pyi +218 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/model_pb2.pyi +368 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/node_def_pb2.pyi +192 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/op_def_pb2.pyi +391 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/optimized_function_graph_pb2.pyi +166 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/reader_base_pb2.pyi +52 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/resource_handle_pb2.pyi +104 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/step_stats_pb2.pyi +332 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/summary_pb2.pyi +368 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/tensor_description_pb2.pyi +49 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/tensor_pb2.pyi +235 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/tensor_shape_pb2.pyi +74 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/tensor_slice_pb2.pyi +56 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/types_pb2.pyi +220 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/variable_pb2.pyi +229 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/framework/versions_pb2.pyi +57 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/bfc_memory_map_pb2.pyi +15 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/cluster_pb2.pyi +126 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/composite_tensor_variant_pb2.pyi +33 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/config_pb2.pyi +1867 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/control_flow_pb2.pyi +243 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/core_platform_payloads_pb2.pyi +66 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/data_service_pb2.pyi +243 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/debug_event_pb2.pyi +746 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/debug_pb2.pyi +199 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/device_filters_pb2.pyi +124 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/device_properties_pb2.pyi +154 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/error_codes_pb2.pyi +33 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/fingerprint_pb2.pyi +76 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/meta_graph_pb2.pyi +735 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/named_tensor_pb2.pyi +41 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/queue_runner_pb2.pyi +73 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/remote_tensor_handle_pb2.pyi +96 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/rewriter_config_pb2.pyi +588 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/rpc_options_pb2.pyi +9 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/saved_model_pb2.pyi +51 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/saved_object_graph_pb2.pyi +715 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/saver_pb2.pyi +113 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/service_config_pb2.pyi +275 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/snapshot_pb2.pyi +164 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/status_pb2.pyi +13 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/struct_pb2.pyi +536 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/tensor_bundle_pb2.pyi +160 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/tensorflow_server_pb2.pyi +125 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/tpu/compilation_result_pb2.pyi +85 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/tpu/dynamic_padding_pb2.pyi +47 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/tpu/optimization_parameters_pb2.pyi +1326 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/tpu/topology_pb2.pyi +149 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/tpu/tpu_embedding_configuration_pb2.pyi +326 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/trackable_object_graph_pb2.pyi +213 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/transport_options_pb2.pyi +28 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/protobuf/verifier_config_pb2.pyi +65 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/util/event_pb2.pyi +419 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/util/memmapped_file_system_pb2.pyi +65 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/util/saved_tensor_slice_pb2.pyi +171 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/core/util/test_log_pb2.pyi +24 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/data/__init__.pyi +272 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/data/experimental.pyi +32 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/distribute/__init__.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/distribute/coordinator.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/distribute/experimental/coordinator.pyi +11 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/dtypes.pyi +57 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/experimental/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/experimental/dtensor.pyi +19 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/feature_column/__init__.pyi +95 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/initializers.pyi +1 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/io/__init__.pyi +104 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/io/gfile.pyi +11 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/activations.pyi +35 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/callbacks.pyi +170 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/constraints.pyi +16 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/initializers.pyi +50 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/layers/__init__.pyi +446 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/losses.pyi +177 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/metrics.pyi +117 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/models.pyi +167 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/optimizers/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/optimizers/legacy/__init__.pyi +61 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/optimizers/schedules.pyi +103 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/keras/regularizers.pyi +21 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/linalg.pyi +55 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/math.pyi +298 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/nn.pyi +194 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/distribute/distribute_lib.pyi +5 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/feature_column/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/feature_column/feature_column_v2.pyi +273 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/feature_column/sequence_feature_column.pyi +30 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/framework/dtypes.pyi +7 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/keras/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/keras/protobuf/projector_config_pb2.pyi +129 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/keras/protobuf/saved_metadata_pb2.pyi +89 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/keras/protobuf/versions_pb2.pyi +63 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/trackable/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/trackable/autotrackable.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/trackable/base.pyi +5 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/trackable/resource.pyi +9 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/trackable/ressource.pyi +7 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/python/training/tracking/autotrackable.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/random.pyi +231 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/raw_ops.pyi +44 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/saved_model/__init__.pyi +125 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/saved_model/experimental.pyi +39 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/signal.pyi +6 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/sparse.pyi +31 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/strings.pyi +241 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/summary.pyi +58 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/train/__init__.pyi +74 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/train/experimental.pyi +12 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/coordination_config_pb2.pyi +156 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/coordination_service_pb2.pyi +666 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/distributed_runtime_payloads_pb2.pyi +69 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/dnn_pb2.pyi +619 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/error_codes_pb2.pyi +291 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/histogram_pb2.pyi +78 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/rpc_options_pb2.pyi +85 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/tsl/protobuf/status_pb2.pyi +34 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/types/__init__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/tensorflow/tensorflow/types/experimental.pyi +30 -0
- jaclang/vendor/typeshed/stubs/toml/toml/__init__.pyi +18 -0
- jaclang/vendor/typeshed/stubs/toml/toml/decoder.pyi +70 -0
- jaclang/vendor/typeshed/stubs/toml/toml/encoder.pyi +45 -0
- jaclang/vendor/typeshed/stubs/toml/toml/ordered.pyi +11 -0
- jaclang/vendor/typeshed/stubs/toml/toml/tz.pyi +10 -0
- jaclang/vendor/typeshed/stubs/toposort/toposort.pyi +20 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/__init__.pyi +41 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_dist_ver.pyi +0 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_main.pyi +2 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_monitor.pyi +18 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm.pyi +2 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm_gui.pyi +2 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm_notebook.pyi +2 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm_pandas.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/_utils.pyi +10 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/asyncio.pyi +210 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/auto.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/autonotebook.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/cli.pyi +5 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/__init__.pyi +15 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/bells.pyi +3 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/concurrent.pyi +4 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/discord.pyi +101 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/itertools.pyi +6 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/logging.pyi +19 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/slack.pyi +95 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/telegram.pyi +101 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/utils_worker.pyi +16 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/dask.pyi +30 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/gui.pyi +92 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/keras.pyi +44 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/notebook.pyi +101 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/rich.pyi +108 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/std.pyi +296 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/tk.pyi +93 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/utils.pyi +59 -0
- jaclang/vendor/typeshed/stubs/tqdm/tqdm/version.pyi +1 -0
- jaclang/vendor/typeshed/stubs/translationstring/translationstring/__init__.pyi +88 -0
- jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/_imgops.pyi +7 -0
- jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/_utils.pyi +8 -0
- jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/_widget.pyi +26 -0
- jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/themed_style.pyi +12 -0
- jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/themed_tk.pyi +76 -0
- jaclang/vendor/typeshed/stubs/tzdata/tzdata/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/uWSGI/uwsgi.pyi +241 -0
- jaclang/vendor/typeshed/stubs/uWSGI/uwsgidecorators.pyi +180 -0
- jaclang/vendor/typeshed/stubs/ujson/ujson.pyi +52 -0
- jaclang/vendor/typeshed/stubs/unidiff/unidiff/__init__.pyi +12 -0
- jaclang/vendor/typeshed/stubs/unidiff/unidiff/__version__.pyi +1 -0
- jaclang/vendor/typeshed/stubs/unidiff/unidiff/constants.pyi +24 -0
- jaclang/vendor/typeshed/stubs/unidiff/unidiff/errors.pyi +1 -0
- jaclang/vendor/typeshed/stubs/unidiff/unidiff/patch.pyi +115 -0
- jaclang/vendor/typeshed/stubs/untangle/untangle.pyi +37 -0
- jaclang/vendor/typeshed/stubs/usersettings/usersettings.pyi +14 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/__init__.pyi +5 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/base.pyi +163 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/behavior.pyi +33 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/change_tz.pyi +20 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/hcalendar.pyi +6 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/icalendar.pyi +236 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/ics_diff.pyi +13 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/vcard.pyi +117 -0
- jaclang/vendor/typeshed/stubs/vobject/vobject/win32tz.pyi +44 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/__init__.pyi +18 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/adjustments.pyi +65 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/buffers.pyi +56 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/channel.pyi +52 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/compat.pyi +7 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/parser.pyi +44 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/proxy_headers.pyi +37 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/receiver.pyi +31 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/rfc7230.pyi +28 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/runner.pyi +10 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/server.pyi +109 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/task.pyi +72 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/trigger.pyi +31 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/utilities.pyi +68 -0
- jaclang/vendor/typeshed/stubs/waitress/waitress/wasyncore.pyi +88 -0
- jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/__init__.pyi +10 -0
- jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/ast_monkey.pyi +3 -0
- jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/util.pyi +6 -0
- jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/watch.pyi +69 -0
- jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/watch_element.pyi +56 -0
- jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/watch_print.pyi +24 -0
- jaclang/vendor/typeshed/stubs/webencodings/webencodings/__init__.pyi +33 -0
- jaclang/vendor/typeshed/stubs/webencodings/webencodings/labels.pyi +3 -0
- jaclang/vendor/typeshed/stubs/webencodings/webencodings/mklabels.pyi +5 -0
- jaclang/vendor/typeshed/stubs/webencodings/webencodings/x_user_defined.pyi +21 -0
- jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/__init__.pyi +4 -0
- jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/apply.pyi +8 -0
- jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/exceptions.pyi +14 -0
- jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/patch.pyi +90 -0
- jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/snippets.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/__init__.pyi +25 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/algeria.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/angola.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/benin.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/ivory_coast.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/kenya.pyi +8 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/madagascar.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/mozambique.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/nigeria.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/sao_tome.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/south_africa.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/tunisia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/__init__.pyi +174 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/argentina.pyi +12 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/barbados.pyi +10 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/brazil.pyi +93 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/canada.pyi +45 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/chile.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/colombia.pyi +14 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/el_salvador.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/mexico.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/panama.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/paraguay.pyi +8 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/__init__.pyi +27 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/china.pyi +11 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/hong_kong.pyi +4 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/israel.pyi +10 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/japan.pyi +4 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/kazakhstan.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/malaysia.pyi +8 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/philippines.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/qatar.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/singapore.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/south_korea.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/taiwan.pyi +12 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/astronomy.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/core.pyi +219 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/__init__.pyi +279 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/austria.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/belarus.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/belgium.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/bulgaria.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/cayman_islands.pyi +13 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/croatia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/cyprus.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/czech_republic.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/denmark.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/estonia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/european_central_bank.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/finland.pyi +8 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/france.pyi +4 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/georgia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/germany.pyi +34 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/greece.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/guernsey.pyi +9 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/hungary.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/iceland.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/ireland.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/italy.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/latvia.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/lithuania.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/luxembourg.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/malta.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/monaco.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/netherlands.pyi +32 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/norway.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/poland.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/portugal.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/romania.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/russia.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/__init__.pyi +76 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/__init__.pyi +65 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/autumn_holiday.pyi +18 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/fair_holiday.pyi +27 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/spring_holiday.pyi +20 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/victoria_day.pyi +15 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/serbia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/slovakia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/slovenia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/spain.pyi +20 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/sweden.pyi +8 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/switzerland.pyi +40 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/turkey.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/ukraine.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/united_kingdom.pyi +12 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/exceptions.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/__init__.pyi +31 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/australia.pyi +48 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/marshall_islands.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/new_zealand.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/precomputed_astronomy.pyi +15 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/registry.pyi +18 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/registry_tools.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/skyfield_astronomy.pyi +15 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/__init__.pyi +142 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/alabama.pyi +10 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/alaska.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/american_samoa.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/arizona.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/arkansas.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/california.pyi +11 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/colorado.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/connecticut.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/core.pyi +49 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/delaware.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/district_columbia.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/florida.pyi +26 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/georgia.pyi +9 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/guam.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/hawaii.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/idaho.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/illinois.pyi +8 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/indiana.pyi +9 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/iowa.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/kansas.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/kentucky.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/louisiana.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/maine.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/maryland.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/massachusetts.pyi +4 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/michigan.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/minnesota.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/mississippi.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/missouri.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/montana.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/nebraska.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/nevada.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_hampshire.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_jersey.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_mexico.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_york.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/north_carolina.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/north_dakota.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/ohio.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/oklahoma.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/oregon.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/pennsylvania.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/rhode_island.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/south_carolina.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/south_dakota.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/tennessee.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/texas.pyi +12 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/utah.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/vermont.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/virginia.pyi +6 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/washington.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/west_virginia.pyi +7 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/wisconsin.pyi +3 -0
- jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/wyoming.pyi +3 -0
- jaclang/vendor/typeshed/stubs/wurlitzer/wurlitzer.pyi +150 -0
- jaclang/vendor/typeshed/stubs/www-authenticate/www_authenticate.pyi +34 -0
- jaclang/vendor/typeshed/stubs/xdgenvpy/xdgenvpy/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/xdgenvpy/xdgenvpy/_defaults.pyi +7 -0
- jaclang/vendor/typeshed/stubs/xdgenvpy/xdgenvpy/xdgenv.pyi +35 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/__init__.pyi +41 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/biffh.pyi +176 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/book.pyi +151 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/compdoc.pyi +54 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/formatting.pyi +111 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/formula.pyi +87 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/info.pyi +4 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/sheet.pyi +176 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/timemachine.pyi +19 -0
- jaclang/vendor/typeshed/stubs/xlrd/xlrd/xldate.pyi +24 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/actions.pyi +58 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/diff.pyi +36 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/diff_match_patch.pyi +58 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/formatting.pyi +80 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/main.pyi +70 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/patch.pyi +12 -0
- jaclang/vendor/typeshed/stubs/xmldiff/xmldiff/utils.pyi +16 -0
- jaclang/vendor/typeshed/stubs/xmltodict/xmltodict.pyi +122 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/YoutubeDL.pyi +126 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/__init__.pyi +250 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/aes.pyi +42 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/cache.pyi +21 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/compat/__init__.pyi +14 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/compat/compat_utils.pyi +21 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/compat/imghdr.pyi +3 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/cookies.pyi +104 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/__init__.pyi +31 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/bunnycdn.pyi +17 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/common.pyi +87 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/dash.pyi +8 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/external.pyi +60 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/f4m.pyi +32 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/fc2.pyi +3 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/fragment.pyi +37 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/hls.pyi +7 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/http.pyi +3 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/ism.pyi +29 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/mhtml.pyi +3 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/niconico.pyi +3 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/rtmp.pyi +5 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/rtsp.pyi +5 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/websocket.pyi +11 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/downloader/youtube_live_chat.pyi +9 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/extractor/__init__.pyi +8 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/extractor/common.pyi +884 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/extractor/commonmistakes.pyi +12 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/extractor/commonprotocols.pyi +12 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/globals.pyi +31 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/jsinterp.pyi +72 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/minicurses.pyi +23 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/networking/__init__.pyi +9 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/networking/_helper.pyi +47 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/networking/common.pyi +162 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/networking/exceptions.pyi +43 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/networking/impersonate.pyi +35 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/networking/websocket.pyi +11 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/options.pyi +16 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/plugins.pyi +45 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/postprocessor/__init__.pyi +7 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/postprocessor/common.pyi +38 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/socks.pyi +74 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/update.pyi +34 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/__init__.pyi +269 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/_deprecated.pyi +13 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/_jsruntime.pyi +38 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/_legacy.pyi +59 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/_utils.pyi +730 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/jslib/__init__.pyi +0 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/jslib/devalue.pyi +9 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/networking.pyi +44 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/progress.pyi +22 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/utils/traversal.pyi +88 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/version.pyi +8 -0
- jaclang/vendor/typeshed/stubs/yt-dlp/yt_dlp/webvtt.pyi +49 -0
- jaclang/vendor/typeshed/stubs/zstd/zstd.pyi +39 -0
- jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/__init__.pyi +19 -0
- jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/adjacency_graphs.pyi +5 -0
- jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/feedback.pyi +13 -0
- jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/frequency_lists.pyi +1 -0
- jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/matching.pyi +97 -0
- jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/scoring.pyi +50 -0
- jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/time_estimates.pyi +27 -0
- jaclang/vendor/typeshed/tests/check_typeshed_structure.py +184 -0
- jaclang/vendor/typeshed/tests/get_external_stub_requirements.py +13 -0
- jaclang/vendor/typeshed/tests/get_stubtest_system_requirements.py +9 -0
- jaclang/vendor/typeshed/tests/mypy_test.py +584 -0
- jaclang/vendor/typeshed/tests/pyright_test.py +48 -0
- jaclang/vendor/typeshed/tests/regr_test.py +412 -0
- jaclang/vendor/typeshed/tests/runtests.py +221 -0
- jaclang/vendor/typeshed/tests/stubtest_stdlib.py +62 -0
- jaclang/vendor/typeshed/tests/stubtest_third_party.py +439 -0
- jaclang/vendor/typeshed/tests/typecheck_typeshed.py +108 -0
- jaclang-0.9.5.dist-info/METADATA +105 -0
- jaclang-0.9.5.dist-info/RECORD +5400 -0
- jaclang-0.9.5.dist-info/WHEEL +5 -0
- jaclang-0.9.5.dist-info/entry_points.txt +2 -0
- jaclang-0.9.5.dist-info/top_level.txt +1 -0
- jaclang/cli/.gitignore +0 -3
- jaclang/cli/cli.md +0 -190
- jaclang/cli/cli.py +0 -423
- jaclang/cli/cmdreg.py +0 -227
- jaclang/compiler/.gitignore +0 -1
- jaclang/compiler/absyntree.py +0 -4100
- jaclang/compiler/codeloc.py +0 -110
- jaclang/compiler/compile.py +0 -91
- jaclang/compiler/constant.py +0 -282
- jaclang/compiler/jac.lark +0 -655
- jaclang/compiler/parser.py +0 -3936
- jaclang/compiler/passes/ir_pass.py +0 -166
- jaclang/compiler/passes/main/access_modifier_pass.py +0 -173
- jaclang/compiler/passes/main/def_impl_match_pass.py +0 -81
- jaclang/compiler/passes/main/def_use_pass.py +0 -310
- jaclang/compiler/passes/main/fuse_typeinfo_pass.py +0 -416
- jaclang/compiler/passes/main/import_pass.py +0 -197
- jaclang/compiler/passes/main/pyast_gen_pass.py +0 -3746
- jaclang/compiler/passes/main/pyast_load_pass.py +0 -2543
- jaclang/compiler/passes/main/pybc_gen_pass.py +0 -46
- jaclang/compiler/passes/main/pyjac_ast_link_pass.py +0 -218
- jaclang/compiler/passes/main/pyout_pass.py +0 -84
- jaclang/compiler/passes/main/registry_pass.py +0 -127
- jaclang/compiler/passes/main/schedules.py +0 -37
- jaclang/compiler/passes/main/sub_node_tab_pass.py +0 -41
- jaclang/compiler/passes/main/sym_tab_build_pass.py +0 -1493
- jaclang/compiler/passes/main/tests/__init__.py +0 -1
- jaclang/compiler/passes/main/tests/fixtures/autoimpl.impl/getme.impl.jac +0 -3
- jaclang/compiler/passes/main/tests/fixtures/autoimpl.impl.jac +0 -3
- jaclang/compiler/passes/main/tests/fixtures/autoimpl.jac +0 -9
- jaclang/compiler/passes/main/tests/fixtures/autoimpl.something.else.impl.jac +0 -3
- jaclang/compiler/passes/main/tests/fixtures/base.jac +0 -13
- jaclang/compiler/passes/main/tests/fixtures/base2.jac +0 -14
- jaclang/compiler/passes/main/tests/fixtures/blip.jac +0 -2
- jaclang/compiler/passes/main/tests/fixtures/codegentext.jac +0 -31
- jaclang/compiler/passes/main/tests/fixtures/decls.jac +0 -10
- jaclang/compiler/passes/main/tests/fixtures/defs_and_uses.jac +0 -44
- jaclang/compiler/passes/main/tests/fixtures/fstrings.jac +0 -4
- jaclang/compiler/passes/main/tests/fixtures/func.jac +0 -18
- jaclang/compiler/passes/main/tests/fixtures/func2.jac +0 -8
- jaclang/compiler/passes/main/tests/fixtures/game1.jac +0 -15
- jaclang/compiler/passes/main/tests/fixtures/impl/defs1.jac +0 -8
- jaclang/compiler/passes/main/tests/fixtures/impl/defs2.jac +0 -8
- jaclang/compiler/passes/main/tests/fixtures/impl/imps.jac +0 -11
- jaclang/compiler/passes/main/tests/fixtures/multi_def_err.jac +0 -7
- jaclang/compiler/passes/main/tests/fixtures/registry.jac +0 -36
- jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py +0 -31
- jaclang/compiler/passes/main/tests/test_def_use_pass.py +0 -30
- jaclang/compiler/passes/main/tests/test_import_pass.py +0 -30
- jaclang/compiler/passes/main/tests/test_pyast_build_pass.py +0 -42
- jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py +0 -143
- jaclang/compiler/passes/main/tests/test_pybc_gen_pass.py +0 -25
- jaclang/compiler/passes/main/tests/test_registry_pass.py +0 -39
- jaclang/compiler/passes/main/tests/test_sub_node_pass.py +0 -27
- jaclang/compiler/passes/main/tests/test_sym_tab_build_pass.py +0 -23
- jaclang/compiler/passes/main/tests/test_type_check_pass.py +0 -49
- jaclang/compiler/passes/main/tests/test_typeinfo_pass.py +0 -7
- jaclang/compiler/passes/main/type_check_pass.py +0 -106
- jaclang/compiler/passes/tool/fuse_comments_pass.py +0 -86
- jaclang/compiler/passes/tool/jac_formatter_pass.py +0 -2465
- jaclang/compiler/passes/tool/schedules.py +0 -18
- jaclang/compiler/passes/tool/tests/__init__.py +0 -1
- jaclang/compiler/passes/tool/tests/fixtures/corelib.jac +0 -480
- jaclang/compiler/passes/tool/tests/fixtures/corelib_fmt.jac +0 -480
- jaclang/compiler/passes/tool/tests/fixtures/genai/essay_review.jac +0 -36
- jaclang/compiler/passes/tool/tests/fixtures/genai/expert_answer.jac +0 -17
- jaclang/compiler/passes/tool/tests/fixtures/genai/joke_gen.jac +0 -32
- jaclang/compiler/passes/tool/tests/fixtures/genai/odd_word_out.jac +0 -27
- jaclang/compiler/passes/tool/tests/fixtures/genai/personality_finder.jac +0 -35
- jaclang/compiler/passes/tool/tests/fixtures/genai/text_to_type.jac +0 -25
- jaclang/compiler/passes/tool/tests/fixtures/genai/translator.jac +0 -13
- jaclang/compiler/passes/tool/tests/fixtures/genai/wikipedia.jac +0 -63
- jaclang/compiler/passes/tool/tests/fixtures/multi_def_err.dot +0 -39
- jaclang/compiler/passes/tool/tests/fixtures/multi_def_err.jac +0 -7
- jaclang/compiler/passes/tool/tests/fixtures/multi_def_err.txt +0 -20
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/ability_impl_long_comprehension.jac +0 -15
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/call_with_many_parameters.jac +0 -24
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/entry_main.jac +0 -4
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/long_line_nested_dict_access.jac +0 -10
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/multiline_fstrings.jac +0 -16
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/nested_dict.jac +0 -15
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/nested_loop_and_incrementer.jac +0 -13
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/simple_walker.jac +0 -25
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/try_block_and_walker_spawn_and_fstrings.jac +0 -26
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/tuple_iteration_and_not_negation.jac +0 -20
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/type_annotation.jac +0 -3
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/walker_decl_only.jac +0 -12
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/walker_with_default_values_types_and_docstrings.jac +0 -18
- jaclang/compiler/passes/tool/tests/fixtures/myca_formatted_code/walker_with_inline_ability_impl.jac +0 -8
- jaclang/compiler/passes/tool/tests/fixtures/simple_walk.jac +0 -47
- jaclang/compiler/passes/tool/tests/fixtures/simple_walk_fmt.jac +0 -47
- jaclang/compiler/passes/tool/tests/test_fuse_comments_pass.py +0 -17
- jaclang/compiler/passes/tool/tests/test_jac_format_pass.py +0 -148
- jaclang/compiler/passes/tool/tests/test_unparse_validate.py +0 -81
- jaclang/compiler/passes/transform.py +0 -65
- jaclang/compiler/passes/utils/__init__.py +0 -1
- jaclang/compiler/passes/utils/mypy_ast_build.py +0 -674
- jaclang/compiler/symtable.py +0 -213
- jaclang/compiler/tests/__init__.py +0 -1
- jaclang/compiler/tests/fixtures/__init__.py +0 -1
- jaclang/compiler/tests/fixtures/activity.py +0 -10
- jaclang/compiler/tests/fixtures/fam.jac +0 -67
- jaclang/compiler/tests/fixtures/hello_world.jac +0 -5
- jaclang/compiler/tests/fixtures/kwesc.jac +0 -5
- jaclang/compiler/tests/fixtures/mod_doc_test.jac +0 -1
- jaclang/compiler/tests/fixtures/staticcheck.jac +0 -20
- jaclang/compiler/tests/fixtures/stuff.jac +0 -6
- jaclang/compiler/tests/test_importer.py +0 -49
- jaclang/compiler/tests/test_parser.py +0 -147
- jaclang/compiler/tests/test_workspace.py +0 -93
- jaclang/compiler/workspace.py +0 -234
- jaclang/core/__init__.py +0 -1
- jaclang/core/aott.py +0 -214
- jaclang/core/construct.py +0 -551
- jaclang/core/importer.py +0 -164
- jaclang/core/llms/__init__.py +0 -20
- jaclang/core/llms/anthropic.py +0 -61
- jaclang/core/llms/base.py +0 -206
- jaclang/core/llms/groq.py +0 -67
- jaclang/core/llms/huggingface.py +0 -73
- jaclang/core/llms/ollama.py +0 -78
- jaclang/core/llms/openai.py +0 -61
- jaclang/core/llms/togetherai.py +0 -60
- jaclang/core/llms/utils.py +0 -9
- jaclang/core/memory.py +0 -48
- jaclang/core/registry.py +0 -137
- jaclang/core/shelve_storage.py +0 -55
- jaclang/core/utils.py +0 -202
- jaclang/plugin/__init__.py +0 -7
- jaclang/plugin/builtin.py +0 -42
- jaclang/plugin/default.py +0 -838
- jaclang/plugin/feature.py +0 -309
- jaclang/plugin/spec.py +0 -319
- jaclang/plugin/tests/__init__.py +0 -1
- jaclang/plugin/tests/fixtures/impl_match.jac +0 -9
- jaclang/plugin/tests/fixtures/impl_match_impl.jac +0 -3
- jaclang/plugin/tests/fixtures/simple_node_connection.jac +0 -55
- jaclang/plugin/tests/fixtures/simple_persistent.jac +0 -41
- jaclang/plugin/tests/test_features.py +0 -89
- jaclang/plugin/tests/test_jaseci.py +0 -219
- jaclang/settings.py +0 -95
- jaclang/tests/fixtures/abc.jac +0 -73
- jaclang/tests/fixtures/access_checker.jac +0 -19
- jaclang/tests/fixtures/access_modifier.jac +0 -49
- jaclang/tests/fixtures/aott_raise.jac +0 -25
- jaclang/tests/fixtures/arithmetic_bug.jac +0 -13
- jaclang/tests/fixtures/assign_compr.jac +0 -15
- jaclang/tests/fixtures/assign_compr_dup.jac +0 -15
- jaclang/tests/fixtures/builtin_dotgen.jac +0 -41
- jaclang/tests/fixtures/chandra_bugs.jac +0 -11
- jaclang/tests/fixtures/chandra_bugs2.jac +0 -26
- jaclang/tests/fixtures/circle_pysolo.py +0 -91
- jaclang/tests/fixtures/deep/deeper/deep_outer_import.jac +0 -9
- jaclang/tests/fixtures/deep/deeper/deep_outer_import2.jac +0 -9
- jaclang/tests/fixtures/deep/deeper/snd_lev.jac +0 -6
- jaclang/tests/fixtures/deep/mycode.jac +0 -4
- jaclang/tests/fixtures/deep/one_lev.jac +0 -6
- jaclang/tests/fixtures/deep/one_lev_dup.jac +0 -6
- jaclang/tests/fixtures/deep/one_lev_dup_py.py +0 -6
- jaclang/tests/fixtures/deep_import.jac +0 -7
- jaclang/tests/fixtures/deferred_field.jac +0 -13
- jaclang/tests/fixtures/disconn.jac +0 -29
- jaclang/tests/fixtures/edge_node_walk.jac +0 -46
- jaclang/tests/fixtures/edge_ops.jac +0 -45
- jaclang/tests/fixtures/edges_walk.jac +0 -38
- jaclang/tests/fixtures/enum_inside_archtype.jac +0 -20
- jaclang/tests/fixtures/err.jac +0 -5
- jaclang/tests/fixtures/err2.jac +0 -5
- jaclang/tests/fixtures/game1.jac +0 -15
- jaclang/tests/fixtures/gendot_bubble_sort.jac +0 -77
- jaclang/tests/fixtures/guess_game.jac +0 -47
- jaclang/tests/fixtures/has_goodness.jac +0 -15
- jaclang/tests/fixtures/hashcheck.jac +0 -12
- jaclang/tests/fixtures/hashcheck_dup.jac +0 -12
- jaclang/tests/fixtures/hello.jac +0 -5
- jaclang/tests/fixtures/hello_nc.jac +0 -5
- jaclang/tests/fixtures/ignore.jac +0 -43
- jaclang/tests/fixtures/ignore_dup.jac +0 -43
- jaclang/tests/fixtures/impl_grab.impl.jac +0 -4
- jaclang/tests/fixtures/impl_grab.jac +0 -2
- jaclang/tests/fixtures/inherit_check.jac +0 -33
- jaclang/tests/fixtures/jacsamp.jac +0 -6
- jaclang/tests/fixtures/jp_importer.jac +0 -17
- jaclang/tests/fixtures/lambda.jac +0 -6
- jaclang/tests/fixtures/maxfail_run_test.jac +0 -5
- jaclang/tests/fixtures/mtest.impl.jac +0 -6
- jaclang/tests/fixtures/mtest.jac +0 -6
- jaclang/tests/fixtures/needs_import.jac +0 -18
- jaclang/tests/fixtures/needs_import_1.jac +0 -6
- jaclang/tests/fixtures/needs_import_2.jac +0 -6
- jaclang/tests/fixtures/needs_import_3.jac +0 -6
- jaclang/tests/fixtures/needs_import_dup.jac +0 -18
- jaclang/tests/fixtures/package_import.jac +0 -6
- jaclang/tests/fixtures/pyfunc.py +0 -11
- jaclang/tests/fixtures/pyfunc_1.py +0 -311
- jaclang/tests/fixtures/pyfunc_2.py +0 -279
- jaclang/tests/fixtures/pyfunc_3.py +0 -310
- jaclang/tests/fixtures/random_check.jac +0 -70
- jaclang/tests/fixtures/raw_byte_string.jac +0 -18
- jaclang/tests/fixtures/registry.jac +0 -37
- jaclang/tests/fixtures/run_test.jac +0 -5
- jaclang/tests/fixtures/semstr.jac +0 -33
- jaclang/tests/fixtures/simple_archs.jac +0 -26
- jaclang/tests/fixtures/slice_vals.jac +0 -7
- jaclang/tests/fixtures/sub_abil_sep.jac +0 -15
- jaclang/tests/fixtures/sub_abil_sep_multilev.jac +0 -17
- jaclang/tests/fixtures/try_finally.jac +0 -34
- jaclang/tests/fixtures/tupleunpack.jac +0 -6
- jaclang/tests/fixtures/tuplytuples.jac +0 -8
- jaclang/tests/fixtures/type_info.jac +0 -19
- jaclang/tests/fixtures/with_context.jac +0 -30
- jaclang/tests/fixtures/with_llm_function.jac +0 -33
- jaclang/tests/fixtures/with_llm_lower.jac +0 -45
- jaclang/tests/fixtures/with_llm_method.jac +0 -51
- jaclang/tests/fixtures/with_llm_type.jac +0 -52
- jaclang/tests/test_cli.py +0 -239
- jaclang/tests/test_language.py +0 -807
- jaclang/tests/test_man_code.py +0 -148
- jaclang/tests/test_reference.py +0 -95
- jaclang/tests/test_settings.py +0 -46
- jaclang/utils/helpers.py +0 -171
- jaclang/utils/lang_tools.py +0 -286
- jaclang/utils/test.py +0 -145
- jaclang/utils/tests/__init__.py +0 -1
- jaclang/utils/tests/test_lang_tools.py +0 -106
- jaclang/utils/treeprinter.py +0 -335
- jaclang/vendor/LICENSE +0 -18
- jaclang/vendor/mypy/__init__.py +0 -1
- jaclang/vendor/mypy/__main__.py +0 -37
- jaclang/vendor/mypy/api.py +0 -96
- jaclang/vendor/mypy/applytype.py +0 -172
- jaclang/vendor/mypy/argmap.py +0 -272
- jaclang/vendor/mypy/binder.py +0 -569
- jaclang/vendor/mypy/bogus_type.py +0 -27
- jaclang/vendor/mypy/build.py +0 -3744
- jaclang/vendor/mypy/checker.py +0 -8981
- jaclang/vendor/mypy/checkexpr.py +0 -7053
- jaclang/vendor/mypy/checkmember.py +0 -1413
- jaclang/vendor/mypy/checkpattern.py +0 -873
- jaclang/vendor/mypy/checkstrformat.py +0 -1202
- jaclang/vendor/mypy/config_parser.py +0 -693
- jaclang/vendor/mypy/constant_fold.py +0 -189
- jaclang/vendor/mypy/constraints.py +0 -1795
- jaclang/vendor/mypy/copytype.py +0 -143
- jaclang/vendor/mypy/defaults.py +0 -48
- jaclang/vendor/mypy/dmypy/__main__.py +0 -6
- jaclang/vendor/mypy/dmypy/client.py +0 -821
- jaclang/vendor/mypy/dmypy_os.py +0 -42
- jaclang/vendor/mypy/dmypy_server.py +0 -1194
- jaclang/vendor/mypy/dmypy_util.py +0 -117
- jaclang/vendor/mypy/erasetype.py +0 -290
- jaclang/vendor/mypy/errorcodes.py +0 -329
- jaclang/vendor/mypy/errors.py +0 -1374
- jaclang/vendor/mypy/evalexpr.py +0 -207
- jaclang/vendor/mypy/expandtype.py +0 -527
- jaclang/vendor/mypy/exprtotype.py +0 -222
- jaclang/vendor/mypy/fastparse.py +0 -2296
- jaclang/vendor/mypy/find_sources.py +0 -253
- jaclang/vendor/mypy/fixup.py +0 -433
- jaclang/vendor/mypy/freetree.py +0 -23
- jaclang/vendor/mypy/fscache.py +0 -309
- jaclang/vendor/mypy/fswatcher.py +0 -106
- jaclang/vendor/mypy/gclogger.py +0 -47
- jaclang/vendor/mypy/git.py +0 -34
- jaclang/vendor/mypy/graph_utils.py +0 -112
- jaclang/vendor/mypy/indirection.py +0 -123
- jaclang/vendor/mypy/infer.py +0 -79
- jaclang/vendor/mypy/inspections.py +0 -637
- jaclang/vendor/mypy/ipc.py +0 -331
- jaclang/vendor/mypy/join.py +0 -890
- jaclang/vendor/mypy/literals.py +0 -314
- jaclang/vendor/mypy/lookup.py +0 -61
- jaclang/vendor/mypy/main.py +0 -1673
- jaclang/vendor/mypy/maptype.py +0 -110
- jaclang/vendor/mypy/meet.py +0 -1194
- jaclang/vendor/mypy/memprofile.py +0 -121
- jaclang/vendor/mypy/message_registry.py +0 -384
- jaclang/vendor/mypy/messages.py +0 -3487
- jaclang/vendor/mypy/metastore.py +0 -229
- jaclang/vendor/mypy/mixedtraverser.py +0 -112
- jaclang/vendor/mypy/modulefinder.py +0 -922
- jaclang/vendor/mypy/moduleinspect.py +0 -196
- jaclang/vendor/mypy/mro.py +0 -64
- jaclang/vendor/mypy/nodes.py +0 -4199
- jaclang/vendor/mypy/operators.py +0 -135
- jaclang/vendor/mypy/options.py +0 -562
- jaclang/vendor/mypy/parse.py +0 -32
- jaclang/vendor/mypy/partially_defined.py +0 -675
- jaclang/vendor/mypy/patterns.py +0 -150
- jaclang/vendor/mypy/plugin.py +0 -951
- jaclang/vendor/mypy/plugins/attrs.py +0 -1232
- jaclang/vendor/mypy/plugins/common.py +0 -460
- jaclang/vendor/mypy/plugins/ctypes.py +0 -255
- jaclang/vendor/mypy/plugins/dataclasses.py +0 -1173
- jaclang/vendor/mypy/plugins/default.py +0 -550
- jaclang/vendor/mypy/plugins/enums.py +0 -272
- jaclang/vendor/mypy/plugins/functools.py +0 -113
- jaclang/vendor/mypy/plugins/proper_plugin.py +0 -179
- jaclang/vendor/mypy/plugins/singledispatch.py +0 -250
- jaclang/vendor/mypy/py.typed +0 -1
- jaclang/vendor/mypy/pyinfo.py +0 -78
- jaclang/vendor/mypy/reachability.py +0 -368
- jaclang/vendor/mypy/refinfo.py +0 -94
- jaclang/vendor/mypy/renaming.py +0 -568
- jaclang/vendor/mypy/report.py +0 -953
- jaclang/vendor/mypy/scope.py +0 -125
- jaclang/vendor/mypy/semanal.py +0 -7495
- jaclang/vendor/mypy/semanal_classprop.py +0 -212
- jaclang/vendor/mypy/semanal_enum.py +0 -265
- jaclang/vendor/mypy/semanal_infer.py +0 -130
- jaclang/vendor/mypy/semanal_main.py +0 -531
- jaclang/vendor/mypy/semanal_namedtuple.py +0 -709
- jaclang/vendor/mypy/semanal_newtype.py +0 -292
- jaclang/vendor/mypy/semanal_pass1.py +0 -160
- jaclang/vendor/mypy/semanal_shared.py +0 -508
- jaclang/vendor/mypy/semanal_typeargs.py +0 -294
- jaclang/vendor/mypy/semanal_typeddict.py +0 -616
- jaclang/vendor/mypy/server/astdiff.py +0 -543
- jaclang/vendor/mypy/server/astmerge.py +0 -566
- jaclang/vendor/mypy/server/aststrip.py +0 -281
- jaclang/vendor/mypy/server/deps.py +0 -1186
- jaclang/vendor/mypy/server/mergecheck.py +0 -85
- jaclang/vendor/mypy/server/objgraph.py +0 -107
- jaclang/vendor/mypy/server/subexpr.py +0 -198
- jaclang/vendor/mypy/server/target.py +0 -11
- jaclang/vendor/mypy/server/trigger.py +0 -26
- jaclang/vendor/mypy/server/update.py +0 -1375
- jaclang/vendor/mypy/sharedparse.py +0 -112
- jaclang/vendor/mypy/solve.py +0 -575
- jaclang/vendor/mypy/split_namespace.py +0 -37
- jaclang/vendor/mypy/state.py +0 -28
- jaclang/vendor/mypy/stats.py +0 -507
- jaclang/vendor/mypy/strconv.py +0 -664
- jaclang/vendor/mypy/stubdoc.py +0 -521
- jaclang/vendor/mypy/stubgen.py +0 -1951
- jaclang/vendor/mypy/stubgenc.py +0 -1040
- jaclang/vendor/mypy/stubinfo.py +0 -173
- jaclang/vendor/mypy/stubtest.py +0 -2184
- jaclang/vendor/mypy/stubutil.py +0 -850
- jaclang/vendor/mypy/subtypes.py +0 -2056
- jaclang/vendor/mypy/suggestions.py +0 -1080
- jaclang/vendor/mypy/test/config.py +0 -28
- jaclang/vendor/mypy/test/data.py +0 -848
- jaclang/vendor/mypy/test/helpers.py +0 -501
- jaclang/vendor/mypy/test/meta/_pytest.py +0 -83
- jaclang/vendor/mypy/test/meta/test_diff_helper.py +0 -47
- jaclang/vendor/mypy/test/meta/test_parse_data.py +0 -77
- jaclang/vendor/mypy/test/meta/test_update_data.py +0 -137
- jaclang/vendor/mypy/test/test_find_sources.py +0 -394
- jaclang/vendor/mypy/test/test_ref_info.py +0 -51
- jaclang/vendor/mypy/test/testapi.py +0 -45
- jaclang/vendor/mypy/test/testargs.py +0 -80
- jaclang/vendor/mypy/test/testcheck.py +0 -355
- jaclang/vendor/mypy/test/testcmdline.py +0 -163
- jaclang/vendor/mypy/test/testconstraints.py +0 -152
- jaclang/vendor/mypy/test/testdaemon.py +0 -139
- jaclang/vendor/mypy/test/testdeps.py +0 -85
- jaclang/vendor/mypy/test/testdiff.py +0 -71
- jaclang/vendor/mypy/test/testerrorstream.py +0 -48
- jaclang/vendor/mypy/test/testfinegrained.py +0 -476
- jaclang/vendor/mypy/test/testfinegrainedcache.py +0 -18
- jaclang/vendor/mypy/test/testformatter.py +0 -85
- jaclang/vendor/mypy/test/testfscache.py +0 -101
- jaclang/vendor/mypy/test/testgraph.py +0 -98
- jaclang/vendor/mypy/test/testinfer.py +0 -415
- jaclang/vendor/mypy/test/testipc.py +0 -125
- jaclang/vendor/mypy/test/testmerge.py +0 -250
- jaclang/vendor/mypy/test/testmodulefinder.py +0 -300
- jaclang/vendor/mypy/test/testmypyc.py +0 -16
- jaclang/vendor/mypy/test/testparse.py +0 -109
- jaclang/vendor/mypy/test/testpep561.py +0 -220
- jaclang/vendor/mypy/test/testpythoneval.py +0 -121
- jaclang/vendor/mypy/test/testreports.py +0 -56
- jaclang/vendor/mypy/test/testsemanal.py +0 -216
- jaclang/vendor/mypy/test/testsolve.py +0 -295
- jaclang/vendor/mypy/test/teststubgen.py +0 -1553
- jaclang/vendor/mypy/test/teststubinfo.py +0 -12
- jaclang/vendor/mypy/test/teststubtest.py +0 -2532
- jaclang/vendor/mypy/test/testsubtypes.py +0 -323
- jaclang/vendor/mypy/test/testtransform.py +0 -70
- jaclang/vendor/mypy/test/testtypegen.py +0 -89
- jaclang/vendor/mypy/test/testtypes.py +0 -1727
- jaclang/vendor/mypy/test/testutil.py +0 -113
- jaclang/vendor/mypy/test/typefixture.py +0 -442
- jaclang/vendor/mypy/test/update_data.py +0 -98
- jaclang/vendor/mypy/test/visitors.py +0 -71
- jaclang/vendor/mypy/traverser.py +0 -961
- jaclang/vendor/mypy/treetransform.py +0 -817
- jaclang/vendor/mypy/tvar_scope.py +0 -149
- jaclang/vendor/mypy/type_visitor.py +0 -571
- jaclang/vendor/mypy/typeanal.py +0 -2722
- jaclang/vendor/mypy/typeops.py +0 -1128
- jaclang/vendor/mypy/types.py +0 -3816
- jaclang/vendor/mypy/types_utils.py +0 -179
- jaclang/vendor/mypy/typeshed/LICENSE +0 -237
- jaclang/vendor/mypy/typeshed/stdlib/VERSIONS +0 -308
- jaclang/vendor/mypy/typeshed/stdlib/__future__.pyi +0 -41
- jaclang/vendor/mypy/typeshed/stdlib/__main__.pyi +0 -3
- jaclang/vendor/mypy/typeshed/stdlib/_ast.pyi +0 -632
- jaclang/vendor/mypy/typeshed/stdlib/_bisect.pyi +0 -106
- jaclang/vendor/mypy/typeshed/stdlib/_codecs.pyi +0 -198
- jaclang/vendor/mypy/typeshed/stdlib/_collections_abc.pyi +0 -94
- jaclang/vendor/mypy/typeshed/stdlib/_compat_pickle.pyi +0 -8
- jaclang/vendor/mypy/typeshed/stdlib/_compression.pyi +0 -25
- jaclang/vendor/mypy/typeshed/stdlib/_csv.pyi +0 -90
- jaclang/vendor/mypy/typeshed/stdlib/_ctypes.pyi +0 -219
- jaclang/vendor/mypy/typeshed/stdlib/_curses.pyi +0 -600
- jaclang/vendor/mypy/typeshed/stdlib/_decimal.pyi +0 -316
- jaclang/vendor/mypy/typeshed/stdlib/_dummy_thread.pyi +0 -43
- jaclang/vendor/mypy/typeshed/stdlib/_dummy_threading.pyi +0 -185
- jaclang/vendor/mypy/typeshed/stdlib/_heapq.pyi +0 -11
- jaclang/vendor/mypy/typeshed/stdlib/_imp.pyi +0 -32
- jaclang/vendor/mypy/typeshed/stdlib/_json.pyi +0 -49
- jaclang/vendor/mypy/typeshed/stdlib/_locale.pyi +0 -100
- jaclang/vendor/mypy/typeshed/stdlib/_markupbase.pyi +0 -16
- jaclang/vendor/mypy/typeshed/stdlib/_msi.pyi +0 -92
- jaclang/vendor/mypy/typeshed/stdlib/_operator.pyi +0 -172
- jaclang/vendor/mypy/typeshed/stdlib/_osx_support.pyi +0 -55
- jaclang/vendor/mypy/typeshed/stdlib/_posixsubprocess.pyi +0 -32
- jaclang/vendor/mypy/typeshed/stdlib/_py_abc.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/_pydecimal.pyi +0 -43
- jaclang/vendor/mypy/typeshed/stdlib/_random.pyi +0 -12
- jaclang/vendor/mypy/typeshed/stdlib/_sitebuiltins.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/_socket.pyi +0 -851
- jaclang/vendor/mypy/typeshed/stdlib/_stat.pyi +0 -103
- jaclang/vendor/mypy/typeshed/stdlib/_thread.pyi +0 -63
- jaclang/vendor/mypy/typeshed/stdlib/_threading_local.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/_tkinter.pyi +0 -120
- jaclang/vendor/mypy/typeshed/stdlib/_tracemalloc.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/_typeshed/README.md +0 -34
- jaclang/vendor/mypy/typeshed/stdlib/_typeshed/__init__.pyi +0 -374
- jaclang/vendor/mypy/typeshed/stdlib/_typeshed/dbapi.pyi +0 -45
- jaclang/vendor/mypy/typeshed/stdlib/_typeshed/wsgi.pyi +0 -51
- jaclang/vendor/mypy/typeshed/stdlib/_typeshed/xml.pyi +0 -13
- jaclang/vendor/mypy/typeshed/stdlib/_warnings.pyi +0 -65
- jaclang/vendor/mypy/typeshed/stdlib/_weakref.pyi +0 -45
- jaclang/vendor/mypy/typeshed/stdlib/_weakrefset.pyi +0 -51
- jaclang/vendor/mypy/typeshed/stdlib/_winapi.pyi +0 -275
- jaclang/vendor/mypy/typeshed/stdlib/abc.pyi +0 -61
- jaclang/vendor/mypy/typeshed/stdlib/aifc.pyi +0 -99
- jaclang/vendor/mypy/typeshed/stdlib/argparse.pyi +0 -675
- jaclang/vendor/mypy/typeshed/stdlib/array.pyi +0 -111
- jaclang/vendor/mypy/typeshed/stdlib/ast.pyi +0 -287
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/__init__.pyi +0 -41
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/base_events.pyi +0 -519
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/base_futures.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -71
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/base_tasks.pyi +0 -13
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/constants.pyi +0 -20
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/coroutines.pyi +0 -32
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/events.pyi +0 -669
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/exceptions.pyi +0 -43
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/format_helpers.pyi +0 -26
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/futures.pyi +0 -61
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/locks.pyi +0 -131
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/proactor_events.pyi +0 -72
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/protocols.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/queues.pyi +0 -49
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/runners.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/selector_events.pyi +0 -8
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/sslproto.pyi +0 -189
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/staggered.pyi +0 -13
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/streams.pyi +0 -172
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/subprocess.pyi +0 -234
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/taskgroups.pyi +0 -36
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/tasks.pyi +0 -566
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/threads.pyi +0 -11
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/timeouts.pyi +0 -22
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/transports.pyi +0 -64
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/trsock.pyi +0 -140
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/unix_events.pyi +0 -268
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/windows_events.pyi +0 -108
- jaclang/vendor/mypy/typeshed/stdlib/asyncio/windows_utils.pyi +0 -59
- jaclang/vendor/mypy/typeshed/stdlib/asyncore.pyi +0 -99
- jaclang/vendor/mypy/typeshed/stdlib/atexit.pyi +0 -14
- jaclang/vendor/mypy/typeshed/stdlib/audioop.pyi +0 -50
- jaclang/vendor/mypy/typeshed/stdlib/base64.pyi +0 -76
- jaclang/vendor/mypy/typeshed/stdlib/bdb.pyi +0 -133
- jaclang/vendor/mypy/typeshed/stdlib/binascii.pyi +0 -45
- jaclang/vendor/mypy/typeshed/stdlib/binhex.pyi +0 -47
- jaclang/vendor/mypy/typeshed/stdlib/builtins.pyi +0 -2310
- jaclang/vendor/mypy/typeshed/stdlib/bz2.pyi +0 -177
- jaclang/vendor/mypy/typeshed/stdlib/cProfile.pyi +0 -49
- jaclang/vendor/mypy/typeshed/stdlib/calendar.pyi +0 -248
- jaclang/vendor/mypy/typeshed/stdlib/cgi.pyi +0 -122
- jaclang/vendor/mypy/typeshed/stdlib/cgitb.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/chunk.pyi +0 -26
- jaclang/vendor/mypy/typeshed/stdlib/cmath.pyi +0 -38
- jaclang/vendor/mypy/typeshed/stdlib/cmd.pyi +0 -52
- jaclang/vendor/mypy/typeshed/stdlib/code.pyi +0 -46
- jaclang/vendor/mypy/typeshed/stdlib/codecs.pyi +0 -344
- jaclang/vendor/mypy/typeshed/stdlib/codeop.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/collections/__init__.pyi +0 -571
- jaclang/vendor/mypy/typeshed/stdlib/colorsys.pyi +0 -20
- jaclang/vendor/mypy/typeshed/stdlib/compileall.pyi +0 -111
- jaclang/vendor/mypy/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -32
- jaclang/vendor/mypy/typeshed/stdlib/concurrent/futures/_base.pyi +0 -137
- jaclang/vendor/mypy/typeshed/stdlib/concurrent/futures/process.pyi +0 -272
- jaclang/vendor/mypy/typeshed/stdlib/concurrent/futures/thread.pyi +0 -86
- jaclang/vendor/mypy/typeshed/stdlib/configparser.pyi +0 -449
- jaclang/vendor/mypy/typeshed/stdlib/contextlib.pyi +0 -274
- jaclang/vendor/mypy/typeshed/stdlib/contextvars.pyi +0 -67
- jaclang/vendor/mypy/typeshed/stdlib/copy.pyi +0 -16
- jaclang/vendor/mypy/typeshed/stdlib/copyreg.pyi +0 -32
- jaclang/vendor/mypy/typeshed/stdlib/crypt.pyi +0 -12
- jaclang/vendor/mypy/typeshed/stdlib/csv.pyi +0 -147
- jaclang/vendor/mypy/typeshed/stdlib/ctypes/__init__.pyi +0 -211
- jaclang/vendor/mypy/typeshed/stdlib/ctypes/_endian.pyi +0 -29
- jaclang/vendor/mypy/typeshed/stdlib/ctypes/util.pyi +0 -6
- jaclang/vendor/mypy/typeshed/stdlib/ctypes/wintypes.pyi +0 -298
- jaclang/vendor/mypy/typeshed/stdlib/curses/__init__.pyi +0 -25
- jaclang/vendor/mypy/typeshed/stdlib/curses/ascii.pyi +0 -63
- jaclang/vendor/mypy/typeshed/stdlib/curses/has_key.pyi +0 -4
- jaclang/vendor/mypy/typeshed/stdlib/curses/panel.pyi +0 -25
- jaclang/vendor/mypy/typeshed/stdlib/curses/textpad.pyi +0 -15
- jaclang/vendor/mypy/typeshed/stdlib/dataclasses.pyi +0 -323
- jaclang/vendor/mypy/typeshed/stdlib/datetime.pyi +0 -334
- jaclang/vendor/mypy/typeshed/stdlib/dbm/__init__.pyi +0 -98
- jaclang/vendor/mypy/typeshed/stdlib/dbm/dumb.pyi +0 -34
- jaclang/vendor/mypy/typeshed/stdlib/dbm/gnu.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/dbm/ndbm.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/decimal.pyi +0 -5
- jaclang/vendor/mypy/typeshed/stdlib/difflib.pyi +0 -169
- jaclang/vendor/mypy/typeshed/stdlib/dis.pyi +0 -190
- jaclang/vendor/mypy/typeshed/stdlib/distutils/archive_util.pyi +0 -22
- jaclang/vendor/mypy/typeshed/stdlib/distutils/ccompiler.pyi +0 -183
- jaclang/vendor/mypy/typeshed/stdlib/distutils/cmd.pyi +0 -88
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/bdist.pyi +0 -25
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -45
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -52
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/build.pyi +0 -31
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/build_clib.pyi +0 -27
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/build_ext.pyi +0 -50
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/build_py.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -24
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/check.pyi +0 -39
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/clean.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/config.pyi +0 -91
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/install.pyi +0 -63
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/install_data.pyi +0 -19
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/install_headers.pyi +0 -16
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/install_lib.pyi +0 -25
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/register.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/sdist.pyi +0 -42
- jaclang/vendor/mypy/typeshed/stdlib/distutils/command/upload.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/distutils/core.pyi +0 -59
- jaclang/vendor/mypy/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -20
- jaclang/vendor/mypy/typeshed/stdlib/distutils/debug.pyi +0 -1
- jaclang/vendor/mypy/typeshed/stdlib/distutils/dep_util.pyi +0 -3
- jaclang/vendor/mypy/typeshed/stdlib/distutils/dir_util.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/distutils/dist.pyi +0 -155
- jaclang/vendor/mypy/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -37
- jaclang/vendor/mypy/typeshed/stdlib/distutils/file_util.pyi +0 -14
- jaclang/vendor/mypy/typeshed/stdlib/distutils/filelist.pyi +0 -78
- jaclang/vendor/mypy/typeshed/stdlib/distutils/log.pyi +0 -25
- jaclang/vendor/mypy/typeshed/stdlib/distutils/spawn.pyi +0 -4
- jaclang/vendor/mypy/typeshed/stdlib/distutils/sysconfig.pyi +0 -24
- jaclang/vendor/mypy/typeshed/stdlib/distutils/text_file.pyi +0 -23
- jaclang/vendor/mypy/typeshed/stdlib/distutils/util.pyi +0 -50
- jaclang/vendor/mypy/typeshed/stdlib/doctest.pyi +0 -282
- jaclang/vendor/mypy/typeshed/stdlib/dummy_threading.pyi +0 -2
- jaclang/vendor/mypy/typeshed/stdlib/email/__init__.pyi +0 -37
- jaclang/vendor/mypy/typeshed/stdlib/email/_header_value_parser.pyi +0 -392
- jaclang/vendor/mypy/typeshed/stdlib/email/_policybase.pyi +0 -51
- jaclang/vendor/mypy/typeshed/stdlib/email/base64mime.pyi +0 -22
- jaclang/vendor/mypy/typeshed/stdlib/email/charset.pyi +0 -39
- jaclang/vendor/mypy/typeshed/stdlib/email/errors.pyi +0 -39
- jaclang/vendor/mypy/typeshed/stdlib/email/feedparser.pyi +0 -31
- jaclang/vendor/mypy/typeshed/stdlib/email/generator.pyi +0 -42
- jaclang/vendor/mypy/typeshed/stdlib/email/header.pyi +0 -41
- jaclang/vendor/mypy/typeshed/stdlib/email/headerregistry.pyi +0 -214
- jaclang/vendor/mypy/typeshed/stdlib/email/iterators.pyi +0 -19
- jaclang/vendor/mypy/typeshed/stdlib/email/message.pyi +0 -220
- jaclang/vendor/mypy/typeshed/stdlib/email/mime/base.pyi +0 -15
- jaclang/vendor/mypy/typeshed/stdlib/email/mime/message.pyi +0 -10
- jaclang/vendor/mypy/typeshed/stdlib/email/mime/multipart.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/email/mime/text.pyi +0 -14
- jaclang/vendor/mypy/typeshed/stdlib/email/parser.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/email/policy.pyi +0 -51
- jaclang/vendor/mypy/typeshed/stdlib/email/quoprimime.pyi +0 -30
- jaclang/vendor/mypy/typeshed/stdlib/email/utils.pyi +0 -84
- jaclang/vendor/mypy/typeshed/stdlib/encodings/__init__.pyi +0 -10
- jaclang/vendor/mypy/typeshed/stdlib/encodings/utf_8.pyi +0 -25
- jaclang/vendor/mypy/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/enum.pyi +0 -347
- jaclang/vendor/mypy/typeshed/stdlib/errno.pyi +0 -222
- jaclang/vendor/mypy/typeshed/stdlib/faulthandler.pyi +0 -20
- jaclang/vendor/mypy/typeshed/stdlib/fcntl.pyi +0 -155
- jaclang/vendor/mypy/typeshed/stdlib/filecmp.pyi +0 -62
- jaclang/vendor/mypy/typeshed/stdlib/fileinput.pyi +0 -246
- jaclang/vendor/mypy/typeshed/stdlib/fnmatch.pyi +0 -9
- jaclang/vendor/mypy/typeshed/stdlib/formatter.pyi +0 -92
- jaclang/vendor/mypy/typeshed/stdlib/fractions.pyi +0 -152
- jaclang/vendor/mypy/typeshed/stdlib/ftplib.pyi +0 -214
- jaclang/vendor/mypy/typeshed/stdlib/functools.pyi +0 -261
- jaclang/vendor/mypy/typeshed/stdlib/gc.pyi +0 -39
- jaclang/vendor/mypy/typeshed/stdlib/genericpath.pyi +0 -62
- jaclang/vendor/mypy/typeshed/stdlib/getopt.pyi +0 -15
- jaclang/vendor/mypy/typeshed/stdlib/getpass.pyi +0 -8
- jaclang/vendor/mypy/typeshed/stdlib/gettext.pyi +0 -200
- jaclang/vendor/mypy/typeshed/stdlib/glob.pyi +0 -50
- jaclang/vendor/mypy/typeshed/stdlib/graphlib.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/gzip.pyi +0 -162
- jaclang/vendor/mypy/typeshed/stdlib/hashlib.pyi +0 -191
- jaclang/vendor/mypy/typeshed/stdlib/heapq.pyi +0 -36
- jaclang/vendor/mypy/typeshed/stdlib/hmac.pyi +0 -45
- jaclang/vendor/mypy/typeshed/stdlib/html/entities.pyi +0 -6
- jaclang/vendor/mypy/typeshed/stdlib/html/parser.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/http/__init__.pyi +0 -105
- jaclang/vendor/mypy/typeshed/stdlib/http/client.pyi +0 -283
- jaclang/vendor/mypy/typeshed/stdlib/http/cookiejar.pyi +0 -206
- jaclang/vendor/mypy/typeshed/stdlib/http/cookies.pyi +0 -67
- jaclang/vendor/mypy/typeshed/stdlib/http/server.pyi +0 -93
- jaclang/vendor/mypy/typeshed/stdlib/imaplib.pyi +0 -221
- jaclang/vendor/mypy/typeshed/stdlib/imghdr.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/imp.pyi +0 -75
- jaclang/vendor/mypy/typeshed/stdlib/importlib/__init__.pyi +0 -24
- jaclang/vendor/mypy/typeshed/stdlib/importlib/_abc.pyi +0 -15
- jaclang/vendor/mypy/typeshed/stdlib/importlib/abc.pyi +0 -195
- jaclang/vendor/mypy/typeshed/stdlib/importlib/machinery.pyi +0 -214
- jaclang/vendor/mypy/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -310
- jaclang/vendor/mypy/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/importlib/readers.pyi +0 -68
- jaclang/vendor/mypy/typeshed/stdlib/importlib/resources/__init__.pyi +0 -66
- jaclang/vendor/mypy/typeshed/stdlib/importlib/resources/abc.pyi +0 -12
- jaclang/vendor/mypy/typeshed/stdlib/importlib/resources/simple.pyi +0 -55
- jaclang/vendor/mypy/typeshed/stdlib/importlib/simple.pyi +0 -16
- jaclang/vendor/mypy/typeshed/stdlib/importlib/util.pyi +0 -57
- jaclang/vendor/mypy/typeshed/stdlib/inspect.pyi +0 -709
- jaclang/vendor/mypy/typeshed/stdlib/io.pyi +0 -222
- jaclang/vendor/mypy/typeshed/stdlib/ipaddress.pyi +0 -229
- jaclang/vendor/mypy/typeshed/stdlib/itertools.pyi +0 -394
- jaclang/vendor/mypy/typeshed/stdlib/json/__init__.pyi +0 -69
- jaclang/vendor/mypy/typeshed/stdlib/json/decoder.pyi +0 -34
- jaclang/vendor/mypy/typeshed/stdlib/json/encoder.pyi +0 -38
- jaclang/vendor/mypy/typeshed/stdlib/keyword.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -32
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -10
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -15
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -6
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -10
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -12
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/main.pyi +0 -46
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -36
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -52
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -67
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -98
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/pytree.pyi +0 -142
- jaclang/vendor/mypy/typeshed/stdlib/lib2to3/refactor.pyi +0 -122
- jaclang/vendor/mypy/typeshed/stdlib/linecache.pyi +0 -29
- jaclang/vendor/mypy/typeshed/stdlib/locale.pyi +0 -165
- jaclang/vendor/mypy/typeshed/stdlib/logging/__init__.pyi +0 -685
- jaclang/vendor/mypy/typeshed/stdlib/logging/config.pyi +0 -161
- jaclang/vendor/mypy/typeshed/stdlib/logging/handlers.pyi +0 -315
- jaclang/vendor/mypy/typeshed/stdlib/lzma.pyi +0 -213
- jaclang/vendor/mypy/typeshed/stdlib/mailbox.pyi +0 -306
- jaclang/vendor/mypy/typeshed/stdlib/mailcap.pyi +0 -15
- jaclang/vendor/mypy/typeshed/stdlib/marshal.pyi +0 -35
- jaclang/vendor/mypy/typeshed/stdlib/math.pyi +0 -134
- jaclang/vendor/mypy/typeshed/stdlib/mimetypes.pyi +0 -50
- jaclang/vendor/mypy/typeshed/stdlib/mmap.pyi +0 -126
- jaclang/vendor/mypy/typeshed/stdlib/modulefinder.pyi +0 -84
- jaclang/vendor/mypy/typeshed/stdlib/msilib/__init__.pyi +0 -237
- jaclang/vendor/mypy/typeshed/stdlib/msilib/schema.pyi +0 -107
- jaclang/vendor/mypy/typeshed/stdlib/msilib/sequence.pyi +0 -13
- jaclang/vendor/mypy/typeshed/stdlib/msilib/text.pyi +0 -7
- jaclang/vendor/mypy/typeshed/stdlib/msvcrt.pyi +0 -32
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/__init__.pyi +0 -94
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/connection.pyi +0 -94
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/context.pyi +0 -235
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -83
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -50
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -36
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/heap.pyi +0 -38
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/managers.pyi +0 -270
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/pool.pyi +0 -137
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -23
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -30
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/queues.pyi +0 -43
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/reduction.pyi +0 -118
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -140
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/spawn.pyi +0 -34
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -66
- jaclang/vendor/mypy/typeshed/stdlib/multiprocessing/util.pyi +0 -83
- jaclang/vendor/mypy/typeshed/stdlib/netrc.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/nntplib.pyi +0 -151
- jaclang/vendor/mypy/typeshed/stdlib/nt.pyi +0 -114
- jaclang/vendor/mypy/typeshed/stdlib/ntpath.pyi +0 -119
- jaclang/vendor/mypy/typeshed/stdlib/nturl2path.pyi +0 -2
- jaclang/vendor/mypy/typeshed/stdlib/numbers.pyi +0 -154
- jaclang/vendor/mypy/typeshed/stdlib/opcode.pyi +0 -68
- jaclang/vendor/mypy/typeshed/stdlib/operator.pyi +0 -110
- jaclang/vendor/mypy/typeshed/stdlib/optparse.pyi +0 -290
- jaclang/vendor/mypy/typeshed/stdlib/os/__init__.pyi +0 -1317
- jaclang/vendor/mypy/typeshed/stdlib/ossaudiodev.pyi +0 -131
- jaclang/vendor/mypy/typeshed/stdlib/parser.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/pathlib.pyi +0 -282
- jaclang/vendor/mypy/typeshed/stdlib/pdb.pyi +0 -223
- jaclang/vendor/mypy/typeshed/stdlib/pickle.pyi +0 -286
- jaclang/vendor/mypy/typeshed/stdlib/pickletools.pyi +0 -173
- jaclang/vendor/mypy/typeshed/stdlib/pkgutil.pyi +0 -61
- jaclang/vendor/mypy/typeshed/stdlib/platform.pyi +0 -56
- jaclang/vendor/mypy/typeshed/stdlib/plistlib.pyi +0 -176
- jaclang/vendor/mypy/typeshed/stdlib/poplib.pyi +0 -78
- jaclang/vendor/mypy/typeshed/stdlib/posix.pyi +0 -363
- jaclang/vendor/mypy/typeshed/stdlib/posixpath.pyi +0 -171
- jaclang/vendor/mypy/typeshed/stdlib/pprint.pyi +0 -122
- jaclang/vendor/mypy/typeshed/stdlib/profile.pyi +0 -43
- jaclang/vendor/mypy/typeshed/stdlib/pstats.pyi +0 -85
- jaclang/vendor/mypy/typeshed/stdlib/pty.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/pwd.pyi +0 -36
- jaclang/vendor/mypy/typeshed/stdlib/py_compile.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/pyclbr.pyi +0 -97
- jaclang/vendor/mypy/typeshed/stdlib/pydoc.pyi +0 -309
- jaclang/vendor/mypy/typeshed/stdlib/pydoc_data/topics.pyi +0 -1
- jaclang/vendor/mypy/typeshed/stdlib/pyexpat/__init__.pyi +0 -94
- jaclang/vendor/mypy/typeshed/stdlib/pyexpat/errors.pyi +0 -49
- jaclang/vendor/mypy/typeshed/stdlib/pyexpat/model.pyi +0 -11
- jaclang/vendor/mypy/typeshed/stdlib/queue.pyi +0 -62
- jaclang/vendor/mypy/typeshed/stdlib/quopri.pyi +0 -17
- jaclang/vendor/mypy/typeshed/stdlib/random.pyi +0 -160
- jaclang/vendor/mypy/typeshed/stdlib/re.pyi +0 -376
- jaclang/vendor/mypy/typeshed/stdlib/readline.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/resource.pyi +0 -116
- jaclang/vendor/mypy/typeshed/stdlib/runpy.pyi +0 -31
- jaclang/vendor/mypy/typeshed/stdlib/sched.pyi +0 -56
- jaclang/vendor/mypy/typeshed/stdlib/secrets.pyi +0 -24
- jaclang/vendor/mypy/typeshed/stdlib/select.pyi +0 -162
- jaclang/vendor/mypy/typeshed/stdlib/selectors.pyi +0 -85
- jaclang/vendor/mypy/typeshed/stdlib/shelve.pyi +0 -64
- jaclang/vendor/mypy/typeshed/stdlib/shlex.pyi +0 -47
- jaclang/vendor/mypy/typeshed/stdlib/shutil.pyi +0 -239
- jaclang/vendor/mypy/typeshed/stdlib/signal.pyi +0 -208
- jaclang/vendor/mypy/typeshed/stdlib/site.pyi +0 -33
- jaclang/vendor/mypy/typeshed/stdlib/smtpd.pyi +0 -102
- jaclang/vendor/mypy/typeshed/stdlib/smtplib.pyi +0 -223
- jaclang/vendor/mypy/typeshed/stdlib/socket.pyi +0 -881
- jaclang/vendor/mypy/typeshed/stdlib/socketserver.pyi +0 -195
- jaclang/vendor/mypy/typeshed/stdlib/spwd.pyi +0 -43
- jaclang/vendor/mypy/typeshed/stdlib/sqlite3/__init__.pyi +0 -1
- jaclang/vendor/mypy/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -519
- jaclang/vendor/mypy/typeshed/stdlib/sre_compile.pyi +0 -11
- jaclang/vendor/mypy/typeshed/stdlib/sre_constants.pyi +0 -132
- jaclang/vendor/mypy/typeshed/stdlib/sre_parse.pyi +0 -110
- jaclang/vendor/mypy/typeshed/stdlib/ssl.pyi +0 -559
- jaclang/vendor/mypy/typeshed/stdlib/stat.pyi +0 -1
- jaclang/vendor/mypy/typeshed/stdlib/statistics.pyi +0 -151
- jaclang/vendor/mypy/typeshed/stdlib/string.pyi +0 -112
- jaclang/vendor/mypy/typeshed/stdlib/stringprep.pyi +0 -27
- jaclang/vendor/mypy/typeshed/stdlib/struct.pyi +0 -43
- jaclang/vendor/mypy/typeshed/stdlib/subprocess.pyi +0 -2638
- jaclang/vendor/mypy/typeshed/stdlib/sunau.pyi +0 -86
- jaclang/vendor/mypy/typeshed/stdlib/symbol.pyi +0 -93
- jaclang/vendor/mypy/typeshed/stdlib/symtable.pyi +0 -63
- jaclang/vendor/mypy/typeshed/stdlib/sys/__init__.pyi +0 -396
- jaclang/vendor/mypy/typeshed/stdlib/sys/_monitoring.pyi +0 -54
- jaclang/vendor/mypy/typeshed/stdlib/sysconfig.pyi +0 -52
- jaclang/vendor/mypy/typeshed/stdlib/syslog.pyi +0 -48
- jaclang/vendor/mypy/typeshed/stdlib/tabnanny.pyi +0 -18
- jaclang/vendor/mypy/typeshed/stdlib/tarfile.pyi +0 -486
- jaclang/vendor/mypy/typeshed/stdlib/telnetlib.pyi +0 -129
- jaclang/vendor/mypy/typeshed/stdlib/tempfile.pyi +0 -521
- jaclang/vendor/mypy/typeshed/stdlib/termios.pyi +0 -273
- jaclang/vendor/mypy/typeshed/stdlib/textwrap.pyi +0 -107
- jaclang/vendor/mypy/typeshed/stdlib/threading.pyi +0 -212
- jaclang/vendor/mypy/typeshed/stdlib/time.pyi +0 -122
- jaclang/vendor/mypy/typeshed/stdlib/timeit.pyi +0 -46
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/__init__.pyi +0 -3950
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/colorchooser.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/commondialog.pyi +0 -16
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/constants.pyi +0 -80
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/dialog.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/dnd.pyi +0 -20
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/filedialog.pyi +0 -173
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/font.pyi +0 -148
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/messagebox.pyi +0 -60
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -10
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/tix.pyi +0 -395
- jaclang/vendor/mypy/typeshed/stdlib/tkinter/ttk.pyi +0 -1276
- jaclang/vendor/mypy/typeshed/stdlib/token.pyi +0 -159
- jaclang/vendor/mypy/typeshed/stdlib/tokenize.pyi +0 -185
- jaclang/vendor/mypy/typeshed/stdlib/tomllib.pyi +0 -12
- jaclang/vendor/mypy/typeshed/stdlib/trace.pyi +0 -114
- jaclang/vendor/mypy/typeshed/stdlib/traceback.pyi +0 -297
- jaclang/vendor/mypy/typeshed/stdlib/tracemalloc.pyi +0 -142
- jaclang/vendor/mypy/typeshed/stdlib/tty.pyi +0 -30
- jaclang/vendor/mypy/typeshed/stdlib/turtle.pyi +0 -830
- jaclang/vendor/mypy/typeshed/stdlib/types.pyi +0 -647
- jaclang/vendor/mypy/typeshed/stdlib/typing.pyi +0 -1059
- jaclang/vendor/mypy/typeshed/stdlib/typing_extensions.pyi +0 -524
- jaclang/vendor/mypy/typeshed/stdlib/unicodedata.pyi +0 -71
- jaclang/vendor/mypy/typeshed/stdlib/unittest/__init__.pyi +0 -72
- jaclang/vendor/mypy/typeshed/stdlib/unittest/_log.pyi +0 -34
- jaclang/vendor/mypy/typeshed/stdlib/unittest/async_case.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/unittest/case.pyi +0 -481
- jaclang/vendor/mypy/typeshed/stdlib/unittest/loader.pyi +0 -71
- jaclang/vendor/mypy/typeshed/stdlib/unittest/main.pyi +0 -75
- jaclang/vendor/mypy/typeshed/stdlib/unittest/mock.pyi +0 -468
- jaclang/vendor/mypy/typeshed/stdlib/unittest/result.pyi +0 -59
- jaclang/vendor/mypy/typeshed/stdlib/unittest/runner.pyi +0 -83
- jaclang/vendor/mypy/typeshed/stdlib/unittest/suite.pyi +0 -26
- jaclang/vendor/mypy/typeshed/stdlib/unittest/util.pyi +0 -31
- jaclang/vendor/mypy/typeshed/stdlib/urllib/error.pyi +0 -27
- jaclang/vendor/mypy/typeshed/stdlib/urllib/parse.pyi +0 -245
- jaclang/vendor/mypy/typeshed/stdlib/urllib/request.pyi +0 -544
- jaclang/vendor/mypy/typeshed/stdlib/urllib/response.pyi +0 -50
- jaclang/vendor/mypy/typeshed/stdlib/uu.pyi +0 -23
- jaclang/vendor/mypy/typeshed/stdlib/uuid.pyi +0 -100
- jaclang/vendor/mypy/typeshed/stdlib/warnings.pyi +0 -144
- jaclang/vendor/mypy/typeshed/stdlib/wave.pyi +0 -87
- jaclang/vendor/mypy/typeshed/stdlib/weakref.pyi +0 -173
- jaclang/vendor/mypy/typeshed/stdlib/webbrowser.pyi +0 -80
- jaclang/vendor/mypy/typeshed/stdlib/winreg.pyi +0 -120
- jaclang/vendor/mypy/typeshed/stdlib/winsound.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/wsgiref/handlers.pyi +0 -109
- jaclang/vendor/mypy/typeshed/stdlib/wsgiref/headers.pyi +0 -28
- jaclang/vendor/mypy/typeshed/stdlib/wsgiref/simple_server.pyi +0 -49
- jaclang/vendor/mypy/typeshed/stdlib/wsgiref/types.pyi +0 -44
- jaclang/vendor/mypy/typeshed/stdlib/wsgiref/util.pyi +0 -31
- jaclang/vendor/mypy/typeshed/stdlib/wsgiref/validate.pyi +0 -52
- jaclang/vendor/mypy/typeshed/stdlib/xdrlib.pyi +0 -63
- jaclang/vendor/mypy/typeshed/stdlib/xml/__init__.pyi +0 -1
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -19
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/__init__.pyi +0 -72
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/domreg.pyi +0 -12
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -111
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/minicompat.pyi +0 -22
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/minidom.pyi +0 -467
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/pulldom.pyi +0 -101
- jaclang/vendor/mypy/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -110
- jaclang/vendor/mypy/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -35
- jaclang/vendor/mypy/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -49
- jaclang/vendor/mypy/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -367
- jaclang/vendor/mypy/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -1
- jaclang/vendor/mypy/typeshed/stdlib/xml/sax/__init__.pyi +0 -34
- jaclang/vendor/mypy/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -21
- jaclang/vendor/mypy/typeshed/stdlib/xml/sax/handler.pyi +0 -59
- jaclang/vendor/mypy/typeshed/stdlib/xml/sax/saxutils.pyi +0 -71
- jaclang/vendor/mypy/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -89
- jaclang/vendor/mypy/typeshed/stdlib/xmlrpc/client.pyi +0 -348
- jaclang/vendor/mypy/typeshed/stdlib/xmlrpc/server.pyi +0 -186
- jaclang/vendor/mypy/typeshed/stdlib/xxlimited.pyi +0 -22
- jaclang/vendor/mypy/typeshed/stdlib/zipfile/__init__.pyi +0 -355
- jaclang/vendor/mypy/typeshed/stdlib/zipfile/_path.pyi +0 -105
- jaclang/vendor/mypy/typeshed/stdlib/zipimport.pyi +0 -40
- jaclang/vendor/mypy/typeshed/stdlib/zlib.pyi +0 -63
- jaclang/vendor/mypy/typeshed/stdlib/zoneinfo/__init__.pyi +0 -45
- jaclang/vendor/mypy/typeshed/stubs/mypy-extensions/@tests/stubtest_allowlist.txt +0 -2
- jaclang/vendor/mypy/typeshed/stubs/mypy-extensions/METADATA.toml +0 -4
- jaclang/vendor/mypy/typeshed/stubs/mypy-extensions/mypy_extensions.pyi +0 -238
- jaclang/vendor/mypy/typestate.py +0 -333
- jaclang/vendor/mypy/typetraverser.py +0 -142
- jaclang/vendor/mypy/typevars.py +0 -99
- jaclang/vendor/mypy/typevartuples.py +0 -32
- jaclang/vendor/mypy/util.py +0 -900
- jaclang/vendor/mypy/version.py +0 -19
- jaclang/vendor/mypy/visitor.py +0 -627
- jaclang/vendor/mypy/xml/mypy-html.css +0 -104
- jaclang/vendor/mypy/xml/mypy-html.xslt +0 -81
- jaclang/vendor/mypy/xml/mypy-txt.xslt +0 -100
- jaclang/vendor/mypy/xml/mypy.xsd +0 -50
- jaclang/vendor/mypy_extensions.py +0 -232
- jaclang/vendor/mypyc/.readthedocs.yaml +0 -18
- jaclang/vendor/mypyc/README.md +0 -133
- jaclang/vendor/mypyc/__main__.py +0 -59
- jaclang/vendor/mypyc/analysis/attrdefined.py +0 -452
- jaclang/vendor/mypyc/analysis/blockfreq.py +0 -32
- jaclang/vendor/mypyc/analysis/dataflow.py +0 -626
- jaclang/vendor/mypyc/analysis/ircheck.py +0 -446
- jaclang/vendor/mypyc/analysis/selfleaks.py +0 -207
- jaclang/vendor/mypyc/build.py +0 -629
- jaclang/vendor/mypyc/codegen/cstring.py +0 -54
- jaclang/vendor/mypyc/codegen/emit.py +0 -1246
- jaclang/vendor/mypyc/codegen/emitclass.py +0 -1110
- jaclang/vendor/mypyc/codegen/emitfunc.py +0 -894
- jaclang/vendor/mypyc/codegen/emitmodule.py +0 -1203
- jaclang/vendor/mypyc/codegen/emitwrapper.py +0 -1035
- jaclang/vendor/mypyc/codegen/literals.py +0 -304
- jaclang/vendor/mypyc/common.py +0 -138
- jaclang/vendor/mypyc/crash.py +0 -31
- jaclang/vendor/mypyc/doc/Makefile +0 -20
- jaclang/vendor/mypyc/doc/bool_operations.rst +0 -27
- jaclang/vendor/mypyc/doc/compilation_units.rst +0 -20
- jaclang/vendor/mypyc/doc/conf.py +0 -59
- jaclang/vendor/mypyc/doc/cpython-timings.md +0 -25
- jaclang/vendor/mypyc/doc/dev-intro.md +0 -548
- jaclang/vendor/mypyc/doc/dict_operations.rst +0 -59
- jaclang/vendor/mypyc/doc/differences_from_python.rst +0 -332
- jaclang/vendor/mypyc/doc/float_operations.rst +0 -50
- jaclang/vendor/mypyc/doc/future.md +0 -42
- jaclang/vendor/mypyc/doc/getting_started.rst +0 -240
- jaclang/vendor/mypyc/doc/index.rst +0 -61
- jaclang/vendor/mypyc/doc/int_operations.rst +0 -162
- jaclang/vendor/mypyc/doc/introduction.rst +0 -150
- jaclang/vendor/mypyc/doc/list_operations.rst +0 -65
- jaclang/vendor/mypyc/doc/make.bat +0 -35
- jaclang/vendor/mypyc/doc/native_classes.rst +0 -206
- jaclang/vendor/mypyc/doc/native_operations.rst +0 -55
- jaclang/vendor/mypyc/doc/performance_tips_and_tricks.rst +0 -244
- jaclang/vendor/mypyc/doc/set_operations.rst +0 -47
- jaclang/vendor/mypyc/doc/str_operations.rst +0 -35
- jaclang/vendor/mypyc/doc/tuple_operations.rst +0 -33
- jaclang/vendor/mypyc/doc/using_type_annotations.rst +0 -398
- jaclang/vendor/mypyc/errors.py +0 -29
- jaclang/vendor/mypyc/external/googletest/LICENSE +0 -28
- jaclang/vendor/mypyc/external/googletest/README.md +0 -280
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-death-test.h +0 -294
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-message.h +0 -250
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-param-test.h +0 -1444
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-param-test.h.pump +0 -510
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-printers.h +0 -993
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-spi.h +0 -232
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-test-part.h +0 -179
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest-typed-test.h +0 -263
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest.h +0 -2236
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest_pred_impl.h +0 -358
- jaclang/vendor/mypyc/external/googletest/include/gtest/gtest_prod.h +0 -58
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/custom/gtest-port.h +0 -69
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/custom/gtest-printers.h +0 -42
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/custom/gtest.h +0 -41
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-death-test-internal.h +0 -319
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-filepath.h +0 -206
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-internal.h +0 -1238
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-linked_ptr.h +0 -243
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-param-util-generated.h +0 -5146
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-param-util-generated.h.pump +0 -286
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-param-util.h +0 -731
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-port-arch.h +0 -93
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-port.h +0 -2560
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-string.h +0 -167
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-tuple.h +0 -1020
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-tuple.h.pump +0 -347
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-type-util.h +0 -3331
- jaclang/vendor/mypyc/external/googletest/include/gtest/internal/gtest-type-util.h.pump +0 -297
- jaclang/vendor/mypyc/external/googletest/make/Makefile +0 -61
- jaclang/vendor/mypyc/external/googletest/src/gtest-all.cc +0 -48
- jaclang/vendor/mypyc/external/googletest/src/gtest-death-test.cc +0 -1342
- jaclang/vendor/mypyc/external/googletest/src/gtest-filepath.cc +0 -387
- jaclang/vendor/mypyc/external/googletest/src/gtest-internal-inl.h +0 -1183
- jaclang/vendor/mypyc/external/googletest/src/gtest-port.cc +0 -1259
- jaclang/vendor/mypyc/external/googletest/src/gtest-printers.cc +0 -373
- jaclang/vendor/mypyc/external/googletest/src/gtest-test-part.cc +0 -110
- jaclang/vendor/mypyc/external/googletest/src/gtest-typed-test.cc +0 -118
- jaclang/vendor/mypyc/external/googletest/src/gtest.cc +0 -5388
- jaclang/vendor/mypyc/external/googletest/src/gtest_main.cc +0 -38
- jaclang/vendor/mypyc/ir/class_ir.py +0 -515
- jaclang/vendor/mypyc/ir/func_ir.py +0 -383
- jaclang/vendor/mypyc/ir/module_ir.py +0 -92
- jaclang/vendor/mypyc/ir/ops.py +0 -1690
- jaclang/vendor/mypyc/ir/pprint.py +0 -536
- jaclang/vendor/mypyc/ir/rtypes.py +0 -1070
- jaclang/vendor/mypyc/irbuild/ast_helpers.py +0 -120
- jaclang/vendor/mypyc/irbuild/builder.py +0 -1496
- jaclang/vendor/mypyc/irbuild/callable_class.py +0 -187
- jaclang/vendor/mypyc/irbuild/classdef.py +0 -906
- jaclang/vendor/mypyc/irbuild/constant_fold.py +0 -95
- jaclang/vendor/mypyc/irbuild/context.py +0 -186
- jaclang/vendor/mypyc/irbuild/env_class.py +0 -229
- jaclang/vendor/mypyc/irbuild/expression.py +0 -1128
- jaclang/vendor/mypyc/irbuild/for_helpers.py +0 -1124
- jaclang/vendor/mypyc/irbuild/format_str_tokenizer.py +0 -253
- jaclang/vendor/mypyc/irbuild/function.py +0 -1180
- jaclang/vendor/mypyc/irbuild/generator.py +0 -381
- jaclang/vendor/mypyc/irbuild/ll_builder.py +0 -2618
- jaclang/vendor/mypyc/irbuild/main.py +0 -153
- jaclang/vendor/mypyc/irbuild/mapper.py +0 -232
- jaclang/vendor/mypyc/irbuild/match.py +0 -380
- jaclang/vendor/mypyc/irbuild/nonlocalcontrol.py +0 -202
- jaclang/vendor/mypyc/irbuild/prebuildvisitor.py +0 -206
- jaclang/vendor/mypyc/irbuild/prepare.py +0 -667
- jaclang/vendor/mypyc/irbuild/specialize.py +0 -872
- jaclang/vendor/mypyc/irbuild/statement.py +0 -1083
- jaclang/vendor/mypyc/irbuild/targets.py +0 -59
- jaclang/vendor/mypyc/irbuild/util.py +0 -195
- jaclang/vendor/mypyc/irbuild/visitor.py +0 -401
- jaclang/vendor/mypyc/irbuild/vtable.py +0 -84
- jaclang/vendor/mypyc/lib-rt/CPy.h +0 -643
- jaclang/vendor/mypyc/lib-rt/bytes_ops.c +0 -143
- jaclang/vendor/mypyc/lib-rt/dict_ops.c +0 -446
- jaclang/vendor/mypyc/lib-rt/exc_ops.c +0 -259
- jaclang/vendor/mypyc/lib-rt/float_ops.c +0 -192
- jaclang/vendor/mypyc/lib-rt/generic_ops.c +0 -64
- jaclang/vendor/mypyc/lib-rt/getargs.c +0 -450
- jaclang/vendor/mypyc/lib-rt/getargsfast.c +0 -569
- jaclang/vendor/mypyc/lib-rt/init.c +0 -13
- jaclang/vendor/mypyc/lib-rt/int_ops.c +0 -803
- jaclang/vendor/mypyc/lib-rt/list_ops.c +0 -335
- jaclang/vendor/mypyc/lib-rt/misc_ops.c +0 -942
- jaclang/vendor/mypyc/lib-rt/module_shim.tmpl +0 -18
- jaclang/vendor/mypyc/lib-rt/mypyc_util.h +0 -118
- jaclang/vendor/mypyc/lib-rt/pythoncapi_compat.h +0 -497
- jaclang/vendor/mypyc/lib-rt/pythonsupport.h +0 -548
- jaclang/vendor/mypyc/lib-rt/set_ops.c +0 -17
- jaclang/vendor/mypyc/lib-rt/setup.py +0 -76
- jaclang/vendor/mypyc/lib-rt/str_ops.c +0 -241
- jaclang/vendor/mypyc/lib-rt/test_capi.cc +0 -585
- jaclang/vendor/mypyc/lib-rt/tuple_ops.c +0 -61
- jaclang/vendor/mypyc/namegen.py +0 -115
- jaclang/vendor/mypyc/options.py +0 -34
- jaclang/vendor/mypyc/primitives/bytes_ops.py +0 -101
- jaclang/vendor/mypyc/primitives/dict_ops.py +0 -328
- jaclang/vendor/mypyc/primitives/exc_ops.py +0 -110
- jaclang/vendor/mypyc/primitives/float_ops.py +0 -168
- jaclang/vendor/mypyc/primitives/generic_ops.py +0 -384
- jaclang/vendor/mypyc/primitives/int_ops.py +0 -313
- jaclang/vendor/mypyc/primitives/list_ops.py +0 -300
- jaclang/vendor/mypyc/primitives/misc_ops.py +0 -261
- jaclang/vendor/mypyc/primitives/registry.py +0 -323
- jaclang/vendor/mypyc/primitives/set_ops.py +0 -123
- jaclang/vendor/mypyc/primitives/str_ops.py +0 -229
- jaclang/vendor/mypyc/primitives/tuple_ops.py +0 -83
- jaclang/vendor/mypyc/rt_subtype.py +0 -78
- jaclang/vendor/mypyc/sametype.py +0 -86
- jaclang/vendor/mypyc/subtype.py +0 -97
- jaclang/vendor/mypyc/test/config.py +0 -13
- jaclang/vendor/mypyc/test/test_alwaysdefined.py +0 -50
- jaclang/vendor/mypyc/test/test_analysis.py +0 -93
- jaclang/vendor/mypyc/test/test_cheader.py +0 -45
- jaclang/vendor/mypyc/test/test_commandline.py +0 -82
- jaclang/vendor/mypyc/test/test_emit.py +0 -79
- jaclang/vendor/mypyc/test/test_emitclass.py +0 -42
- jaclang/vendor/mypyc/test/test_emitfunc.py +0 -975
- jaclang/vendor/mypyc/test/test_emitwrapper.py +0 -62
- jaclang/vendor/mypyc/test/test_exceptions.py +0 -64
- jaclang/vendor/mypyc/test/test_external.py +0 -53
- jaclang/vendor/mypyc/test/test_irbuild.py +0 -91
- jaclang/vendor/mypyc/test/test_ircheck.py +0 -210
- jaclang/vendor/mypyc/test/test_literals.py +0 -93
- jaclang/vendor/mypyc/test/test_namegen.py +0 -51
- jaclang/vendor/mypyc/test/test_pprint.py +0 -42
- jaclang/vendor/mypyc/test/test_rarray.py +0 -48
- jaclang/vendor/mypyc/test/test_refcount.py +0 -65
- jaclang/vendor/mypyc/test/test_run.py +0 -452
- jaclang/vendor/mypyc/test/test_serialization.py +0 -110
- jaclang/vendor/mypyc/test/test_struct.py +0 -120
- jaclang/vendor/mypyc/test/test_tuplename.py +0 -42
- jaclang/vendor/mypyc/test/test_typeops.py +0 -100
- jaclang/vendor/mypyc/test/testutil.py +0 -287
- jaclang/vendor/mypyc/test-data/alwaysdefined.test +0 -732
- jaclang/vendor/mypyc/test-data/analysis.test +0 -603
- jaclang/vendor/mypyc/test-data/commandline.test +0 -245
- jaclang/vendor/mypyc/test-data/driver/driver.py +0 -50
- jaclang/vendor/mypyc/test-data/exceptions-freq.test +0 -125
- jaclang/vendor/mypyc/test-data/exceptions.test +0 -713
- jaclang/vendor/mypyc/test-data/fixtures/ir.py +0 -850
- jaclang/vendor/mypyc/test-data/fixtures/testutil.py +0 -117
- jaclang/vendor/mypyc/test-data/fixtures/typing-full.pyi +0 -212
- jaclang/vendor/mypyc/test-data/irbuild-any.test +0 -238
- jaclang/vendor/mypyc/test-data/irbuild-basic.test +0 -3690
- jaclang/vendor/mypyc/test-data/irbuild-bool.test +0 -463
- jaclang/vendor/mypyc/test-data/irbuild-bytes.test +0 -184
- jaclang/vendor/mypyc/test-data/irbuild-classes.test +0 -1303
- jaclang/vendor/mypyc/test-data/irbuild-constant-fold.test +0 -480
- jaclang/vendor/mypyc/test-data/irbuild-dict.test +0 -585
- jaclang/vendor/mypyc/test-data/irbuild-dunders.test +0 -223
- jaclang/vendor/mypyc/test-data/irbuild-float.test +0 -497
- jaclang/vendor/mypyc/test-data/irbuild-generics.test +0 -151
- jaclang/vendor/mypyc/test-data/irbuild-glue-methods.test +0 -437
- jaclang/vendor/mypyc/test-data/irbuild-i16.test +0 -526
- jaclang/vendor/mypyc/test-data/irbuild-i32.test +0 -598
- jaclang/vendor/mypyc/test-data/irbuild-i64.test +0 -2164
- jaclang/vendor/mypyc/test-data/irbuild-int.test +0 -235
- jaclang/vendor/mypyc/test-data/irbuild-isinstance.test +0 -109
- jaclang/vendor/mypyc/test-data/irbuild-lists.test +0 -547
- jaclang/vendor/mypyc/test-data/irbuild-match.test +0 -1708
- jaclang/vendor/mypyc/test-data/irbuild-math.test +0 -64
- jaclang/vendor/mypyc/test-data/irbuild-nested.test +0 -807
- jaclang/vendor/mypyc/test-data/irbuild-optional.test +0 -536
- jaclang/vendor/mypyc/test-data/irbuild-set.test +0 -838
- jaclang/vendor/mypyc/test-data/irbuild-singledispatch.test +0 -257
- jaclang/vendor/mypyc/test-data/irbuild-statements.test +0 -1149
- jaclang/vendor/mypyc/test-data/irbuild-str.test +0 -314
- jaclang/vendor/mypyc/test-data/irbuild-strip-asserts.test +0 -12
- jaclang/vendor/mypyc/test-data/irbuild-try.test +0 -523
- jaclang/vendor/mypyc/test-data/irbuild-tuple.test +0 -462
- jaclang/vendor/mypyc/test-data/irbuild-u8.test +0 -543
- jaclang/vendor/mypyc/test-data/irbuild-unreachable.test +0 -241
- jaclang/vendor/mypyc/test-data/irbuild-vectorcall.test +0 -153
- jaclang/vendor/mypyc/test-data/refcount.test +0 -1588
- jaclang/vendor/mypyc/test-data/run-async.test +0 -145
- jaclang/vendor/mypyc/test-data/run-attrs.test +0 -318
- jaclang/vendor/mypyc/test-data/run-bench.test +0 -196
- jaclang/vendor/mypyc/test-data/run-bools.test +0 -229
- jaclang/vendor/mypyc/test-data/run-bytes.test +0 -302
- jaclang/vendor/mypyc/test-data/run-classes.test +0 -2505
- jaclang/vendor/mypyc/test-data/run-dicts.test +0 -334
- jaclang/vendor/mypyc/test-data/run-dunders.test +0 -945
- jaclang/vendor/mypyc/test-data/run-exceptions.test +0 -448
- jaclang/vendor/mypyc/test-data/run-floats.test +0 -516
- jaclang/vendor/mypyc/test-data/run-functions.test +0 -1310
- jaclang/vendor/mypyc/test-data/run-generators.test +0 -681
- jaclang/vendor/mypyc/test-data/run-i16.test +0 -338
- jaclang/vendor/mypyc/test-data/run-i32.test +0 -336
- jaclang/vendor/mypyc/test-data/run-i64.test +0 -1519
- jaclang/vendor/mypyc/test-data/run-imports.test +0 -265
- jaclang/vendor/mypyc/test-data/run-integers.test +0 -540
- jaclang/vendor/mypyc/test-data/run-lists.test +0 -411
- jaclang/vendor/mypyc/test-data/run-loops.test +0 -485
- jaclang/vendor/mypyc/test-data/run-match.test +0 -283
- jaclang/vendor/mypyc/test-data/run-math.test +0 -106
- jaclang/vendor/mypyc/test-data/run-misc.test +0 -1168
- jaclang/vendor/mypyc/test-data/run-multimodule.test +0 -887
- jaclang/vendor/mypyc/test-data/run-mypy-sim.test +0 -138
- jaclang/vendor/mypyc/test-data/run-primitives.test +0 -375
- jaclang/vendor/mypyc/test-data/run-python37.test +0 -159
- jaclang/vendor/mypyc/test-data/run-python38.test +0 -88
- jaclang/vendor/mypyc/test-data/run-sets.test +0 -150
- jaclang/vendor/mypyc/test-data/run-singledispatch.test +0 -698
- jaclang/vendor/mypyc/test-data/run-strings.test +0 -641
- jaclang/vendor/mypyc/test-data/run-traits.test +0 -411
- jaclang/vendor/mypyc/test-data/run-tuples.test +0 -258
- jaclang/vendor/mypyc/test-data/run-u8.test +0 -303
- jaclang/vendor/mypyc/transform/exceptions.py +0 -186
- jaclang/vendor/mypyc/transform/refcount.py +0 -317
- jaclang/vendor/mypyc/transform/uninit.py +0 -201
- jaclang/vendor/pluggy/LICENSE +0 -21
- jaclang/vendor/typing_extensions.py +0 -3073
- jaclang-0.6.2.dist-info/METADATA +0 -110
- jaclang-0.6.2.dist-info/RECORD +0 -1305
- jaclang-0.6.2.dist-info/WHEEL +0 -4
- jaclang-0.6.2.dist-info/entry_points.txt +0 -3
- /jaclang/{vendor/mypy/dmypy/__init__.py → py.typed} +0 -0
- /jaclang/{utils → pycore}/log.py +0 -0
- /jaclang/vendor/{mypy/plugins/__init__.py → attr/py.typed} +0 -0
- /jaclang/vendor/{mypy/server/__init__.py → attrs/py.typed} +0 -0
- /jaclang/vendor/{mypy/test/__init__.py → cattr/py.typed} +0 -0
- /jaclang/vendor/{mypy/test/meta/__init__.py → cattrs/py.typed} +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/concurrent/__init__.pyi → interegular/py.typed} +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/distutils/command/__init__.pyi → lsprotocol/py.typed} +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/distutils/command/bdist_packager.pyi → typeshed/lib/ts_utils/py.typed} +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/_bootlocale.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/antigravity.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/asynchat.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/asyncio/log.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/asyncio/mixins.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/bisect.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/collections/abc.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/email/mime → typeshed/stdlib/compression}/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/lib2to3 → typeshed/stdlib/compression/_common}/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/lib2to3/fixes → typeshed/stdlib/concurrent}/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/bcppcompiler.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/pydoc_data/__init__.pyi → typeshed/stdlib/distutils/command/bdist_packager.pyi} +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/config.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/errors.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/extension.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/msvccompiler.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/unixccompiler.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/distutils/version.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/email/contentmanager.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/email/encoders.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/urllib → typeshed/stdlib/email/mime}/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/email/mime/application.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/email/mime/audio.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/email/mime/image.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/email/mime/nonmultipart.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/ensurepip/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/grp.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/html/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/importlib/resources/readers.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/json/tool.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/wsgiref → typeshed/stdlib/lib2to3}/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/xml/etree → typeshed/stdlib/lib2to3/fixes}/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/lib2to3/pygram.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/multiprocessing/process.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/nis.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/os/path.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/pipes.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed/stdlib/xmlrpc → typeshed/stdlib/pydoc_data}/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/reprlib.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/rlcompleter.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/sndhdr.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/this.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/tkinter/simpledialog.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/unittest/signals.pyi +0 -0
- /jaclang/vendor/{mypyc/__init__.py → typeshed/stdlib/urllib/__init__.pyi} +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/urllib/robotparser.pyi +0 -0
- /jaclang/vendor/{mypyc/analysis/__init__.py → typeshed/stdlib/wsgiref/__init__.pyi} +0 -0
- /jaclang/vendor/{mypyc/codegen/__init__.py → typeshed/stdlib/xml/etree/__init__.pyi} +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/xml/etree/cElementTree.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/xml/parsers/__init__.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/xml/parsers/expat/errors.pyi +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/xml/parsers/expat/model.pyi +0 -0
- /jaclang/vendor/{mypyc/ir/__init__.py → typeshed/stdlib/xmlrpc/__init__.pyi} +0 -0
- /jaclang/vendor/{mypy/typeshed → typeshed}/stdlib/zipapp.pyi +0 -0
- /jaclang/vendor/{mypyc/irbuild/__init__.py → typeshed/stubs/Authlib/authlib/common/__init__.pyi} +0 -0
- /jaclang/vendor/{mypyc/primitives/__init__.py → typeshed/stubs/Authlib/authlib/integrations/__init__.pyi} +0 -0
- /jaclang/vendor/{mypyc/test/__init__.py → typeshed/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi} +0 -0
- /jaclang/vendor/{mypyc/transform/__init__.py → typeshed/stubs/Authlib/authlib/oidc/__init__.pyi} +0 -0
jaclang/vendor/mypy/types.py
DELETED
|
@@ -1,3816 +0,0 @@
|
|
|
1
|
-
"""Classes for representing mypy types."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
|
|
5
|
-
import sys
|
|
6
|
-
from abc import abstractmethod
|
|
7
|
-
from typing import (
|
|
8
|
-
TYPE_CHECKING,
|
|
9
|
-
Any,
|
|
10
|
-
ClassVar,
|
|
11
|
-
Dict,
|
|
12
|
-
Final,
|
|
13
|
-
Iterable,
|
|
14
|
-
NamedTuple,
|
|
15
|
-
NewType,
|
|
16
|
-
Sequence,
|
|
17
|
-
TypeVar,
|
|
18
|
-
Union,
|
|
19
|
-
cast,
|
|
20
|
-
)
|
|
21
|
-
from typing_extensions import Self, TypeAlias as _TypeAlias, TypeGuard, overload
|
|
22
|
-
|
|
23
|
-
import mypy.nodes
|
|
24
|
-
from mypy.bogus_type import Bogus
|
|
25
|
-
from mypy.nodes import (
|
|
26
|
-
ARG_POS,
|
|
27
|
-
ARG_STAR,
|
|
28
|
-
ARG_STAR2,
|
|
29
|
-
INVARIANT,
|
|
30
|
-
ArgKind,
|
|
31
|
-
FakeInfo,
|
|
32
|
-
FuncDef,
|
|
33
|
-
SymbolNode,
|
|
34
|
-
)
|
|
35
|
-
from mypy.options import Options
|
|
36
|
-
from mypy.state import state
|
|
37
|
-
from mypy.util import IdMapper
|
|
38
|
-
|
|
39
|
-
T = TypeVar("T")
|
|
40
|
-
|
|
41
|
-
JsonDict: _TypeAlias = Dict[str, Any]
|
|
42
|
-
|
|
43
|
-
# The set of all valid expressions that can currently be contained
|
|
44
|
-
# inside of a Literal[...].
|
|
45
|
-
#
|
|
46
|
-
# Literals can contain bytes and enum-values: we special-case both of these
|
|
47
|
-
# and store the value as a string. We rely on the fallback type that's also
|
|
48
|
-
# stored with the Literal to determine how a string is being used.
|
|
49
|
-
#
|
|
50
|
-
# TODO: confirm that we're happy with representing enums (and the
|
|
51
|
-
# other types) in the manner described above.
|
|
52
|
-
#
|
|
53
|
-
# Note: if we change the set of types included below, we must also
|
|
54
|
-
# make sure to audit the following methods:
|
|
55
|
-
#
|
|
56
|
-
# 1. types.LiteralType's serialize and deserialize methods: this method
|
|
57
|
-
# needs to make sure it can convert the below types into JSON and back.
|
|
58
|
-
#
|
|
59
|
-
# 2. types.LiteralType's 'value_repr` method: this method is ultimately used
|
|
60
|
-
# by TypeStrVisitor's visit_literal_type to generate a reasonable
|
|
61
|
-
# repr-able output.
|
|
62
|
-
#
|
|
63
|
-
# 3. server.astdiff.SnapshotTypeVisitor's visit_literal_type_method: this
|
|
64
|
-
# method assumes that the following types supports equality checks and
|
|
65
|
-
# hashability.
|
|
66
|
-
#
|
|
67
|
-
# Note: Although "Literal[None]" is a valid type, we internally always convert
|
|
68
|
-
# such a type directly into "None". So, "None" is not a valid parameter of
|
|
69
|
-
# LiteralType and is omitted from this list.
|
|
70
|
-
#
|
|
71
|
-
# Note: Float values are only used internally. They are not accepted within
|
|
72
|
-
# Literal[...].
|
|
73
|
-
LiteralValue: _TypeAlias = Union[int, str, bool, float]
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
# If we only import type_visitor in the middle of the file, mypy
|
|
77
|
-
# breaks, and if we do it at the top, it breaks at runtime because of
|
|
78
|
-
# import cycle issues, so we do it at the top while typechecking and
|
|
79
|
-
# then again in the middle at runtime.
|
|
80
|
-
# We should be able to remove this once we are switched to the new
|
|
81
|
-
# semantic analyzer!
|
|
82
|
-
if TYPE_CHECKING:
|
|
83
|
-
from mypy.type_visitor import (
|
|
84
|
-
SyntheticTypeVisitor as SyntheticTypeVisitor,
|
|
85
|
-
TypeVisitor as TypeVisitor,
|
|
86
|
-
)
|
|
87
|
-
|
|
88
|
-
TYPED_NAMEDTUPLE_NAMES: Final = ("typing.NamedTuple", "typing_extensions.NamedTuple")
|
|
89
|
-
|
|
90
|
-
# Supported names of TypedDict type constructors.
|
|
91
|
-
TPDICT_NAMES: Final = (
|
|
92
|
-
"typing.TypedDict",
|
|
93
|
-
"typing_extensions.TypedDict",
|
|
94
|
-
"mypy_extensions.TypedDict",
|
|
95
|
-
)
|
|
96
|
-
|
|
97
|
-
# Supported fallback instance type names for TypedDict types.
|
|
98
|
-
TPDICT_FB_NAMES: Final = (
|
|
99
|
-
"typing._TypedDict",
|
|
100
|
-
"typing_extensions._TypedDict",
|
|
101
|
-
"mypy_extensions._TypedDict",
|
|
102
|
-
)
|
|
103
|
-
|
|
104
|
-
# Supported names of Protocol base class.
|
|
105
|
-
PROTOCOL_NAMES: Final = ("typing.Protocol", "typing_extensions.Protocol")
|
|
106
|
-
|
|
107
|
-
# Supported TypeAlias names.
|
|
108
|
-
TYPE_ALIAS_NAMES: Final = ("typing.TypeAlias", "typing_extensions.TypeAlias")
|
|
109
|
-
|
|
110
|
-
# Supported Final type names.
|
|
111
|
-
FINAL_TYPE_NAMES: Final = ("typing.Final", "typing_extensions.Final")
|
|
112
|
-
|
|
113
|
-
# Supported @final decorator names.
|
|
114
|
-
FINAL_DECORATOR_NAMES: Final = ("typing.final", "typing_extensions.final")
|
|
115
|
-
|
|
116
|
-
# Supported @type_check_only names.
|
|
117
|
-
TYPE_CHECK_ONLY_NAMES: Final = (
|
|
118
|
-
"typing.type_check_only",
|
|
119
|
-
"typing_extensions.type_check_only",
|
|
120
|
-
)
|
|
121
|
-
|
|
122
|
-
# Supported Literal type names.
|
|
123
|
-
LITERAL_TYPE_NAMES: Final = ("typing.Literal", "typing_extensions.Literal")
|
|
124
|
-
|
|
125
|
-
# Supported Annotated type names.
|
|
126
|
-
ANNOTATED_TYPE_NAMES: Final = ("typing.Annotated", "typing_extensions.Annotated")
|
|
127
|
-
|
|
128
|
-
# Supported @deprecated type names
|
|
129
|
-
DEPRECATED_TYPE_NAMES: Final = ("warnings.deprecated", "typing_extensions.deprecated")
|
|
130
|
-
|
|
131
|
-
# We use this constant in various places when checking `tuple` subtyping:
|
|
132
|
-
TUPLE_LIKE_INSTANCE_NAMES: Final = (
|
|
133
|
-
"builtins.tuple",
|
|
134
|
-
"typing.Iterable",
|
|
135
|
-
"typing.Container",
|
|
136
|
-
"typing.Sequence",
|
|
137
|
-
"typing.Reversible",
|
|
138
|
-
)
|
|
139
|
-
|
|
140
|
-
IMPORTED_REVEAL_TYPE_NAMES: Final = (
|
|
141
|
-
"typing.reveal_type",
|
|
142
|
-
"typing_extensions.reveal_type",
|
|
143
|
-
)
|
|
144
|
-
REVEAL_TYPE_NAMES: Final = ("builtins.reveal_type", *IMPORTED_REVEAL_TYPE_NAMES)
|
|
145
|
-
|
|
146
|
-
ASSERT_TYPE_NAMES: Final = ("typing.assert_type", "typing_extensions.assert_type")
|
|
147
|
-
|
|
148
|
-
OVERLOAD_NAMES: Final = ("typing.overload", "typing_extensions.overload")
|
|
149
|
-
|
|
150
|
-
# Attributes that can optionally be defined in the body of a subclass of
|
|
151
|
-
# enum.Enum but are removed from the class __dict__ by EnumMeta.
|
|
152
|
-
ENUM_REMOVED_PROPS: Final = ("_ignore_", "_order_", "__order__")
|
|
153
|
-
|
|
154
|
-
NEVER_NAMES: Final = (
|
|
155
|
-
"typing.NoReturn",
|
|
156
|
-
"typing_extensions.NoReturn",
|
|
157
|
-
"mypy_extensions.NoReturn",
|
|
158
|
-
"typing.Never",
|
|
159
|
-
"typing_extensions.Never",
|
|
160
|
-
)
|
|
161
|
-
|
|
162
|
-
# Mypyc fixed-width native int types (compatible with builtins.int)
|
|
163
|
-
MYPYC_NATIVE_INT_NAMES: Final = (
|
|
164
|
-
"mypy_extensions.i64",
|
|
165
|
-
"mypy_extensions.i32",
|
|
166
|
-
"mypy_extensions.i16",
|
|
167
|
-
"mypy_extensions.u8",
|
|
168
|
-
)
|
|
169
|
-
|
|
170
|
-
DATACLASS_TRANSFORM_NAMES: Final = (
|
|
171
|
-
"typing.dataclass_transform",
|
|
172
|
-
"typing_extensions.dataclass_transform",
|
|
173
|
-
)
|
|
174
|
-
# Supported @override decorator names.
|
|
175
|
-
OVERRIDE_DECORATOR_NAMES: Final = ("typing.override", "typing_extensions.override")
|
|
176
|
-
|
|
177
|
-
# A placeholder used for Bogus[...] parameters
|
|
178
|
-
_dummy: Final[Any] = object()
|
|
179
|
-
|
|
180
|
-
# A placeholder for int parameters
|
|
181
|
-
_dummy_int: Final = -999999
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
class TypeOfAny:
|
|
185
|
-
"""
|
|
186
|
-
This class describes different types of Any. Each 'Any' can be of only one type at a time.
|
|
187
|
-
"""
|
|
188
|
-
|
|
189
|
-
__slots__ = ()
|
|
190
|
-
|
|
191
|
-
# Was this Any type inferred without a type annotation?
|
|
192
|
-
unannotated: Final = 1
|
|
193
|
-
# Does this Any come from an explicit type annotation?
|
|
194
|
-
explicit: Final = 2
|
|
195
|
-
# Does this come from an unfollowed import? See --disallow-any-unimported option
|
|
196
|
-
from_unimported_type: Final = 3
|
|
197
|
-
# Does this Any type come from omitted generics?
|
|
198
|
-
from_omitted_generics: Final = 4
|
|
199
|
-
# Does this Any come from an error?
|
|
200
|
-
from_error: Final = 5
|
|
201
|
-
# Is this a type that can't be represented in mypy's type system? For instance, type of
|
|
202
|
-
# call to NewType(...). Even though these types aren't real Anys, we treat them as such.
|
|
203
|
-
# Also used for variables named '_'.
|
|
204
|
-
special_form: Final = 6
|
|
205
|
-
# Does this Any come from interaction with another Any?
|
|
206
|
-
from_another_any: Final = 7
|
|
207
|
-
# Does this Any come from an implementation limitation/bug?
|
|
208
|
-
implementation_artifact: Final = 8
|
|
209
|
-
# Does this Any come from use in the suggestion engine? This is
|
|
210
|
-
# used to ignore Anys inserted by the suggestion engine when
|
|
211
|
-
# generating constraints.
|
|
212
|
-
suggestion_engine: Final = 9
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
def deserialize_type(data: JsonDict | str) -> Type:
|
|
216
|
-
if isinstance(data, str):
|
|
217
|
-
return Instance.deserialize(data)
|
|
218
|
-
classname = data[".class"]
|
|
219
|
-
method = deserialize_map.get(classname)
|
|
220
|
-
if method is not None:
|
|
221
|
-
return method(data)
|
|
222
|
-
raise NotImplementedError(f"unexpected .class {classname}")
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
class Type(mypy.nodes.Context):
|
|
226
|
-
"""Abstract base class for all types."""
|
|
227
|
-
|
|
228
|
-
__slots__ = ("_can_be_true", "_can_be_false")
|
|
229
|
-
# 'can_be_true' and 'can_be_false' mean whether the value of the
|
|
230
|
-
# expression can be true or false in a boolean context. They are useful
|
|
231
|
-
# when inferring the type of logic expressions like `x and y`.
|
|
232
|
-
#
|
|
233
|
-
# For example:
|
|
234
|
-
# * the literal `False` can't be true while `True` can.
|
|
235
|
-
# * a value with type `bool` can be true or false.
|
|
236
|
-
# * `None` can't be true
|
|
237
|
-
# * ...
|
|
238
|
-
|
|
239
|
-
def __init__(self, line: int = -1, column: int = -1) -> None:
|
|
240
|
-
super().__init__(line, column)
|
|
241
|
-
# Value of these can be -1 (use the default, lazy init), 0 (false) or 1 (true)
|
|
242
|
-
self._can_be_true = -1
|
|
243
|
-
self._can_be_false = -1
|
|
244
|
-
|
|
245
|
-
@property
|
|
246
|
-
def can_be_true(self) -> bool:
|
|
247
|
-
if self._can_be_true == -1: # Lazy init helps mypyc
|
|
248
|
-
self._can_be_true = self.can_be_true_default()
|
|
249
|
-
return bool(self._can_be_true)
|
|
250
|
-
|
|
251
|
-
@can_be_true.setter
|
|
252
|
-
def can_be_true(self, v: bool) -> None:
|
|
253
|
-
self._can_be_true = v
|
|
254
|
-
|
|
255
|
-
@property
|
|
256
|
-
def can_be_false(self) -> bool:
|
|
257
|
-
if self._can_be_false == -1: # Lazy init helps mypyc
|
|
258
|
-
self._can_be_false = self.can_be_false_default()
|
|
259
|
-
return bool(self._can_be_false)
|
|
260
|
-
|
|
261
|
-
@can_be_false.setter
|
|
262
|
-
def can_be_false(self, v: bool) -> None:
|
|
263
|
-
self._can_be_false = v
|
|
264
|
-
|
|
265
|
-
def can_be_true_default(self) -> bool:
|
|
266
|
-
return True
|
|
267
|
-
|
|
268
|
-
def can_be_false_default(self) -> bool:
|
|
269
|
-
return True
|
|
270
|
-
|
|
271
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
272
|
-
raise RuntimeError("Not implemented", type(self))
|
|
273
|
-
|
|
274
|
-
def __repr__(self) -> str:
|
|
275
|
-
return self.accept(TypeStrVisitor(options=Options()))
|
|
276
|
-
|
|
277
|
-
def str_with_options(self, options: Options) -> str:
|
|
278
|
-
return self.accept(TypeStrVisitor(options=options))
|
|
279
|
-
|
|
280
|
-
def serialize(self) -> JsonDict | str:
|
|
281
|
-
raise NotImplementedError(
|
|
282
|
-
f"Cannot serialize {self.__class__.__name__} instance"
|
|
283
|
-
)
|
|
284
|
-
|
|
285
|
-
@classmethod
|
|
286
|
-
def deserialize(cls, data: JsonDict) -> Type:
|
|
287
|
-
raise NotImplementedError(f"Cannot deserialize {cls.__name__} instance")
|
|
288
|
-
|
|
289
|
-
def is_singleton_type(self) -> bool:
|
|
290
|
-
return False
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
class TypeAliasType(Type):
|
|
294
|
-
"""A type alias to another type.
|
|
295
|
-
|
|
296
|
-
To support recursive type aliases we don't immediately expand a type alias
|
|
297
|
-
during semantic analysis, but create an instance of this type that records the target alias
|
|
298
|
-
definition node (mypy.nodes.TypeAlias) and type arguments (for generic aliases).
|
|
299
|
-
|
|
300
|
-
This is very similar to how TypeInfo vs Instance interact, where a recursive class-based
|
|
301
|
-
structure like
|
|
302
|
-
class Node:
|
|
303
|
-
value: int
|
|
304
|
-
children: List[Node]
|
|
305
|
-
can be represented in a tree-like manner.
|
|
306
|
-
"""
|
|
307
|
-
|
|
308
|
-
__slots__ = ("alias", "args", "type_ref")
|
|
309
|
-
|
|
310
|
-
def __init__(
|
|
311
|
-
self,
|
|
312
|
-
alias: mypy.nodes.TypeAlias | None,
|
|
313
|
-
args: list[Type],
|
|
314
|
-
line: int = -1,
|
|
315
|
-
column: int = -1,
|
|
316
|
-
) -> None:
|
|
317
|
-
super().__init__(line, column)
|
|
318
|
-
self.alias = alias
|
|
319
|
-
self.args = args
|
|
320
|
-
self.type_ref: str | None = None
|
|
321
|
-
|
|
322
|
-
def _expand_once(self) -> Type:
|
|
323
|
-
"""Expand to the target type exactly once.
|
|
324
|
-
|
|
325
|
-
This doesn't do full expansion, i.e. the result can contain another
|
|
326
|
-
(or even this same) type alias. Use this internal helper only when really needed,
|
|
327
|
-
its public wrapper mypy.types.get_proper_type() is preferred.
|
|
328
|
-
"""
|
|
329
|
-
assert self.alias is not None
|
|
330
|
-
if self.alias.no_args:
|
|
331
|
-
# We know that no_args=True aliases like L = List must have an instance
|
|
332
|
-
# as their target.
|
|
333
|
-
assert isinstance(self.alias.target, Instance) # type: ignore[misc]
|
|
334
|
-
return self.alias.target.copy_modified(args=self.args)
|
|
335
|
-
|
|
336
|
-
# TODO: this logic duplicates the one in expand_type_by_instance().
|
|
337
|
-
if self.alias.tvar_tuple_index is None:
|
|
338
|
-
mapping = {v.id: s for (v, s) in zip(self.alias.alias_tvars, self.args)}
|
|
339
|
-
else:
|
|
340
|
-
prefix = self.alias.tvar_tuple_index
|
|
341
|
-
suffix = len(self.alias.alias_tvars) - self.alias.tvar_tuple_index - 1
|
|
342
|
-
start, middle, end = split_with_prefix_and_suffix(
|
|
343
|
-
tuple(self.args), prefix, suffix
|
|
344
|
-
)
|
|
345
|
-
tvar = self.alias.alias_tvars[prefix]
|
|
346
|
-
assert isinstance(tvar, TypeVarTupleType)
|
|
347
|
-
mapping = {tvar.id: TupleType(list(middle), tvar.tuple_fallback)}
|
|
348
|
-
for tvar, sub in zip(
|
|
349
|
-
self.alias.alias_tvars[:prefix] + self.alias.alias_tvars[prefix + 1 :],
|
|
350
|
-
start + end,
|
|
351
|
-
):
|
|
352
|
-
mapping[tvar.id] = sub
|
|
353
|
-
|
|
354
|
-
new_tp = self.alias.target.accept(InstantiateAliasVisitor(mapping))
|
|
355
|
-
new_tp.accept(LocationSetter(self.line, self.column))
|
|
356
|
-
new_tp.line = self.line
|
|
357
|
-
new_tp.column = self.column
|
|
358
|
-
return new_tp
|
|
359
|
-
|
|
360
|
-
def _partial_expansion(self, nothing_args: bool = False) -> tuple[ProperType, bool]:
|
|
361
|
-
# Private method mostly for debugging and testing.
|
|
362
|
-
unroller = UnrollAliasVisitor(set())
|
|
363
|
-
if nothing_args:
|
|
364
|
-
alias = self.copy_modified(args=[UninhabitedType()] * len(self.args))
|
|
365
|
-
else:
|
|
366
|
-
alias = self
|
|
367
|
-
unrolled = alias.accept(unroller)
|
|
368
|
-
assert isinstance(unrolled, ProperType)
|
|
369
|
-
return unrolled, unroller.recursed
|
|
370
|
-
|
|
371
|
-
def expand_all_if_possible(self, nothing_args: bool = False) -> ProperType | None:
|
|
372
|
-
"""Attempt a full expansion of the type alias (including nested aliases).
|
|
373
|
-
|
|
374
|
-
If the expansion is not possible, i.e. the alias is (mutually-)recursive,
|
|
375
|
-
return None. If nothing_args is True, replace all type arguments with an
|
|
376
|
-
UninhabitedType() (used to detect recursively defined aliases).
|
|
377
|
-
"""
|
|
378
|
-
unrolled, recursed = self._partial_expansion(nothing_args=nothing_args)
|
|
379
|
-
if recursed:
|
|
380
|
-
return None
|
|
381
|
-
return unrolled
|
|
382
|
-
|
|
383
|
-
@property
|
|
384
|
-
def is_recursive(self) -> bool:
|
|
385
|
-
"""Whether this type alias is recursive.
|
|
386
|
-
|
|
387
|
-
Note this doesn't check generic alias arguments, but only if this alias
|
|
388
|
-
*definition* is recursive. The property value thus can be cached on the
|
|
389
|
-
underlying TypeAlias node. If you want to include all nested types, use
|
|
390
|
-
has_recursive_types() function.
|
|
391
|
-
"""
|
|
392
|
-
assert self.alias is not None, "Unfixed type alias"
|
|
393
|
-
is_recursive = self.alias._is_recursive
|
|
394
|
-
if is_recursive is None:
|
|
395
|
-
is_recursive = self.expand_all_if_possible(nothing_args=True) is None
|
|
396
|
-
# We cache the value on the underlying TypeAlias node as an optimization,
|
|
397
|
-
# since the value is the same for all instances of the same alias.
|
|
398
|
-
self.alias._is_recursive = is_recursive
|
|
399
|
-
return is_recursive
|
|
400
|
-
|
|
401
|
-
def can_be_true_default(self) -> bool:
|
|
402
|
-
if self.alias is not None:
|
|
403
|
-
return self.alias.target.can_be_true
|
|
404
|
-
return super().can_be_true_default()
|
|
405
|
-
|
|
406
|
-
def can_be_false_default(self) -> bool:
|
|
407
|
-
if self.alias is not None:
|
|
408
|
-
return self.alias.target.can_be_false
|
|
409
|
-
return super().can_be_false_default()
|
|
410
|
-
|
|
411
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
412
|
-
return visitor.visit_type_alias_type(self)
|
|
413
|
-
|
|
414
|
-
def __hash__(self) -> int:
|
|
415
|
-
return hash((self.alias, tuple(self.args)))
|
|
416
|
-
|
|
417
|
-
def __eq__(self, other: object) -> bool:
|
|
418
|
-
# Note: never use this to determine subtype relationships, use is_subtype().
|
|
419
|
-
if not isinstance(other, TypeAliasType):
|
|
420
|
-
return NotImplemented
|
|
421
|
-
return self.alias == other.alias and self.args == other.args
|
|
422
|
-
|
|
423
|
-
def serialize(self) -> JsonDict:
|
|
424
|
-
assert self.alias is not None
|
|
425
|
-
data: JsonDict = {
|
|
426
|
-
".class": "TypeAliasType",
|
|
427
|
-
"type_ref": self.alias.fullname,
|
|
428
|
-
"args": [arg.serialize() for arg in self.args],
|
|
429
|
-
}
|
|
430
|
-
return data
|
|
431
|
-
|
|
432
|
-
@classmethod
|
|
433
|
-
def deserialize(cls, data: JsonDict) -> TypeAliasType:
|
|
434
|
-
assert data[".class"] == "TypeAliasType"
|
|
435
|
-
args: list[Type] = []
|
|
436
|
-
if "args" in data:
|
|
437
|
-
args_list = data["args"]
|
|
438
|
-
assert isinstance(args_list, list)
|
|
439
|
-
args = [deserialize_type(arg) for arg in args_list]
|
|
440
|
-
alias = TypeAliasType(None, args)
|
|
441
|
-
alias.type_ref = data["type_ref"]
|
|
442
|
-
return alias
|
|
443
|
-
|
|
444
|
-
def copy_modified(self, *, args: list[Type] | None = None) -> TypeAliasType:
|
|
445
|
-
return TypeAliasType(
|
|
446
|
-
self.alias,
|
|
447
|
-
args if args is not None else self.args.copy(),
|
|
448
|
-
self.line,
|
|
449
|
-
self.column,
|
|
450
|
-
)
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
class TypeGuardedType(Type):
|
|
454
|
-
"""Only used by find_isinstance_check() etc."""
|
|
455
|
-
|
|
456
|
-
__slots__ = ("type_guard",)
|
|
457
|
-
|
|
458
|
-
def __init__(self, type_guard: Type) -> None:
|
|
459
|
-
super().__init__(line=type_guard.line, column=type_guard.column)
|
|
460
|
-
self.type_guard = type_guard
|
|
461
|
-
|
|
462
|
-
def __repr__(self) -> str:
|
|
463
|
-
return f"TypeGuard({self.type_guard})"
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
class RequiredType(Type):
|
|
467
|
-
"""Required[T] or NotRequired[T]. Only usable at top-level of a TypedDict definition."""
|
|
468
|
-
|
|
469
|
-
def __init__(self, item: Type, *, required: bool) -> None:
|
|
470
|
-
super().__init__(line=item.line, column=item.column)
|
|
471
|
-
self.item = item
|
|
472
|
-
self.required = required
|
|
473
|
-
|
|
474
|
-
def __repr__(self) -> str:
|
|
475
|
-
if self.required:
|
|
476
|
-
return f"Required[{self.item}]"
|
|
477
|
-
else:
|
|
478
|
-
return f"NotRequired[{self.item}]"
|
|
479
|
-
|
|
480
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
481
|
-
return self.item.accept(visitor)
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
class ProperType(Type):
|
|
485
|
-
"""Not a type alias.
|
|
486
|
-
|
|
487
|
-
Every type except TypeAliasType must inherit from this type.
|
|
488
|
-
"""
|
|
489
|
-
|
|
490
|
-
__slots__ = ()
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
class TypeVarId:
|
|
494
|
-
# A type variable is uniquely identified by its raw id and meta level.
|
|
495
|
-
|
|
496
|
-
# For plain variables (type parameters of generic classes and
|
|
497
|
-
# functions) raw ids are allocated by semantic analysis, using
|
|
498
|
-
# positive ids 1, 2, ... for generic class parameters and negative
|
|
499
|
-
# ids -1, ... for generic function type arguments. A special value 0
|
|
500
|
-
# is reserved for Self type variable (autogenerated). This convention
|
|
501
|
-
# is only used to keep type variable ids distinct when allocating
|
|
502
|
-
# them; the type checker makes no distinction between class and
|
|
503
|
-
# function type variables.
|
|
504
|
-
|
|
505
|
-
# Metavariables are allocated unique ids starting from 1.
|
|
506
|
-
raw_id: int = 0
|
|
507
|
-
|
|
508
|
-
# Level of the variable in type inference. Currently either 0 for
|
|
509
|
-
# declared types, or 1 for type inference metavariables.
|
|
510
|
-
meta_level: int = 0
|
|
511
|
-
|
|
512
|
-
# Class variable used for allocating fresh ids for metavariables.
|
|
513
|
-
next_raw_id: ClassVar[int] = 1
|
|
514
|
-
|
|
515
|
-
# Fullname of class (or potentially function in the future) which
|
|
516
|
-
# declares this type variable (not the fullname of the TypeVar
|
|
517
|
-
# definition!), or ''
|
|
518
|
-
namespace: str
|
|
519
|
-
|
|
520
|
-
def __init__(
|
|
521
|
-
self, raw_id: int, meta_level: int = 0, *, namespace: str = ""
|
|
522
|
-
) -> None:
|
|
523
|
-
self.raw_id = raw_id
|
|
524
|
-
self.meta_level = meta_level
|
|
525
|
-
self.namespace = namespace
|
|
526
|
-
|
|
527
|
-
@staticmethod
|
|
528
|
-
def new(meta_level: int) -> TypeVarId:
|
|
529
|
-
raw_id = TypeVarId.next_raw_id
|
|
530
|
-
TypeVarId.next_raw_id += 1
|
|
531
|
-
return TypeVarId(raw_id, meta_level)
|
|
532
|
-
|
|
533
|
-
def __repr__(self) -> str:
|
|
534
|
-
return self.raw_id.__repr__()
|
|
535
|
-
|
|
536
|
-
def __eq__(self, other: object) -> bool:
|
|
537
|
-
return (
|
|
538
|
-
isinstance(other, TypeVarId)
|
|
539
|
-
and self.raw_id == other.raw_id
|
|
540
|
-
and self.meta_level == other.meta_level
|
|
541
|
-
and self.namespace == other.namespace
|
|
542
|
-
)
|
|
543
|
-
|
|
544
|
-
def __ne__(self, other: object) -> bool:
|
|
545
|
-
return not (self == other)
|
|
546
|
-
|
|
547
|
-
def __hash__(self) -> int:
|
|
548
|
-
return hash((self.raw_id, self.meta_level, self.namespace))
|
|
549
|
-
|
|
550
|
-
def is_meta_var(self) -> bool:
|
|
551
|
-
return self.meta_level > 0
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
class TypeVarLikeType(ProperType):
|
|
555
|
-
__slots__ = ("name", "fullname", "id", "upper_bound", "default")
|
|
556
|
-
|
|
557
|
-
name: str # Name (may be qualified)
|
|
558
|
-
fullname: str # Fully qualified name
|
|
559
|
-
id: TypeVarId
|
|
560
|
-
upper_bound: Type
|
|
561
|
-
default: Type
|
|
562
|
-
|
|
563
|
-
def __init__(
|
|
564
|
-
self,
|
|
565
|
-
name: str,
|
|
566
|
-
fullname: str,
|
|
567
|
-
id: TypeVarId | int,
|
|
568
|
-
upper_bound: Type,
|
|
569
|
-
default: Type,
|
|
570
|
-
line: int = -1,
|
|
571
|
-
column: int = -1,
|
|
572
|
-
) -> None:
|
|
573
|
-
super().__init__(line, column)
|
|
574
|
-
self.name = name
|
|
575
|
-
self.fullname = fullname
|
|
576
|
-
if isinstance(id, int):
|
|
577
|
-
id = TypeVarId(id)
|
|
578
|
-
self.id = id
|
|
579
|
-
self.upper_bound = upper_bound
|
|
580
|
-
self.default = default
|
|
581
|
-
|
|
582
|
-
def serialize(self) -> JsonDict:
|
|
583
|
-
raise NotImplementedError
|
|
584
|
-
|
|
585
|
-
@classmethod
|
|
586
|
-
def deserialize(cls, data: JsonDict) -> TypeVarLikeType:
|
|
587
|
-
raise NotImplementedError
|
|
588
|
-
|
|
589
|
-
def copy_modified(self, *, id: TypeVarId, **kwargs: Any) -> Self:
|
|
590
|
-
raise NotImplementedError
|
|
591
|
-
|
|
592
|
-
@classmethod
|
|
593
|
-
def new_unification_variable(cls, old: Self) -> Self:
|
|
594
|
-
new_id = TypeVarId.new(meta_level=1)
|
|
595
|
-
return old.copy_modified(id=new_id)
|
|
596
|
-
|
|
597
|
-
def has_default(self) -> bool:
|
|
598
|
-
t = get_proper_type(self.default)
|
|
599
|
-
return not (
|
|
600
|
-
isinstance(t, AnyType) and t.type_of_any == TypeOfAny.from_omitted_generics
|
|
601
|
-
)
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
class TypeVarType(TypeVarLikeType):
|
|
605
|
-
"""Type that refers to a type variable."""
|
|
606
|
-
|
|
607
|
-
__slots__ = ("values", "variance")
|
|
608
|
-
|
|
609
|
-
values: list[Type] # Value restriction, empty list if no restriction
|
|
610
|
-
variance: int
|
|
611
|
-
|
|
612
|
-
def __init__(
|
|
613
|
-
self,
|
|
614
|
-
name: str,
|
|
615
|
-
fullname: str,
|
|
616
|
-
id: TypeVarId | int,
|
|
617
|
-
values: list[Type],
|
|
618
|
-
upper_bound: Type,
|
|
619
|
-
default: Type,
|
|
620
|
-
variance: int = INVARIANT,
|
|
621
|
-
line: int = -1,
|
|
622
|
-
column: int = -1,
|
|
623
|
-
) -> None:
|
|
624
|
-
super().__init__(name, fullname, id, upper_bound, default, line, column)
|
|
625
|
-
assert values is not None, "No restrictions must be represented by empty list"
|
|
626
|
-
self.values = values
|
|
627
|
-
self.variance = variance
|
|
628
|
-
|
|
629
|
-
def copy_modified(
|
|
630
|
-
self,
|
|
631
|
-
*,
|
|
632
|
-
values: Bogus[list[Type]] = _dummy,
|
|
633
|
-
upper_bound: Bogus[Type] = _dummy,
|
|
634
|
-
default: Bogus[Type] = _dummy,
|
|
635
|
-
id: Bogus[TypeVarId | int] = _dummy,
|
|
636
|
-
line: int = _dummy_int,
|
|
637
|
-
column: int = _dummy_int,
|
|
638
|
-
**kwargs: Any,
|
|
639
|
-
) -> TypeVarType:
|
|
640
|
-
return TypeVarType(
|
|
641
|
-
name=self.name,
|
|
642
|
-
fullname=self.fullname,
|
|
643
|
-
id=self.id if id is _dummy else id,
|
|
644
|
-
values=self.values if values is _dummy else values,
|
|
645
|
-
upper_bound=self.upper_bound if upper_bound is _dummy else upper_bound,
|
|
646
|
-
default=self.default if default is _dummy else default,
|
|
647
|
-
variance=self.variance,
|
|
648
|
-
line=self.line if line == _dummy_int else line,
|
|
649
|
-
column=self.column if column == _dummy_int else column,
|
|
650
|
-
)
|
|
651
|
-
|
|
652
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
653
|
-
return visitor.visit_type_var(self)
|
|
654
|
-
|
|
655
|
-
def __hash__(self) -> int:
|
|
656
|
-
return hash((self.id, self.upper_bound, tuple(self.values)))
|
|
657
|
-
|
|
658
|
-
def __eq__(self, other: object) -> bool:
|
|
659
|
-
if not isinstance(other, TypeVarType):
|
|
660
|
-
return NotImplemented
|
|
661
|
-
return (
|
|
662
|
-
self.id == other.id
|
|
663
|
-
and self.upper_bound == other.upper_bound
|
|
664
|
-
and self.values == other.values
|
|
665
|
-
)
|
|
666
|
-
|
|
667
|
-
def serialize(self) -> JsonDict:
|
|
668
|
-
assert not self.id.is_meta_var()
|
|
669
|
-
return {
|
|
670
|
-
".class": "TypeVarType",
|
|
671
|
-
"name": self.name,
|
|
672
|
-
"fullname": self.fullname,
|
|
673
|
-
"id": self.id.raw_id,
|
|
674
|
-
"namespace": self.id.namespace,
|
|
675
|
-
"values": [v.serialize() for v in self.values],
|
|
676
|
-
"upper_bound": self.upper_bound.serialize(),
|
|
677
|
-
"default": self.default.serialize(),
|
|
678
|
-
"variance": self.variance,
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
@classmethod
|
|
682
|
-
def deserialize(cls, data: JsonDict) -> TypeVarType:
|
|
683
|
-
assert data[".class"] == "TypeVarType"
|
|
684
|
-
return TypeVarType(
|
|
685
|
-
name=data["name"],
|
|
686
|
-
fullname=data["fullname"],
|
|
687
|
-
id=TypeVarId(data["id"], namespace=data["namespace"]),
|
|
688
|
-
values=[deserialize_type(v) for v in data["values"]],
|
|
689
|
-
upper_bound=deserialize_type(data["upper_bound"]),
|
|
690
|
-
default=deserialize_type(data["default"]),
|
|
691
|
-
variance=data["variance"],
|
|
692
|
-
)
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
class ParamSpecFlavor:
|
|
696
|
-
# Simple ParamSpec reference such as "P"
|
|
697
|
-
BARE: Final = 0
|
|
698
|
-
# P.args
|
|
699
|
-
ARGS: Final = 1
|
|
700
|
-
# P.kwargs
|
|
701
|
-
KWARGS: Final = 2
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
class ParamSpecType(TypeVarLikeType):
|
|
705
|
-
"""Type that refers to a ParamSpec.
|
|
706
|
-
|
|
707
|
-
A ParamSpec is a type variable that represents the parameter
|
|
708
|
-
types, names and kinds of a callable (i.e., the signature without
|
|
709
|
-
the return type).
|
|
710
|
-
|
|
711
|
-
This can be one of these forms
|
|
712
|
-
* P (ParamSpecFlavor.BARE)
|
|
713
|
-
* P.args (ParamSpecFlavor.ARGS)
|
|
714
|
-
* P.kwargs (ParamSpecFLavor.KWARGS)
|
|
715
|
-
|
|
716
|
-
The upper_bound is really used as a fallback type -- it's shared
|
|
717
|
-
with TypeVarType for simplicity. It can't be specified by the user
|
|
718
|
-
and the value is directly derived from the flavor (currently
|
|
719
|
-
always just 'object').
|
|
720
|
-
"""
|
|
721
|
-
|
|
722
|
-
__slots__ = ("flavor", "prefix")
|
|
723
|
-
|
|
724
|
-
flavor: int
|
|
725
|
-
prefix: Parameters
|
|
726
|
-
|
|
727
|
-
def __init__(
|
|
728
|
-
self,
|
|
729
|
-
name: str,
|
|
730
|
-
fullname: str,
|
|
731
|
-
id: TypeVarId | int,
|
|
732
|
-
flavor: int,
|
|
733
|
-
upper_bound: Type,
|
|
734
|
-
default: Type,
|
|
735
|
-
*,
|
|
736
|
-
line: int = -1,
|
|
737
|
-
column: int = -1,
|
|
738
|
-
prefix: Parameters | None = None,
|
|
739
|
-
) -> None:
|
|
740
|
-
super().__init__(
|
|
741
|
-
name, fullname, id, upper_bound, default, line=line, column=column
|
|
742
|
-
)
|
|
743
|
-
self.flavor = flavor
|
|
744
|
-
self.prefix = prefix or Parameters([], [], [])
|
|
745
|
-
|
|
746
|
-
def with_flavor(self, flavor: int) -> ParamSpecType:
|
|
747
|
-
return ParamSpecType(
|
|
748
|
-
self.name,
|
|
749
|
-
self.fullname,
|
|
750
|
-
self.id,
|
|
751
|
-
flavor,
|
|
752
|
-
upper_bound=self.upper_bound,
|
|
753
|
-
default=self.default,
|
|
754
|
-
prefix=self.prefix,
|
|
755
|
-
)
|
|
756
|
-
|
|
757
|
-
def copy_modified(
|
|
758
|
-
self,
|
|
759
|
-
*,
|
|
760
|
-
id: Bogus[TypeVarId | int] = _dummy,
|
|
761
|
-
flavor: int = _dummy_int,
|
|
762
|
-
prefix: Bogus[Parameters] = _dummy,
|
|
763
|
-
default: Bogus[Type] = _dummy,
|
|
764
|
-
**kwargs: Any,
|
|
765
|
-
) -> ParamSpecType:
|
|
766
|
-
return ParamSpecType(
|
|
767
|
-
self.name,
|
|
768
|
-
self.fullname,
|
|
769
|
-
id if id is not _dummy else self.id,
|
|
770
|
-
flavor if flavor != _dummy_int else self.flavor,
|
|
771
|
-
self.upper_bound,
|
|
772
|
-
default=default if default is not _dummy else self.default,
|
|
773
|
-
line=self.line,
|
|
774
|
-
column=self.column,
|
|
775
|
-
prefix=prefix if prefix is not _dummy else self.prefix,
|
|
776
|
-
)
|
|
777
|
-
|
|
778
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
779
|
-
return visitor.visit_param_spec(self)
|
|
780
|
-
|
|
781
|
-
def name_with_suffix(self) -> str:
|
|
782
|
-
n = self.name
|
|
783
|
-
if self.flavor == ParamSpecFlavor.ARGS:
|
|
784
|
-
return f"{n}.args"
|
|
785
|
-
elif self.flavor == ParamSpecFlavor.KWARGS:
|
|
786
|
-
return f"{n}.kwargs"
|
|
787
|
-
return n
|
|
788
|
-
|
|
789
|
-
def __hash__(self) -> int:
|
|
790
|
-
return hash((self.id, self.flavor, self.prefix))
|
|
791
|
-
|
|
792
|
-
def __eq__(self, other: object) -> bool:
|
|
793
|
-
if not isinstance(other, ParamSpecType):
|
|
794
|
-
return NotImplemented
|
|
795
|
-
# Upper bound can be ignored, since it's determined by flavor.
|
|
796
|
-
return (
|
|
797
|
-
self.id == other.id
|
|
798
|
-
and self.flavor == other.flavor
|
|
799
|
-
and self.prefix == other.prefix
|
|
800
|
-
)
|
|
801
|
-
|
|
802
|
-
def serialize(self) -> JsonDict:
|
|
803
|
-
assert not self.id.is_meta_var()
|
|
804
|
-
return {
|
|
805
|
-
".class": "ParamSpecType",
|
|
806
|
-
"name": self.name,
|
|
807
|
-
"fullname": self.fullname,
|
|
808
|
-
"id": self.id.raw_id,
|
|
809
|
-
"flavor": self.flavor,
|
|
810
|
-
"upper_bound": self.upper_bound.serialize(),
|
|
811
|
-
"default": self.default.serialize(),
|
|
812
|
-
"prefix": self.prefix.serialize(),
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
@classmethod
|
|
816
|
-
def deserialize(cls, data: JsonDict) -> ParamSpecType:
|
|
817
|
-
assert data[".class"] == "ParamSpecType"
|
|
818
|
-
return ParamSpecType(
|
|
819
|
-
data["name"],
|
|
820
|
-
data["fullname"],
|
|
821
|
-
data["id"],
|
|
822
|
-
data["flavor"],
|
|
823
|
-
deserialize_type(data["upper_bound"]),
|
|
824
|
-
deserialize_type(data["default"]),
|
|
825
|
-
prefix=Parameters.deserialize(data["prefix"]),
|
|
826
|
-
)
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
class TypeVarTupleType(TypeVarLikeType):
|
|
830
|
-
"""Type that refers to a TypeVarTuple.
|
|
831
|
-
|
|
832
|
-
See PEP646 for more information.
|
|
833
|
-
"""
|
|
834
|
-
|
|
835
|
-
__slots__ = ("tuple_fallback", "min_len")
|
|
836
|
-
|
|
837
|
-
def __init__(
|
|
838
|
-
self,
|
|
839
|
-
name: str,
|
|
840
|
-
fullname: str,
|
|
841
|
-
id: TypeVarId | int,
|
|
842
|
-
upper_bound: Type,
|
|
843
|
-
tuple_fallback: Instance,
|
|
844
|
-
default: Type,
|
|
845
|
-
*,
|
|
846
|
-
line: int = -1,
|
|
847
|
-
column: int = -1,
|
|
848
|
-
min_len: int = 0,
|
|
849
|
-
) -> None:
|
|
850
|
-
super().__init__(
|
|
851
|
-
name, fullname, id, upper_bound, default, line=line, column=column
|
|
852
|
-
)
|
|
853
|
-
self.tuple_fallback = tuple_fallback
|
|
854
|
-
# This value is not settable by a user. It is an internal-only thing to support
|
|
855
|
-
# len()-narrowing of variadic tuples.
|
|
856
|
-
self.min_len = min_len
|
|
857
|
-
|
|
858
|
-
def serialize(self) -> JsonDict:
|
|
859
|
-
assert not self.id.is_meta_var()
|
|
860
|
-
return {
|
|
861
|
-
".class": "TypeVarTupleType",
|
|
862
|
-
"name": self.name,
|
|
863
|
-
"fullname": self.fullname,
|
|
864
|
-
"id": self.id.raw_id,
|
|
865
|
-
"upper_bound": self.upper_bound.serialize(),
|
|
866
|
-
"tuple_fallback": self.tuple_fallback.serialize(),
|
|
867
|
-
"default": self.default.serialize(),
|
|
868
|
-
"min_len": self.min_len,
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
@classmethod
|
|
872
|
-
def deserialize(cls, data: JsonDict) -> TypeVarTupleType:
|
|
873
|
-
assert data[".class"] == "TypeVarTupleType"
|
|
874
|
-
return TypeVarTupleType(
|
|
875
|
-
data["name"],
|
|
876
|
-
data["fullname"],
|
|
877
|
-
data["id"],
|
|
878
|
-
deserialize_type(data["upper_bound"]),
|
|
879
|
-
Instance.deserialize(data["tuple_fallback"]),
|
|
880
|
-
deserialize_type(data["default"]),
|
|
881
|
-
min_len=data["min_len"],
|
|
882
|
-
)
|
|
883
|
-
|
|
884
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
885
|
-
return visitor.visit_type_var_tuple(self)
|
|
886
|
-
|
|
887
|
-
def __hash__(self) -> int:
|
|
888
|
-
return hash((self.id, self.min_len))
|
|
889
|
-
|
|
890
|
-
def __eq__(self, other: object) -> bool:
|
|
891
|
-
if not isinstance(other, TypeVarTupleType):
|
|
892
|
-
return NotImplemented
|
|
893
|
-
return self.id == other.id and self.min_len == other.min_len
|
|
894
|
-
|
|
895
|
-
def copy_modified(
|
|
896
|
-
self,
|
|
897
|
-
*,
|
|
898
|
-
id: Bogus[TypeVarId | int] = _dummy,
|
|
899
|
-
upper_bound: Bogus[Type] = _dummy,
|
|
900
|
-
default: Bogus[Type] = _dummy,
|
|
901
|
-
min_len: Bogus[int] = _dummy,
|
|
902
|
-
**kwargs: Any,
|
|
903
|
-
) -> TypeVarTupleType:
|
|
904
|
-
return TypeVarTupleType(
|
|
905
|
-
self.name,
|
|
906
|
-
self.fullname,
|
|
907
|
-
self.id if id is _dummy else id,
|
|
908
|
-
self.upper_bound if upper_bound is _dummy else upper_bound,
|
|
909
|
-
self.tuple_fallback,
|
|
910
|
-
self.default if default is _dummy else default,
|
|
911
|
-
line=self.line,
|
|
912
|
-
column=self.column,
|
|
913
|
-
min_len=self.min_len if min_len is _dummy else min_len,
|
|
914
|
-
)
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
class UnboundType(ProperType):
|
|
918
|
-
"""Instance type that has not been bound during semantic analysis."""
|
|
919
|
-
|
|
920
|
-
__slots__ = (
|
|
921
|
-
"name",
|
|
922
|
-
"args",
|
|
923
|
-
"optional",
|
|
924
|
-
"empty_tuple_index",
|
|
925
|
-
"original_str_expr",
|
|
926
|
-
"original_str_fallback",
|
|
927
|
-
)
|
|
928
|
-
|
|
929
|
-
def __init__(
|
|
930
|
-
self,
|
|
931
|
-
name: str | None,
|
|
932
|
-
args: Sequence[Type] | None = None,
|
|
933
|
-
line: int = -1,
|
|
934
|
-
column: int = -1,
|
|
935
|
-
optional: bool = False,
|
|
936
|
-
empty_tuple_index: bool = False,
|
|
937
|
-
original_str_expr: str | None = None,
|
|
938
|
-
original_str_fallback: str | None = None,
|
|
939
|
-
) -> None:
|
|
940
|
-
super().__init__(line, column)
|
|
941
|
-
if not args:
|
|
942
|
-
args = []
|
|
943
|
-
assert name is not None
|
|
944
|
-
self.name = name
|
|
945
|
-
self.args = tuple(args)
|
|
946
|
-
# Should this type be wrapped in an Optional?
|
|
947
|
-
self.optional = optional
|
|
948
|
-
# Special case for X[()]
|
|
949
|
-
self.empty_tuple_index = empty_tuple_index
|
|
950
|
-
# If this UnboundType was originally defined as a str or bytes, keep track of
|
|
951
|
-
# the original contents of that string-like thing. This way, if this UnboundExpr
|
|
952
|
-
# ever shows up inside of a LiteralType, we can determine whether that
|
|
953
|
-
# Literal[...] is valid or not. E.g. Literal[foo] is most likely invalid
|
|
954
|
-
# (unless 'foo' is an alias for another literal or something) and
|
|
955
|
-
# Literal["foo"] most likely is.
|
|
956
|
-
#
|
|
957
|
-
# We keep track of the entire string instead of just using a boolean flag
|
|
958
|
-
# so we can distinguish between things like Literal["foo"] vs
|
|
959
|
-
# Literal[" foo "].
|
|
960
|
-
#
|
|
961
|
-
# We also keep track of what the original base fallback type was supposed to be
|
|
962
|
-
# so we don't have to try and recompute it later
|
|
963
|
-
self.original_str_expr = original_str_expr
|
|
964
|
-
self.original_str_fallback = original_str_fallback
|
|
965
|
-
|
|
966
|
-
def copy_modified(self, args: Bogus[Sequence[Type] | None] = _dummy) -> UnboundType:
|
|
967
|
-
if args is _dummy:
|
|
968
|
-
args = self.args
|
|
969
|
-
return UnboundType(
|
|
970
|
-
name=self.name,
|
|
971
|
-
args=args,
|
|
972
|
-
line=self.line,
|
|
973
|
-
column=self.column,
|
|
974
|
-
optional=self.optional,
|
|
975
|
-
empty_tuple_index=self.empty_tuple_index,
|
|
976
|
-
original_str_expr=self.original_str_expr,
|
|
977
|
-
original_str_fallback=self.original_str_fallback,
|
|
978
|
-
)
|
|
979
|
-
|
|
980
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
981
|
-
return visitor.visit_unbound_type(self)
|
|
982
|
-
|
|
983
|
-
def __hash__(self) -> int:
|
|
984
|
-
return hash(
|
|
985
|
-
(self.name, self.optional, tuple(self.args), self.original_str_expr)
|
|
986
|
-
)
|
|
987
|
-
|
|
988
|
-
def __eq__(self, other: object) -> bool:
|
|
989
|
-
if not isinstance(other, UnboundType):
|
|
990
|
-
return NotImplemented
|
|
991
|
-
return (
|
|
992
|
-
self.name == other.name
|
|
993
|
-
and self.optional == other.optional
|
|
994
|
-
and self.args == other.args
|
|
995
|
-
and self.original_str_expr == other.original_str_expr
|
|
996
|
-
and self.original_str_fallback == other.original_str_fallback
|
|
997
|
-
)
|
|
998
|
-
|
|
999
|
-
def serialize(self) -> JsonDict:
|
|
1000
|
-
return {
|
|
1001
|
-
".class": "UnboundType",
|
|
1002
|
-
"name": self.name,
|
|
1003
|
-
"args": [a.serialize() for a in self.args],
|
|
1004
|
-
"expr": self.original_str_expr,
|
|
1005
|
-
"expr_fallback": self.original_str_fallback,
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
@classmethod
|
|
1009
|
-
def deserialize(cls, data: JsonDict) -> UnboundType:
|
|
1010
|
-
assert data[".class"] == "UnboundType"
|
|
1011
|
-
return UnboundType(
|
|
1012
|
-
data["name"],
|
|
1013
|
-
[deserialize_type(a) for a in data["args"]],
|
|
1014
|
-
original_str_expr=data["expr"],
|
|
1015
|
-
original_str_fallback=data["expr_fallback"],
|
|
1016
|
-
)
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
class CallableArgument(ProperType):
|
|
1020
|
-
"""Represents a Arg(type, 'name') inside a Callable's type list.
|
|
1021
|
-
|
|
1022
|
-
Note that this is a synthetic type for helping parse ASTs, not a real type.
|
|
1023
|
-
"""
|
|
1024
|
-
|
|
1025
|
-
__slots__ = ("typ", "name", "constructor")
|
|
1026
|
-
|
|
1027
|
-
typ: Type
|
|
1028
|
-
name: str | None
|
|
1029
|
-
constructor: str | None
|
|
1030
|
-
|
|
1031
|
-
def __init__(
|
|
1032
|
-
self,
|
|
1033
|
-
typ: Type,
|
|
1034
|
-
name: str | None,
|
|
1035
|
-
constructor: str | None,
|
|
1036
|
-
line: int = -1,
|
|
1037
|
-
column: int = -1,
|
|
1038
|
-
) -> None:
|
|
1039
|
-
super().__init__(line, column)
|
|
1040
|
-
self.typ = typ
|
|
1041
|
-
self.name = name
|
|
1042
|
-
self.constructor = constructor
|
|
1043
|
-
|
|
1044
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1045
|
-
assert isinstance(visitor, SyntheticTypeVisitor)
|
|
1046
|
-
ret: T = visitor.visit_callable_argument(self)
|
|
1047
|
-
return ret
|
|
1048
|
-
|
|
1049
|
-
def serialize(self) -> JsonDict:
|
|
1050
|
-
assert False, "Synthetic types don't serialize"
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
class TypeList(ProperType):
|
|
1054
|
-
"""Information about argument types and names [...].
|
|
1055
|
-
|
|
1056
|
-
This is used for the arguments of a Callable type, i.e. for
|
|
1057
|
-
[arg, ...] in Callable[[arg, ...], ret]. This is not a real type
|
|
1058
|
-
but a syntactic AST construct. UnboundTypes can also have TypeList
|
|
1059
|
-
types before they are processed into Callable types.
|
|
1060
|
-
"""
|
|
1061
|
-
|
|
1062
|
-
__slots__ = ("items",)
|
|
1063
|
-
|
|
1064
|
-
items: list[Type]
|
|
1065
|
-
|
|
1066
|
-
def __init__(self, items: list[Type], line: int = -1, column: int = -1) -> None:
|
|
1067
|
-
super().__init__(line, column)
|
|
1068
|
-
self.items = items
|
|
1069
|
-
|
|
1070
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1071
|
-
assert isinstance(visitor, SyntheticTypeVisitor)
|
|
1072
|
-
ret: T = visitor.visit_type_list(self)
|
|
1073
|
-
return ret
|
|
1074
|
-
|
|
1075
|
-
def serialize(self) -> JsonDict:
|
|
1076
|
-
assert False, "Synthetic types don't serialize"
|
|
1077
|
-
|
|
1078
|
-
def __hash__(self) -> int:
|
|
1079
|
-
return hash(tuple(self.items))
|
|
1080
|
-
|
|
1081
|
-
def __eq__(self, other: object) -> bool:
|
|
1082
|
-
return isinstance(other, TypeList) and self.items == other.items
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
class UnpackType(ProperType):
|
|
1086
|
-
"""Type operator Unpack from PEP646. Can be either with Unpack[]
|
|
1087
|
-
or unpacking * syntax.
|
|
1088
|
-
|
|
1089
|
-
The inner type should be either a TypeVarTuple, or a variable length tuple.
|
|
1090
|
-
In an exceptional case of callable star argument it can be a fixed length tuple.
|
|
1091
|
-
|
|
1092
|
-
Note: the above restrictions are only guaranteed by normalizations after semantic
|
|
1093
|
-
analysis, if your code needs to handle UnpackType *during* semantic analysis, it is
|
|
1094
|
-
wild west, technically anything can be present in the wrapped type.
|
|
1095
|
-
"""
|
|
1096
|
-
|
|
1097
|
-
__slots__ = ["type", "from_star_syntax"]
|
|
1098
|
-
|
|
1099
|
-
def __init__(
|
|
1100
|
-
self,
|
|
1101
|
-
typ: Type,
|
|
1102
|
-
line: int = -1,
|
|
1103
|
-
column: int = -1,
|
|
1104
|
-
from_star_syntax: bool = False,
|
|
1105
|
-
) -> None:
|
|
1106
|
-
super().__init__(line, column)
|
|
1107
|
-
self.type = typ
|
|
1108
|
-
self.from_star_syntax = from_star_syntax
|
|
1109
|
-
|
|
1110
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1111
|
-
return visitor.visit_unpack_type(self)
|
|
1112
|
-
|
|
1113
|
-
def serialize(self) -> JsonDict:
|
|
1114
|
-
return {".class": "UnpackType", "type": self.type.serialize()}
|
|
1115
|
-
|
|
1116
|
-
@classmethod
|
|
1117
|
-
def deserialize(cls, data: JsonDict) -> UnpackType:
|
|
1118
|
-
assert data[".class"] == "UnpackType"
|
|
1119
|
-
typ = data["type"]
|
|
1120
|
-
return UnpackType(deserialize_type(typ))
|
|
1121
|
-
|
|
1122
|
-
def __hash__(self) -> int:
|
|
1123
|
-
return hash(self.type)
|
|
1124
|
-
|
|
1125
|
-
def __eq__(self, other: object) -> bool:
|
|
1126
|
-
return isinstance(other, UnpackType) and self.type == other.type
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
class AnyType(ProperType):
|
|
1130
|
-
"""The type 'Any'."""
|
|
1131
|
-
|
|
1132
|
-
__slots__ = ("type_of_any", "source_any", "missing_import_name")
|
|
1133
|
-
|
|
1134
|
-
def __init__(
|
|
1135
|
-
self,
|
|
1136
|
-
type_of_any: int,
|
|
1137
|
-
source_any: AnyType | None = None,
|
|
1138
|
-
missing_import_name: str | None = None,
|
|
1139
|
-
line: int = -1,
|
|
1140
|
-
column: int = -1,
|
|
1141
|
-
) -> None:
|
|
1142
|
-
super().__init__(line, column)
|
|
1143
|
-
self.type_of_any = type_of_any
|
|
1144
|
-
# If this Any was created as a result of interacting with another 'Any', record the source
|
|
1145
|
-
# and use it in reports.
|
|
1146
|
-
self.source_any = source_any
|
|
1147
|
-
if source_any and source_any.source_any:
|
|
1148
|
-
self.source_any = source_any.source_any
|
|
1149
|
-
|
|
1150
|
-
if source_any is None:
|
|
1151
|
-
self.missing_import_name = missing_import_name
|
|
1152
|
-
else:
|
|
1153
|
-
self.missing_import_name = source_any.missing_import_name
|
|
1154
|
-
|
|
1155
|
-
# Only unimported type anys and anys from other anys should have an import name
|
|
1156
|
-
assert missing_import_name is None or type_of_any in (
|
|
1157
|
-
TypeOfAny.from_unimported_type,
|
|
1158
|
-
TypeOfAny.from_another_any,
|
|
1159
|
-
)
|
|
1160
|
-
# Only Anys that come from another Any can have source_any.
|
|
1161
|
-
assert type_of_any != TypeOfAny.from_another_any or source_any is not None
|
|
1162
|
-
# We should not have chains of Anys.
|
|
1163
|
-
assert (
|
|
1164
|
-
not self.source_any
|
|
1165
|
-
or self.source_any.type_of_any != TypeOfAny.from_another_any
|
|
1166
|
-
)
|
|
1167
|
-
|
|
1168
|
-
@property
|
|
1169
|
-
def is_from_error(self) -> bool:
|
|
1170
|
-
return self.type_of_any == TypeOfAny.from_error
|
|
1171
|
-
|
|
1172
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1173
|
-
return visitor.visit_any(self)
|
|
1174
|
-
|
|
1175
|
-
def copy_modified(
|
|
1176
|
-
self,
|
|
1177
|
-
# Mark with Bogus because _dummy is just an object (with type Any)
|
|
1178
|
-
type_of_any: int = _dummy_int,
|
|
1179
|
-
original_any: Bogus[AnyType | None] = _dummy,
|
|
1180
|
-
) -> AnyType:
|
|
1181
|
-
if type_of_any == _dummy_int:
|
|
1182
|
-
type_of_any = self.type_of_any
|
|
1183
|
-
if original_any is _dummy:
|
|
1184
|
-
original_any = self.source_any
|
|
1185
|
-
return AnyType(
|
|
1186
|
-
type_of_any=type_of_any,
|
|
1187
|
-
source_any=original_any,
|
|
1188
|
-
missing_import_name=self.missing_import_name,
|
|
1189
|
-
line=self.line,
|
|
1190
|
-
column=self.column,
|
|
1191
|
-
)
|
|
1192
|
-
|
|
1193
|
-
def __hash__(self) -> int:
|
|
1194
|
-
return hash(AnyType)
|
|
1195
|
-
|
|
1196
|
-
def __eq__(self, other: object) -> bool:
|
|
1197
|
-
return isinstance(other, AnyType)
|
|
1198
|
-
|
|
1199
|
-
def serialize(self) -> JsonDict:
|
|
1200
|
-
return {
|
|
1201
|
-
".class": "AnyType",
|
|
1202
|
-
"type_of_any": self.type_of_any,
|
|
1203
|
-
"source_any": (
|
|
1204
|
-
self.source_any.serialize() if self.source_any is not None else None
|
|
1205
|
-
),
|
|
1206
|
-
"missing_import_name": self.missing_import_name,
|
|
1207
|
-
}
|
|
1208
|
-
|
|
1209
|
-
@classmethod
|
|
1210
|
-
def deserialize(cls, data: JsonDict) -> AnyType:
|
|
1211
|
-
assert data[".class"] == "AnyType"
|
|
1212
|
-
source = data["source_any"]
|
|
1213
|
-
return AnyType(
|
|
1214
|
-
data["type_of_any"],
|
|
1215
|
-
AnyType.deserialize(source) if source is not None else None,
|
|
1216
|
-
data["missing_import_name"],
|
|
1217
|
-
)
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
class UninhabitedType(ProperType):
|
|
1221
|
-
"""This type has no members.
|
|
1222
|
-
|
|
1223
|
-
This type is the bottom type.
|
|
1224
|
-
With strict Optional checking, it is the only common subtype between all
|
|
1225
|
-
other types, which allows `meet` to be well defined. Without strict
|
|
1226
|
-
Optional checking, NoneType fills this role.
|
|
1227
|
-
|
|
1228
|
-
In general, for any type T:
|
|
1229
|
-
join(UninhabitedType, T) = T
|
|
1230
|
-
meet(UninhabitedType, T) = UninhabitedType
|
|
1231
|
-
is_subtype(UninhabitedType, T) = True
|
|
1232
|
-
"""
|
|
1233
|
-
|
|
1234
|
-
__slots__ = ("ambiguous", "is_noreturn")
|
|
1235
|
-
|
|
1236
|
-
is_noreturn: bool # Does this come from a NoReturn? Purely for error messages.
|
|
1237
|
-
# It is important to track whether this is an actual NoReturn type, or just a result
|
|
1238
|
-
# of ambiguous type inference, in the latter case we don't want to mark a branch as
|
|
1239
|
-
# unreachable in binder.
|
|
1240
|
-
ambiguous: bool # Is this a result of inference for a variable without constraints?
|
|
1241
|
-
|
|
1242
|
-
def __init__(
|
|
1243
|
-
self, is_noreturn: bool = False, line: int = -1, column: int = -1
|
|
1244
|
-
) -> None:
|
|
1245
|
-
super().__init__(line, column)
|
|
1246
|
-
self.is_noreturn = is_noreturn
|
|
1247
|
-
self.ambiguous = False
|
|
1248
|
-
|
|
1249
|
-
def can_be_true_default(self) -> bool:
|
|
1250
|
-
return False
|
|
1251
|
-
|
|
1252
|
-
def can_be_false_default(self) -> bool:
|
|
1253
|
-
return False
|
|
1254
|
-
|
|
1255
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1256
|
-
return visitor.visit_uninhabited_type(self)
|
|
1257
|
-
|
|
1258
|
-
def __hash__(self) -> int:
|
|
1259
|
-
return hash(UninhabitedType)
|
|
1260
|
-
|
|
1261
|
-
def __eq__(self, other: object) -> bool:
|
|
1262
|
-
return isinstance(other, UninhabitedType)
|
|
1263
|
-
|
|
1264
|
-
def serialize(self) -> JsonDict:
|
|
1265
|
-
return {".class": "UninhabitedType", "is_noreturn": self.is_noreturn}
|
|
1266
|
-
|
|
1267
|
-
@classmethod
|
|
1268
|
-
def deserialize(cls, data: JsonDict) -> UninhabitedType:
|
|
1269
|
-
assert data[".class"] == "UninhabitedType"
|
|
1270
|
-
return UninhabitedType(is_noreturn=data["is_noreturn"])
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
class NoneType(ProperType):
|
|
1274
|
-
"""The type of 'None'.
|
|
1275
|
-
|
|
1276
|
-
This type can be written by users as 'None'.
|
|
1277
|
-
"""
|
|
1278
|
-
|
|
1279
|
-
__slots__ = ()
|
|
1280
|
-
|
|
1281
|
-
def __init__(self, line: int = -1, column: int = -1) -> None:
|
|
1282
|
-
super().__init__(line, column)
|
|
1283
|
-
|
|
1284
|
-
def can_be_true_default(self) -> bool:
|
|
1285
|
-
return False
|
|
1286
|
-
|
|
1287
|
-
def __hash__(self) -> int:
|
|
1288
|
-
return hash(NoneType)
|
|
1289
|
-
|
|
1290
|
-
def __eq__(self, other: object) -> bool:
|
|
1291
|
-
return isinstance(other, NoneType)
|
|
1292
|
-
|
|
1293
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1294
|
-
return visitor.visit_none_type(self)
|
|
1295
|
-
|
|
1296
|
-
def serialize(self) -> JsonDict:
|
|
1297
|
-
return {".class": "NoneType"}
|
|
1298
|
-
|
|
1299
|
-
@classmethod
|
|
1300
|
-
def deserialize(cls, data: JsonDict) -> NoneType:
|
|
1301
|
-
assert data[".class"] == "NoneType"
|
|
1302
|
-
return NoneType()
|
|
1303
|
-
|
|
1304
|
-
def is_singleton_type(self) -> bool:
|
|
1305
|
-
return True
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
# NoneType used to be called NoneTyp so to avoid needlessly breaking
|
|
1309
|
-
# external plugins we keep that alias here.
|
|
1310
|
-
NoneTyp = NoneType
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
class ErasedType(ProperType):
|
|
1314
|
-
"""Placeholder for an erased type.
|
|
1315
|
-
|
|
1316
|
-
This is used during type inference. This has the special property that
|
|
1317
|
-
it is ignored during type inference.
|
|
1318
|
-
"""
|
|
1319
|
-
|
|
1320
|
-
__slots__ = ()
|
|
1321
|
-
|
|
1322
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1323
|
-
return visitor.visit_erased_type(self)
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
class DeletedType(ProperType):
|
|
1327
|
-
"""Type of deleted variables.
|
|
1328
|
-
|
|
1329
|
-
These can be used as lvalues but not rvalues.
|
|
1330
|
-
"""
|
|
1331
|
-
|
|
1332
|
-
__slots__ = ("source",)
|
|
1333
|
-
|
|
1334
|
-
source: str | None # May be None; name that generated this value
|
|
1335
|
-
|
|
1336
|
-
def __init__(
|
|
1337
|
-
self, source: str | None = None, line: int = -1, column: int = -1
|
|
1338
|
-
) -> None:
|
|
1339
|
-
super().__init__(line, column)
|
|
1340
|
-
self.source = source
|
|
1341
|
-
|
|
1342
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1343
|
-
return visitor.visit_deleted_type(self)
|
|
1344
|
-
|
|
1345
|
-
def serialize(self) -> JsonDict:
|
|
1346
|
-
return {".class": "DeletedType", "source": self.source}
|
|
1347
|
-
|
|
1348
|
-
@classmethod
|
|
1349
|
-
def deserialize(cls, data: JsonDict) -> DeletedType:
|
|
1350
|
-
assert data[".class"] == "DeletedType"
|
|
1351
|
-
return DeletedType(data["source"])
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
# Fake TypeInfo to be used as a placeholder during Instance de-serialization.
|
|
1355
|
-
NOT_READY: Final = mypy.nodes.FakeInfo("De-serialization failure: TypeInfo not fixed")
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
class ExtraAttrs:
|
|
1359
|
-
"""Summary of module attributes and types.
|
|
1360
|
-
|
|
1361
|
-
This is used for instances of types.ModuleType, because they can have different
|
|
1362
|
-
attributes per instance, and for type narrowing with hasattr() checks.
|
|
1363
|
-
"""
|
|
1364
|
-
|
|
1365
|
-
def __init__(
|
|
1366
|
-
self,
|
|
1367
|
-
attrs: dict[str, Type],
|
|
1368
|
-
immutable: set[str] | None = None,
|
|
1369
|
-
mod_name: str | None = None,
|
|
1370
|
-
) -> None:
|
|
1371
|
-
self.attrs = attrs
|
|
1372
|
-
if immutable is None:
|
|
1373
|
-
immutable = set()
|
|
1374
|
-
self.immutable = immutable
|
|
1375
|
-
self.mod_name = mod_name
|
|
1376
|
-
|
|
1377
|
-
def __hash__(self) -> int:
|
|
1378
|
-
return hash((tuple(self.attrs.items()), tuple(sorted(self.immutable))))
|
|
1379
|
-
|
|
1380
|
-
def __eq__(self, other: object) -> bool:
|
|
1381
|
-
if not isinstance(other, ExtraAttrs):
|
|
1382
|
-
return NotImplemented
|
|
1383
|
-
return self.attrs == other.attrs and self.immutable == other.immutable
|
|
1384
|
-
|
|
1385
|
-
def copy(self) -> ExtraAttrs:
|
|
1386
|
-
return ExtraAttrs(self.attrs.copy(), self.immutable.copy(), self.mod_name)
|
|
1387
|
-
|
|
1388
|
-
def __repr__(self) -> str:
|
|
1389
|
-
return f"ExtraAttrs({self.attrs!r}, {self.immutable!r}, {self.mod_name!r})"
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
class Instance(ProperType):
|
|
1393
|
-
"""An instance type of form C[T1, ..., Tn].
|
|
1394
|
-
|
|
1395
|
-
The list of type variables may be empty.
|
|
1396
|
-
|
|
1397
|
-
Several types have fallbacks to `Instance`, because in Python everything is an object
|
|
1398
|
-
and this concept is impossible to express without intersection types. We therefore use
|
|
1399
|
-
fallbacks for all "non-special" (like UninhabitedType, ErasedType etc) types.
|
|
1400
|
-
"""
|
|
1401
|
-
|
|
1402
|
-
__slots__ = (
|
|
1403
|
-
"type",
|
|
1404
|
-
"args",
|
|
1405
|
-
"invalid",
|
|
1406
|
-
"type_ref",
|
|
1407
|
-
"last_known_value",
|
|
1408
|
-
"_hash",
|
|
1409
|
-
"extra_attrs",
|
|
1410
|
-
)
|
|
1411
|
-
|
|
1412
|
-
def __init__(
|
|
1413
|
-
self,
|
|
1414
|
-
typ: mypy.nodes.TypeInfo,
|
|
1415
|
-
args: Sequence[Type],
|
|
1416
|
-
line: int = -1,
|
|
1417
|
-
column: int = -1,
|
|
1418
|
-
*,
|
|
1419
|
-
last_known_value: LiteralType | None = None,
|
|
1420
|
-
extra_attrs: ExtraAttrs | None = None,
|
|
1421
|
-
) -> None:
|
|
1422
|
-
super().__init__(line, column)
|
|
1423
|
-
self.type = typ
|
|
1424
|
-
self.args = tuple(args)
|
|
1425
|
-
self.type_ref: str | None = None
|
|
1426
|
-
|
|
1427
|
-
# True if recovered after incorrect number of type arguments error
|
|
1428
|
-
self.invalid = False
|
|
1429
|
-
|
|
1430
|
-
# This field keeps track of the underlying Literal[...] value associated with
|
|
1431
|
-
# this instance, if one is known.
|
|
1432
|
-
#
|
|
1433
|
-
# This field is set whenever possible within expressions, but is erased upon
|
|
1434
|
-
# variable assignment (see erasetype.remove_instance_last_known_values) unless
|
|
1435
|
-
# the variable is declared to be final.
|
|
1436
|
-
#
|
|
1437
|
-
# For example, consider the following program:
|
|
1438
|
-
#
|
|
1439
|
-
# a = 1
|
|
1440
|
-
# b: Final[int] = 2
|
|
1441
|
-
# c: Final = 3
|
|
1442
|
-
# print(a + b + c + 4)
|
|
1443
|
-
#
|
|
1444
|
-
# The 'Instance' objects associated with the expressions '1', '2', '3', and '4' will
|
|
1445
|
-
# have last_known_values of type Literal[1], Literal[2], Literal[3], and Literal[4]
|
|
1446
|
-
# respectively. However, the Instance object assigned to 'a' and 'b' will have their
|
|
1447
|
-
# last_known_value erased: variable 'a' is mutable; variable 'b' was declared to be
|
|
1448
|
-
# specifically an int.
|
|
1449
|
-
#
|
|
1450
|
-
# Or more broadly, this field lets this Instance "remember" its original declaration
|
|
1451
|
-
# when applicable. We want this behavior because we want implicit Final declarations
|
|
1452
|
-
# to act pretty much identically with constants: we should be able to replace any
|
|
1453
|
-
# places where we use some Final variable with the original value and get the same
|
|
1454
|
-
# type-checking behavior. For example, we want this program:
|
|
1455
|
-
#
|
|
1456
|
-
# def expects_literal(x: Literal[3]) -> None: pass
|
|
1457
|
-
# var: Final = 3
|
|
1458
|
-
# expects_literal(var)
|
|
1459
|
-
#
|
|
1460
|
-
# ...to type-check in the exact same way as if we had written the program like this:
|
|
1461
|
-
#
|
|
1462
|
-
# def expects_literal(x: Literal[3]) -> None: pass
|
|
1463
|
-
# expects_literal(3)
|
|
1464
|
-
#
|
|
1465
|
-
# In order to make this work (especially with literal types), we need var's type
|
|
1466
|
-
# (an Instance) to remember the "original" value.
|
|
1467
|
-
#
|
|
1468
|
-
# Preserving this value within expressions is useful for similar reasons.
|
|
1469
|
-
#
|
|
1470
|
-
# Currently most of mypy will ignore this field and will continue to treat this type like
|
|
1471
|
-
# a regular Instance. We end up using this field only when we are explicitly within a
|
|
1472
|
-
# Literal context.
|
|
1473
|
-
self.last_known_value = last_known_value
|
|
1474
|
-
|
|
1475
|
-
# Cached hash value
|
|
1476
|
-
self._hash = -1
|
|
1477
|
-
|
|
1478
|
-
# Additional attributes defined per instance of this type. For example modules
|
|
1479
|
-
# have different attributes per instance of types.ModuleType. This is intended
|
|
1480
|
-
# to be "short-lived", we don't serialize it, and even don't store as variable type.
|
|
1481
|
-
self.extra_attrs = extra_attrs
|
|
1482
|
-
|
|
1483
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1484
|
-
return visitor.visit_instance(self)
|
|
1485
|
-
|
|
1486
|
-
def __hash__(self) -> int:
|
|
1487
|
-
if self._hash == -1:
|
|
1488
|
-
self._hash = hash(
|
|
1489
|
-
(self.type, self.args, self.last_known_value, self.extra_attrs)
|
|
1490
|
-
)
|
|
1491
|
-
return self._hash
|
|
1492
|
-
|
|
1493
|
-
def __eq__(self, other: object) -> bool:
|
|
1494
|
-
if not isinstance(other, Instance):
|
|
1495
|
-
return NotImplemented
|
|
1496
|
-
return (
|
|
1497
|
-
self.type == other.type
|
|
1498
|
-
and self.args == other.args
|
|
1499
|
-
and self.last_known_value == other.last_known_value
|
|
1500
|
-
and self.extra_attrs == other.extra_attrs
|
|
1501
|
-
)
|
|
1502
|
-
|
|
1503
|
-
def serialize(self) -> JsonDict | str:
|
|
1504
|
-
assert self.type is not None
|
|
1505
|
-
type_ref = self.type.fullname
|
|
1506
|
-
if not self.args and not self.last_known_value:
|
|
1507
|
-
return type_ref
|
|
1508
|
-
data: JsonDict = {".class": "Instance"}
|
|
1509
|
-
data["type_ref"] = type_ref
|
|
1510
|
-
data["args"] = [arg.serialize() for arg in self.args]
|
|
1511
|
-
if self.last_known_value is not None:
|
|
1512
|
-
data["last_known_value"] = self.last_known_value.serialize()
|
|
1513
|
-
return data
|
|
1514
|
-
|
|
1515
|
-
@classmethod
|
|
1516
|
-
def deserialize(cls, data: JsonDict | str) -> Instance:
|
|
1517
|
-
if isinstance(data, str):
|
|
1518
|
-
inst = Instance(NOT_READY, [])
|
|
1519
|
-
inst.type_ref = data
|
|
1520
|
-
return inst
|
|
1521
|
-
assert data[".class"] == "Instance"
|
|
1522
|
-
args: list[Type] = []
|
|
1523
|
-
if "args" in data:
|
|
1524
|
-
args_list = data["args"]
|
|
1525
|
-
assert isinstance(args_list, list)
|
|
1526
|
-
args = [deserialize_type(arg) for arg in args_list]
|
|
1527
|
-
inst = Instance(NOT_READY, args)
|
|
1528
|
-
inst.type_ref = data["type_ref"] # Will be fixed up by fixup.py later.
|
|
1529
|
-
if "last_known_value" in data:
|
|
1530
|
-
inst.last_known_value = LiteralType.deserialize(data["last_known_value"])
|
|
1531
|
-
return inst
|
|
1532
|
-
|
|
1533
|
-
def copy_modified(
|
|
1534
|
-
self,
|
|
1535
|
-
*,
|
|
1536
|
-
args: Bogus[list[Type]] = _dummy,
|
|
1537
|
-
last_known_value: Bogus[LiteralType | None] = _dummy,
|
|
1538
|
-
) -> Instance:
|
|
1539
|
-
new = Instance(
|
|
1540
|
-
self.type,
|
|
1541
|
-
args if args is not _dummy else self.args,
|
|
1542
|
-
self.line,
|
|
1543
|
-
self.column,
|
|
1544
|
-
last_known_value=(
|
|
1545
|
-
last_known_value
|
|
1546
|
-
if last_known_value is not _dummy
|
|
1547
|
-
else self.last_known_value
|
|
1548
|
-
),
|
|
1549
|
-
)
|
|
1550
|
-
# We intentionally don't copy the extra_attrs here, so they will be erased.
|
|
1551
|
-
new.can_be_true = self.can_be_true
|
|
1552
|
-
new.can_be_false = self.can_be_false
|
|
1553
|
-
return new
|
|
1554
|
-
|
|
1555
|
-
def copy_with_extra_attr(self, name: str, typ: Type) -> Instance:
|
|
1556
|
-
if self.extra_attrs:
|
|
1557
|
-
existing_attrs = self.extra_attrs.copy()
|
|
1558
|
-
else:
|
|
1559
|
-
existing_attrs = ExtraAttrs({}, set(), None)
|
|
1560
|
-
existing_attrs.attrs[name] = typ
|
|
1561
|
-
new = self.copy_modified()
|
|
1562
|
-
new.extra_attrs = existing_attrs
|
|
1563
|
-
return new
|
|
1564
|
-
|
|
1565
|
-
def is_singleton_type(self) -> bool:
|
|
1566
|
-
# TODO:
|
|
1567
|
-
# Also make this return True if the type corresponds to NotImplemented?
|
|
1568
|
-
return (
|
|
1569
|
-
self.type.is_enum
|
|
1570
|
-
and len(self.get_enum_values()) == 1
|
|
1571
|
-
or self.type.fullname == "builtins.ellipsis"
|
|
1572
|
-
)
|
|
1573
|
-
|
|
1574
|
-
def get_enum_values(self) -> list[str]:
|
|
1575
|
-
"""Return the list of values for an Enum."""
|
|
1576
|
-
return [
|
|
1577
|
-
name
|
|
1578
|
-
for name, sym in self.type.names.items()
|
|
1579
|
-
if isinstance(sym.node, mypy.nodes.Var)
|
|
1580
|
-
]
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
class FunctionLike(ProperType):
|
|
1584
|
-
"""Abstract base class for function types."""
|
|
1585
|
-
|
|
1586
|
-
__slots__ = ("fallback",)
|
|
1587
|
-
|
|
1588
|
-
fallback: Instance
|
|
1589
|
-
|
|
1590
|
-
def __init__(self, line: int = -1, column: int = -1) -> None:
|
|
1591
|
-
super().__init__(line, column)
|
|
1592
|
-
self._can_be_false = False
|
|
1593
|
-
|
|
1594
|
-
@abstractmethod
|
|
1595
|
-
def is_type_obj(self) -> bool:
|
|
1596
|
-
pass
|
|
1597
|
-
|
|
1598
|
-
@abstractmethod
|
|
1599
|
-
def type_object(self) -> mypy.nodes.TypeInfo:
|
|
1600
|
-
pass
|
|
1601
|
-
|
|
1602
|
-
@property
|
|
1603
|
-
@abstractmethod
|
|
1604
|
-
def items(self) -> list[CallableType]:
|
|
1605
|
-
pass
|
|
1606
|
-
|
|
1607
|
-
@abstractmethod
|
|
1608
|
-
def with_name(self, name: str) -> FunctionLike:
|
|
1609
|
-
pass
|
|
1610
|
-
|
|
1611
|
-
@abstractmethod
|
|
1612
|
-
def get_name(self) -> str | None:
|
|
1613
|
-
pass
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
class FormalArgument(NamedTuple):
|
|
1617
|
-
name: str | None
|
|
1618
|
-
pos: int | None
|
|
1619
|
-
typ: Type
|
|
1620
|
-
required: bool
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
class Parameters(ProperType):
|
|
1624
|
-
"""Type that represents the parameters to a function.
|
|
1625
|
-
|
|
1626
|
-
Used for ParamSpec analysis. Note that by convention we handle this
|
|
1627
|
-
type as a Callable without return type, not as a "tuple with names",
|
|
1628
|
-
so that it behaves contravariantly, in particular [x: int] <: [int].
|
|
1629
|
-
"""
|
|
1630
|
-
|
|
1631
|
-
__slots__ = (
|
|
1632
|
-
"arg_types",
|
|
1633
|
-
"arg_kinds",
|
|
1634
|
-
"arg_names",
|
|
1635
|
-
"min_args",
|
|
1636
|
-
"is_ellipsis_args",
|
|
1637
|
-
# TODO: variables don't really belong here, but they are used to allow hacky support
|
|
1638
|
-
# for forall . Foo[[x: T], T] by capturing generic callable with ParamSpec, see #15909
|
|
1639
|
-
"variables",
|
|
1640
|
-
"imprecise_arg_kinds",
|
|
1641
|
-
)
|
|
1642
|
-
|
|
1643
|
-
def __init__(
|
|
1644
|
-
self,
|
|
1645
|
-
arg_types: Sequence[Type],
|
|
1646
|
-
arg_kinds: list[ArgKind],
|
|
1647
|
-
arg_names: Sequence[str | None],
|
|
1648
|
-
*,
|
|
1649
|
-
variables: Sequence[TypeVarLikeType] | None = None,
|
|
1650
|
-
is_ellipsis_args: bool = False,
|
|
1651
|
-
imprecise_arg_kinds: bool = False,
|
|
1652
|
-
line: int = -1,
|
|
1653
|
-
column: int = -1,
|
|
1654
|
-
) -> None:
|
|
1655
|
-
super().__init__(line, column)
|
|
1656
|
-
self.arg_types = list(arg_types)
|
|
1657
|
-
self.arg_kinds = arg_kinds
|
|
1658
|
-
self.arg_names = list(arg_names)
|
|
1659
|
-
assert len(arg_types) == len(arg_kinds) == len(arg_names)
|
|
1660
|
-
assert not any(isinstance(t, Parameters) for t in arg_types)
|
|
1661
|
-
self.min_args = arg_kinds.count(ARG_POS)
|
|
1662
|
-
self.is_ellipsis_args = is_ellipsis_args
|
|
1663
|
-
self.variables = variables or []
|
|
1664
|
-
self.imprecise_arg_kinds = imprecise_arg_kinds
|
|
1665
|
-
|
|
1666
|
-
def copy_modified(
|
|
1667
|
-
self,
|
|
1668
|
-
arg_types: Bogus[Sequence[Type]] = _dummy,
|
|
1669
|
-
arg_kinds: Bogus[list[ArgKind]] = _dummy,
|
|
1670
|
-
arg_names: Bogus[Sequence[str | None]] = _dummy,
|
|
1671
|
-
*,
|
|
1672
|
-
variables: Bogus[Sequence[TypeVarLikeType]] = _dummy,
|
|
1673
|
-
is_ellipsis_args: Bogus[bool] = _dummy,
|
|
1674
|
-
imprecise_arg_kinds: Bogus[bool] = _dummy,
|
|
1675
|
-
) -> Parameters:
|
|
1676
|
-
return Parameters(
|
|
1677
|
-
arg_types=arg_types if arg_types is not _dummy else self.arg_types,
|
|
1678
|
-
arg_kinds=arg_kinds if arg_kinds is not _dummy else self.arg_kinds,
|
|
1679
|
-
arg_names=arg_names if arg_names is not _dummy else self.arg_names,
|
|
1680
|
-
is_ellipsis_args=(
|
|
1681
|
-
is_ellipsis_args
|
|
1682
|
-
if is_ellipsis_args is not _dummy
|
|
1683
|
-
else self.is_ellipsis_args
|
|
1684
|
-
),
|
|
1685
|
-
variables=variables if variables is not _dummy else self.variables,
|
|
1686
|
-
imprecise_arg_kinds=(
|
|
1687
|
-
imprecise_arg_kinds
|
|
1688
|
-
if imprecise_arg_kinds is not _dummy
|
|
1689
|
-
else self.imprecise_arg_kinds
|
|
1690
|
-
),
|
|
1691
|
-
)
|
|
1692
|
-
|
|
1693
|
-
# TODO: here is a lot of code duplication with Callable type, fix this.
|
|
1694
|
-
def var_arg(self) -> FormalArgument | None:
|
|
1695
|
-
"""The formal argument for *args."""
|
|
1696
|
-
for position, (type, kind) in enumerate(zip(self.arg_types, self.arg_kinds)):
|
|
1697
|
-
if kind == ARG_STAR:
|
|
1698
|
-
return FormalArgument(None, position, type, False)
|
|
1699
|
-
return None
|
|
1700
|
-
|
|
1701
|
-
def kw_arg(self) -> FormalArgument | None:
|
|
1702
|
-
"""The formal argument for **kwargs."""
|
|
1703
|
-
for position, (type, kind) in enumerate(zip(self.arg_types, self.arg_kinds)):
|
|
1704
|
-
if kind == ARG_STAR2:
|
|
1705
|
-
return FormalArgument(None, position, type, False)
|
|
1706
|
-
return None
|
|
1707
|
-
|
|
1708
|
-
def formal_arguments(self, include_star_args: bool = False) -> list[FormalArgument]:
|
|
1709
|
-
"""Yields the formal arguments corresponding to this callable, ignoring *arg and **kwargs.
|
|
1710
|
-
|
|
1711
|
-
To handle *args and **kwargs, use the 'callable.var_args' and 'callable.kw_args' fields,
|
|
1712
|
-
if they are not None.
|
|
1713
|
-
|
|
1714
|
-
If you really want to include star args in the yielded output, set the
|
|
1715
|
-
'include_star_args' parameter to 'True'."""
|
|
1716
|
-
args = []
|
|
1717
|
-
done_with_positional = False
|
|
1718
|
-
for i in range(len(self.arg_types)):
|
|
1719
|
-
kind = self.arg_kinds[i]
|
|
1720
|
-
if kind.is_named() or kind.is_star():
|
|
1721
|
-
done_with_positional = True
|
|
1722
|
-
if not include_star_args and kind.is_star():
|
|
1723
|
-
continue
|
|
1724
|
-
|
|
1725
|
-
required = kind.is_required()
|
|
1726
|
-
pos = None if done_with_positional else i
|
|
1727
|
-
arg = FormalArgument(self.arg_names[i], pos, self.arg_types[i], required)
|
|
1728
|
-
args.append(arg)
|
|
1729
|
-
return args
|
|
1730
|
-
|
|
1731
|
-
def argument_by_name(self, name: str | None) -> FormalArgument | None:
|
|
1732
|
-
if name is None:
|
|
1733
|
-
return None
|
|
1734
|
-
seen_star = False
|
|
1735
|
-
for i, (arg_name, kind, typ) in enumerate(
|
|
1736
|
-
zip(self.arg_names, self.arg_kinds, self.arg_types)
|
|
1737
|
-
):
|
|
1738
|
-
# No more positional arguments after these.
|
|
1739
|
-
if kind.is_named() or kind.is_star():
|
|
1740
|
-
seen_star = True
|
|
1741
|
-
if kind.is_star():
|
|
1742
|
-
continue
|
|
1743
|
-
if arg_name == name:
|
|
1744
|
-
position = None if seen_star else i
|
|
1745
|
-
return FormalArgument(name, position, typ, kind.is_required())
|
|
1746
|
-
return self.try_synthesizing_arg_from_kwarg(name)
|
|
1747
|
-
|
|
1748
|
-
def argument_by_position(self, position: int | None) -> FormalArgument | None:
|
|
1749
|
-
if position is None:
|
|
1750
|
-
return None
|
|
1751
|
-
if position >= len(self.arg_names):
|
|
1752
|
-
return self.try_synthesizing_arg_from_vararg(position)
|
|
1753
|
-
name, kind, typ = (
|
|
1754
|
-
self.arg_names[position],
|
|
1755
|
-
self.arg_kinds[position],
|
|
1756
|
-
self.arg_types[position],
|
|
1757
|
-
)
|
|
1758
|
-
if kind.is_positional():
|
|
1759
|
-
return FormalArgument(name, position, typ, kind == ARG_POS)
|
|
1760
|
-
else:
|
|
1761
|
-
return self.try_synthesizing_arg_from_vararg(position)
|
|
1762
|
-
|
|
1763
|
-
def try_synthesizing_arg_from_kwarg(
|
|
1764
|
-
self, name: str | None
|
|
1765
|
-
) -> FormalArgument | None:
|
|
1766
|
-
kw_arg = self.kw_arg()
|
|
1767
|
-
if kw_arg is not None:
|
|
1768
|
-
return FormalArgument(name, None, kw_arg.typ, False)
|
|
1769
|
-
else:
|
|
1770
|
-
return None
|
|
1771
|
-
|
|
1772
|
-
def try_synthesizing_arg_from_vararg(
|
|
1773
|
-
self, position: int | None
|
|
1774
|
-
) -> FormalArgument | None:
|
|
1775
|
-
var_arg = self.var_arg()
|
|
1776
|
-
if var_arg is not None:
|
|
1777
|
-
return FormalArgument(None, position, var_arg.typ, False)
|
|
1778
|
-
else:
|
|
1779
|
-
return None
|
|
1780
|
-
|
|
1781
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
1782
|
-
return visitor.visit_parameters(self)
|
|
1783
|
-
|
|
1784
|
-
def serialize(self) -> JsonDict:
|
|
1785
|
-
return {
|
|
1786
|
-
".class": "Parameters",
|
|
1787
|
-
"arg_types": [t.serialize() for t in self.arg_types],
|
|
1788
|
-
"arg_kinds": [int(x.value) for x in self.arg_kinds],
|
|
1789
|
-
"arg_names": self.arg_names,
|
|
1790
|
-
"variables": [tv.serialize() for tv in self.variables],
|
|
1791
|
-
"imprecise_arg_kinds": self.imprecise_arg_kinds,
|
|
1792
|
-
}
|
|
1793
|
-
|
|
1794
|
-
@classmethod
|
|
1795
|
-
def deserialize(cls, data: JsonDict) -> Parameters:
|
|
1796
|
-
assert data[".class"] == "Parameters"
|
|
1797
|
-
return Parameters(
|
|
1798
|
-
[deserialize_type(t) for t in data["arg_types"]],
|
|
1799
|
-
[ArgKind(x) for x in data["arg_kinds"]],
|
|
1800
|
-
data["arg_names"],
|
|
1801
|
-
variables=[
|
|
1802
|
-
cast(TypeVarLikeType, deserialize_type(v)) for v in data["variables"]
|
|
1803
|
-
],
|
|
1804
|
-
imprecise_arg_kinds=data["imprecise_arg_kinds"],
|
|
1805
|
-
)
|
|
1806
|
-
|
|
1807
|
-
def __hash__(self) -> int:
|
|
1808
|
-
return hash(
|
|
1809
|
-
(
|
|
1810
|
-
self.is_ellipsis_args,
|
|
1811
|
-
tuple(self.arg_types),
|
|
1812
|
-
tuple(self.arg_names),
|
|
1813
|
-
tuple(self.arg_kinds),
|
|
1814
|
-
)
|
|
1815
|
-
)
|
|
1816
|
-
|
|
1817
|
-
def __eq__(self, other: object) -> bool:
|
|
1818
|
-
if isinstance(other, (Parameters, CallableType)):
|
|
1819
|
-
return (
|
|
1820
|
-
self.arg_types == other.arg_types
|
|
1821
|
-
and self.arg_names == other.arg_names
|
|
1822
|
-
and self.arg_kinds == other.arg_kinds
|
|
1823
|
-
and self.is_ellipsis_args == other.is_ellipsis_args
|
|
1824
|
-
)
|
|
1825
|
-
else:
|
|
1826
|
-
return NotImplemented
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
CT = TypeVar("CT", bound="CallableType")
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
class CallableType(FunctionLike):
|
|
1833
|
-
"""Type of a non-overloaded callable object (such as function)."""
|
|
1834
|
-
|
|
1835
|
-
__slots__ = (
|
|
1836
|
-
"arg_types", # Types of function arguments
|
|
1837
|
-
"arg_kinds", # ARG_ constants
|
|
1838
|
-
"arg_names", # Argument names; None if not a keyword argument
|
|
1839
|
-
"min_args", # Minimum number of arguments; derived from arg_kinds
|
|
1840
|
-
"ret_type", # Return value type
|
|
1841
|
-
"name", # Name (may be None; for error messages and plugins)
|
|
1842
|
-
"definition", # For error messages. May be None.
|
|
1843
|
-
"variables", # Type variables for a generic function
|
|
1844
|
-
"is_ellipsis_args", # Is this Callable[..., t] (with literal '...')?
|
|
1845
|
-
"implicit", # Was this type implicitly generated instead of explicitly
|
|
1846
|
-
# specified by the user?
|
|
1847
|
-
"special_sig", # Non-None for signatures that require special handling
|
|
1848
|
-
# (currently only value is 'dict' for a signature similar to
|
|
1849
|
-
# 'dict')
|
|
1850
|
-
"from_type_type", # Was this callable generated by analyzing Type[...]
|
|
1851
|
-
# instantiation?
|
|
1852
|
-
"bound_args", # Bound type args, mostly unused but may be useful for
|
|
1853
|
-
# tools that consume mypy ASTs
|
|
1854
|
-
"def_extras", # Information about original definition we want to serialize.
|
|
1855
|
-
# This is used for more detailed error messages.
|
|
1856
|
-
"type_guard", # T, if -> TypeGuard[T] (ret_type is bool in this case).
|
|
1857
|
-
"from_concatenate", # whether this callable is from a concatenate object
|
|
1858
|
-
# (this is used for error messages)
|
|
1859
|
-
"imprecise_arg_kinds",
|
|
1860
|
-
"unpack_kwargs", # Was an Unpack[...] with **kwargs used to define this callable?
|
|
1861
|
-
)
|
|
1862
|
-
|
|
1863
|
-
def __init__(
|
|
1864
|
-
self,
|
|
1865
|
-
# maybe this should be refactored to take a Parameters object
|
|
1866
|
-
arg_types: Sequence[Type],
|
|
1867
|
-
arg_kinds: list[ArgKind],
|
|
1868
|
-
arg_names: Sequence[str | None],
|
|
1869
|
-
ret_type: Type,
|
|
1870
|
-
fallback: Instance,
|
|
1871
|
-
name: str | None = None,
|
|
1872
|
-
definition: SymbolNode | None = None,
|
|
1873
|
-
variables: Sequence[TypeVarLikeType] | None = None,
|
|
1874
|
-
line: int = -1,
|
|
1875
|
-
column: int = -1,
|
|
1876
|
-
is_ellipsis_args: bool = False,
|
|
1877
|
-
implicit: bool = False,
|
|
1878
|
-
special_sig: str | None = None,
|
|
1879
|
-
from_type_type: bool = False,
|
|
1880
|
-
bound_args: Sequence[Type | None] = (),
|
|
1881
|
-
def_extras: dict[str, Any] | None = None,
|
|
1882
|
-
type_guard: Type | None = None,
|
|
1883
|
-
from_concatenate: bool = False,
|
|
1884
|
-
imprecise_arg_kinds: bool = False,
|
|
1885
|
-
unpack_kwargs: bool = False,
|
|
1886
|
-
) -> None:
|
|
1887
|
-
super().__init__(line, column)
|
|
1888
|
-
assert len(arg_types) == len(arg_kinds) == len(arg_names)
|
|
1889
|
-
for t, k in zip(arg_types, arg_kinds):
|
|
1890
|
-
if isinstance(t, ParamSpecType):
|
|
1891
|
-
assert not t.prefix.arg_types
|
|
1892
|
-
# TODO: should we assert that only ARG_STAR contain ParamSpecType?
|
|
1893
|
-
# See testParamSpecJoin, that relies on passing e.g `P.args` as plain argument.
|
|
1894
|
-
if variables is None:
|
|
1895
|
-
variables = []
|
|
1896
|
-
self.arg_types = list(arg_types)
|
|
1897
|
-
self.arg_kinds = arg_kinds
|
|
1898
|
-
self.arg_names = list(arg_names)
|
|
1899
|
-
self.min_args = arg_kinds.count(ARG_POS)
|
|
1900
|
-
self.ret_type = ret_type
|
|
1901
|
-
self.fallback = fallback
|
|
1902
|
-
assert not name or "<bound method" not in name
|
|
1903
|
-
self.name = name
|
|
1904
|
-
self.definition = definition
|
|
1905
|
-
self.variables = variables
|
|
1906
|
-
self.is_ellipsis_args = is_ellipsis_args
|
|
1907
|
-
self.implicit = implicit
|
|
1908
|
-
self.special_sig = special_sig
|
|
1909
|
-
self.from_type_type = from_type_type
|
|
1910
|
-
self.from_concatenate = from_concatenate
|
|
1911
|
-
self.imprecise_arg_kinds = imprecise_arg_kinds
|
|
1912
|
-
if not bound_args:
|
|
1913
|
-
bound_args = ()
|
|
1914
|
-
self.bound_args = bound_args
|
|
1915
|
-
if def_extras:
|
|
1916
|
-
self.def_extras = def_extras
|
|
1917
|
-
elif isinstance(definition, FuncDef):
|
|
1918
|
-
# This information would be lost if we don't have definition
|
|
1919
|
-
# after serialization, but it is useful in error messages.
|
|
1920
|
-
# TODO: decide how to add more info here (file, line, column)
|
|
1921
|
-
# without changing interface hash.
|
|
1922
|
-
first_arg: str | None = None
|
|
1923
|
-
if definition.arg_names and definition.info and not definition.is_static:
|
|
1924
|
-
if getattr(definition, "arguments", None):
|
|
1925
|
-
first_arg = definition.arguments[0].variable.name
|
|
1926
|
-
else:
|
|
1927
|
-
first_arg = definition.arg_names[0]
|
|
1928
|
-
self.def_extras = {"first_arg": first_arg}
|
|
1929
|
-
else:
|
|
1930
|
-
self.def_extras = {}
|
|
1931
|
-
self.type_guard = type_guard
|
|
1932
|
-
self.unpack_kwargs = unpack_kwargs
|
|
1933
|
-
|
|
1934
|
-
def copy_modified(
|
|
1935
|
-
self: CT,
|
|
1936
|
-
arg_types: Bogus[Sequence[Type]] = _dummy,
|
|
1937
|
-
arg_kinds: Bogus[list[ArgKind]] = _dummy,
|
|
1938
|
-
arg_names: Bogus[Sequence[str | None]] = _dummy,
|
|
1939
|
-
ret_type: Bogus[Type] = _dummy,
|
|
1940
|
-
fallback: Bogus[Instance] = _dummy,
|
|
1941
|
-
name: Bogus[str | None] = _dummy,
|
|
1942
|
-
definition: Bogus[SymbolNode] = _dummy,
|
|
1943
|
-
variables: Bogus[Sequence[TypeVarLikeType]] = _dummy,
|
|
1944
|
-
line: int = _dummy_int,
|
|
1945
|
-
column: int = _dummy_int,
|
|
1946
|
-
is_ellipsis_args: Bogus[bool] = _dummy,
|
|
1947
|
-
implicit: Bogus[bool] = _dummy,
|
|
1948
|
-
special_sig: Bogus[str | None] = _dummy,
|
|
1949
|
-
from_type_type: Bogus[bool] = _dummy,
|
|
1950
|
-
bound_args: Bogus[list[Type | None]] = _dummy,
|
|
1951
|
-
def_extras: Bogus[dict[str, Any]] = _dummy,
|
|
1952
|
-
type_guard: Bogus[Type | None] = _dummy,
|
|
1953
|
-
from_concatenate: Bogus[bool] = _dummy,
|
|
1954
|
-
imprecise_arg_kinds: Bogus[bool] = _dummy,
|
|
1955
|
-
unpack_kwargs: Bogus[bool] = _dummy,
|
|
1956
|
-
) -> CT:
|
|
1957
|
-
modified = CallableType(
|
|
1958
|
-
arg_types=arg_types if arg_types is not _dummy else self.arg_types,
|
|
1959
|
-
arg_kinds=arg_kinds if arg_kinds is not _dummy else self.arg_kinds,
|
|
1960
|
-
arg_names=arg_names if arg_names is not _dummy else self.arg_names,
|
|
1961
|
-
ret_type=ret_type if ret_type is not _dummy else self.ret_type,
|
|
1962
|
-
fallback=fallback if fallback is not _dummy else self.fallback,
|
|
1963
|
-
name=name if name is not _dummy else self.name,
|
|
1964
|
-
definition=definition if definition is not _dummy else self.definition,
|
|
1965
|
-
variables=variables if variables is not _dummy else self.variables,
|
|
1966
|
-
line=line if line != _dummy_int else self.line,
|
|
1967
|
-
column=column if column != _dummy_int else self.column,
|
|
1968
|
-
is_ellipsis_args=(
|
|
1969
|
-
is_ellipsis_args
|
|
1970
|
-
if is_ellipsis_args is not _dummy
|
|
1971
|
-
else self.is_ellipsis_args
|
|
1972
|
-
),
|
|
1973
|
-
implicit=implicit if implicit is not _dummy else self.implicit,
|
|
1974
|
-
special_sig=special_sig if special_sig is not _dummy else self.special_sig,
|
|
1975
|
-
from_type_type=(
|
|
1976
|
-
from_type_type if from_type_type is not _dummy else self.from_type_type
|
|
1977
|
-
),
|
|
1978
|
-
bound_args=bound_args if bound_args is not _dummy else self.bound_args,
|
|
1979
|
-
def_extras=(
|
|
1980
|
-
def_extras if def_extras is not _dummy else dict(self.def_extras)
|
|
1981
|
-
),
|
|
1982
|
-
type_guard=type_guard if type_guard is not _dummy else self.type_guard,
|
|
1983
|
-
from_concatenate=(
|
|
1984
|
-
from_concatenate
|
|
1985
|
-
if from_concatenate is not _dummy
|
|
1986
|
-
else self.from_concatenate
|
|
1987
|
-
),
|
|
1988
|
-
imprecise_arg_kinds=(
|
|
1989
|
-
imprecise_arg_kinds
|
|
1990
|
-
if imprecise_arg_kinds is not _dummy
|
|
1991
|
-
else self.imprecise_arg_kinds
|
|
1992
|
-
),
|
|
1993
|
-
unpack_kwargs=(
|
|
1994
|
-
unpack_kwargs if unpack_kwargs is not _dummy else self.unpack_kwargs
|
|
1995
|
-
),
|
|
1996
|
-
)
|
|
1997
|
-
# Optimization: Only NewTypes are supported as subtypes since
|
|
1998
|
-
# the class is effectively final, so we can use a cast safely.
|
|
1999
|
-
return cast(CT, modified)
|
|
2000
|
-
|
|
2001
|
-
def var_arg(self) -> FormalArgument | None:
|
|
2002
|
-
"""The formal argument for *args."""
|
|
2003
|
-
for position, (type, kind) in enumerate(zip(self.arg_types, self.arg_kinds)):
|
|
2004
|
-
if kind == ARG_STAR:
|
|
2005
|
-
return FormalArgument(None, position, type, False)
|
|
2006
|
-
return None
|
|
2007
|
-
|
|
2008
|
-
def kw_arg(self) -> FormalArgument | None:
|
|
2009
|
-
"""The formal argument for **kwargs."""
|
|
2010
|
-
for position, (type, kind) in enumerate(zip(self.arg_types, self.arg_kinds)):
|
|
2011
|
-
if kind == ARG_STAR2:
|
|
2012
|
-
return FormalArgument(None, position, type, False)
|
|
2013
|
-
return None
|
|
2014
|
-
|
|
2015
|
-
@property
|
|
2016
|
-
def is_var_arg(self) -> bool:
|
|
2017
|
-
"""Does this callable have a *args argument?"""
|
|
2018
|
-
return ARG_STAR in self.arg_kinds
|
|
2019
|
-
|
|
2020
|
-
@property
|
|
2021
|
-
def is_kw_arg(self) -> bool:
|
|
2022
|
-
"""Does this callable have a **kwargs argument?"""
|
|
2023
|
-
return ARG_STAR2 in self.arg_kinds
|
|
2024
|
-
|
|
2025
|
-
def is_type_obj(self) -> bool:
|
|
2026
|
-
return self.fallback.type.is_metaclass() and not isinstance(
|
|
2027
|
-
get_proper_type(self.ret_type), UninhabitedType
|
|
2028
|
-
)
|
|
2029
|
-
|
|
2030
|
-
def type_object(self) -> mypy.nodes.TypeInfo:
|
|
2031
|
-
assert self.is_type_obj()
|
|
2032
|
-
ret = get_proper_type(self.ret_type)
|
|
2033
|
-
if isinstance(ret, TypeVarType):
|
|
2034
|
-
ret = get_proper_type(ret.upper_bound)
|
|
2035
|
-
if isinstance(ret, TupleType):
|
|
2036
|
-
ret = ret.partial_fallback
|
|
2037
|
-
if isinstance(ret, TypedDictType):
|
|
2038
|
-
ret = ret.fallback
|
|
2039
|
-
assert isinstance(ret, Instance)
|
|
2040
|
-
return ret.type
|
|
2041
|
-
|
|
2042
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
2043
|
-
return visitor.visit_callable_type(self)
|
|
2044
|
-
|
|
2045
|
-
def with_name(self, name: str) -> CallableType:
|
|
2046
|
-
"""Return a copy of this type with the specified name."""
|
|
2047
|
-
return self.copy_modified(ret_type=self.ret_type, name=name)
|
|
2048
|
-
|
|
2049
|
-
def get_name(self) -> str | None:
|
|
2050
|
-
return self.name
|
|
2051
|
-
|
|
2052
|
-
def max_possible_positional_args(self) -> int:
|
|
2053
|
-
"""Returns maximum number of positional arguments this method could possibly accept.
|
|
2054
|
-
|
|
2055
|
-
This takes into account *arg and **kwargs but excludes keyword-only args."""
|
|
2056
|
-
if self.is_var_arg or self.is_kw_arg:
|
|
2057
|
-
return sys.maxsize
|
|
2058
|
-
return sum(kind.is_positional() for kind in self.arg_kinds)
|
|
2059
|
-
|
|
2060
|
-
def formal_arguments(self, include_star_args: bool = False) -> list[FormalArgument]:
|
|
2061
|
-
"""Return a list of the formal arguments of this callable, ignoring *arg and **kwargs.
|
|
2062
|
-
|
|
2063
|
-
To handle *args and **kwargs, use the 'callable.var_args' and 'callable.kw_args' fields,
|
|
2064
|
-
if they are not None.
|
|
2065
|
-
|
|
2066
|
-
If you really want to include star args in the yielded output, set the
|
|
2067
|
-
'include_star_args' parameter to 'True'."""
|
|
2068
|
-
args = []
|
|
2069
|
-
done_with_positional = False
|
|
2070
|
-
for i in range(len(self.arg_types)):
|
|
2071
|
-
kind = self.arg_kinds[i]
|
|
2072
|
-
if kind.is_named() or kind.is_star():
|
|
2073
|
-
done_with_positional = True
|
|
2074
|
-
if not include_star_args and kind.is_star():
|
|
2075
|
-
continue
|
|
2076
|
-
|
|
2077
|
-
required = kind.is_required()
|
|
2078
|
-
pos = None if done_with_positional else i
|
|
2079
|
-
arg = FormalArgument(self.arg_names[i], pos, self.arg_types[i], required)
|
|
2080
|
-
args.append(arg)
|
|
2081
|
-
return args
|
|
2082
|
-
|
|
2083
|
-
def argument_by_name(self, name: str | None) -> FormalArgument | None:
|
|
2084
|
-
if name is None:
|
|
2085
|
-
return None
|
|
2086
|
-
seen_star = False
|
|
2087
|
-
for i, (arg_name, kind, typ) in enumerate(
|
|
2088
|
-
zip(self.arg_names, self.arg_kinds, self.arg_types)
|
|
2089
|
-
):
|
|
2090
|
-
# No more positional arguments after these.
|
|
2091
|
-
if kind.is_named() or kind.is_star():
|
|
2092
|
-
seen_star = True
|
|
2093
|
-
if kind.is_star():
|
|
2094
|
-
continue
|
|
2095
|
-
if arg_name == name:
|
|
2096
|
-
position = None if seen_star else i
|
|
2097
|
-
return FormalArgument(name, position, typ, kind.is_required())
|
|
2098
|
-
return self.try_synthesizing_arg_from_kwarg(name)
|
|
2099
|
-
|
|
2100
|
-
def argument_by_position(self, position: int | None) -> FormalArgument | None:
|
|
2101
|
-
if position is None:
|
|
2102
|
-
return None
|
|
2103
|
-
if position >= len(self.arg_names):
|
|
2104
|
-
return self.try_synthesizing_arg_from_vararg(position)
|
|
2105
|
-
name, kind, typ = (
|
|
2106
|
-
self.arg_names[position],
|
|
2107
|
-
self.arg_kinds[position],
|
|
2108
|
-
self.arg_types[position],
|
|
2109
|
-
)
|
|
2110
|
-
if kind.is_positional():
|
|
2111
|
-
return FormalArgument(name, position, typ, kind == ARG_POS)
|
|
2112
|
-
else:
|
|
2113
|
-
return self.try_synthesizing_arg_from_vararg(position)
|
|
2114
|
-
|
|
2115
|
-
def try_synthesizing_arg_from_kwarg(
|
|
2116
|
-
self, name: str | None
|
|
2117
|
-
) -> FormalArgument | None:
|
|
2118
|
-
kw_arg = self.kw_arg()
|
|
2119
|
-
if kw_arg is not None:
|
|
2120
|
-
return FormalArgument(name, None, kw_arg.typ, False)
|
|
2121
|
-
else:
|
|
2122
|
-
return None
|
|
2123
|
-
|
|
2124
|
-
def try_synthesizing_arg_from_vararg(
|
|
2125
|
-
self, position: int | None
|
|
2126
|
-
) -> FormalArgument | None:
|
|
2127
|
-
var_arg = self.var_arg()
|
|
2128
|
-
if var_arg is not None:
|
|
2129
|
-
return FormalArgument(None, position, var_arg.typ, False)
|
|
2130
|
-
else:
|
|
2131
|
-
return None
|
|
2132
|
-
|
|
2133
|
-
@property
|
|
2134
|
-
def items(self) -> list[CallableType]:
|
|
2135
|
-
return [self]
|
|
2136
|
-
|
|
2137
|
-
def is_generic(self) -> bool:
|
|
2138
|
-
return bool(self.variables)
|
|
2139
|
-
|
|
2140
|
-
def type_var_ids(self) -> list[TypeVarId]:
|
|
2141
|
-
a: list[TypeVarId] = []
|
|
2142
|
-
for tv in self.variables:
|
|
2143
|
-
a.append(tv.id)
|
|
2144
|
-
return a
|
|
2145
|
-
|
|
2146
|
-
def param_spec(self) -> ParamSpecType | None:
|
|
2147
|
-
"""Return ParamSpec if callable can be called with one.
|
|
2148
|
-
|
|
2149
|
-
A Callable accepting ParamSpec P args (*args, **kwargs) must have the
|
|
2150
|
-
two final parameters like this: *args: P.args, **kwargs: P.kwargs.
|
|
2151
|
-
"""
|
|
2152
|
-
if len(self.arg_types) < 2:
|
|
2153
|
-
return None
|
|
2154
|
-
if self.arg_kinds[-2] != ARG_STAR or self.arg_kinds[-1] != ARG_STAR2:
|
|
2155
|
-
return None
|
|
2156
|
-
arg_type = self.arg_types[-2]
|
|
2157
|
-
if not isinstance(arg_type, ParamSpecType):
|
|
2158
|
-
return None
|
|
2159
|
-
|
|
2160
|
-
# Prepend prefix for def f(prefix..., *args: P.args, **kwargs: P.kwargs) -> ...
|
|
2161
|
-
# TODO: confirm that all arg kinds are positional
|
|
2162
|
-
prefix = Parameters(
|
|
2163
|
-
self.arg_types[:-2], self.arg_kinds[:-2], self.arg_names[:-2]
|
|
2164
|
-
)
|
|
2165
|
-
return arg_type.copy_modified(flavor=ParamSpecFlavor.BARE, prefix=prefix)
|
|
2166
|
-
|
|
2167
|
-
def with_unpacked_kwargs(self) -> NormalizedCallableType:
|
|
2168
|
-
if not self.unpack_kwargs:
|
|
2169
|
-
return cast(NormalizedCallableType, self)
|
|
2170
|
-
last_type = get_proper_type(self.arg_types[-1])
|
|
2171
|
-
assert isinstance(last_type, TypedDictType)
|
|
2172
|
-
extra_kinds = [
|
|
2173
|
-
(
|
|
2174
|
-
ArgKind.ARG_NAMED
|
|
2175
|
-
if name in last_type.required_keys
|
|
2176
|
-
else ArgKind.ARG_NAMED_OPT
|
|
2177
|
-
)
|
|
2178
|
-
for name in last_type.items
|
|
2179
|
-
]
|
|
2180
|
-
new_arg_kinds = self.arg_kinds[:-1] + extra_kinds
|
|
2181
|
-
new_arg_names = self.arg_names[:-1] + list(last_type.items)
|
|
2182
|
-
new_arg_types = self.arg_types[:-1] + list(last_type.items.values())
|
|
2183
|
-
return NormalizedCallableType(
|
|
2184
|
-
self.copy_modified(
|
|
2185
|
-
arg_kinds=new_arg_kinds,
|
|
2186
|
-
arg_names=new_arg_names,
|
|
2187
|
-
arg_types=new_arg_types,
|
|
2188
|
-
unpack_kwargs=False,
|
|
2189
|
-
)
|
|
2190
|
-
)
|
|
2191
|
-
|
|
2192
|
-
def with_normalized_var_args(self) -> Self:
|
|
2193
|
-
var_arg = self.var_arg()
|
|
2194
|
-
if not var_arg or not isinstance(var_arg.typ, UnpackType):
|
|
2195
|
-
return self
|
|
2196
|
-
unpacked = get_proper_type(var_arg.typ.type)
|
|
2197
|
-
if not isinstance(unpacked, TupleType):
|
|
2198
|
-
# Note that we don't normalize *args: *tuple[X, ...] -> *args: X,
|
|
2199
|
-
# this should be done once in semanal_typeargs.py for user-defined types,
|
|
2200
|
-
# and we ourselves should never construct such type.
|
|
2201
|
-
return self
|
|
2202
|
-
unpack_index = find_unpack_in_list(unpacked.items)
|
|
2203
|
-
if unpack_index == 0 and len(unpacked.items) > 1:
|
|
2204
|
-
# Already normalized.
|
|
2205
|
-
return self
|
|
2206
|
-
|
|
2207
|
-
# Boilerplate:
|
|
2208
|
-
var_arg_index = self.arg_kinds.index(ARG_STAR)
|
|
2209
|
-
types_prefix = self.arg_types[:var_arg_index]
|
|
2210
|
-
kinds_prefix = self.arg_kinds[:var_arg_index]
|
|
2211
|
-
names_prefix = self.arg_names[:var_arg_index]
|
|
2212
|
-
types_suffix = self.arg_types[var_arg_index + 1 :]
|
|
2213
|
-
kinds_suffix = self.arg_kinds[var_arg_index + 1 :]
|
|
2214
|
-
names_suffix = self.arg_names[var_arg_index + 1 :]
|
|
2215
|
-
no_name: str | None = None # to silence mypy
|
|
2216
|
-
|
|
2217
|
-
# Now we have something non-trivial to do.
|
|
2218
|
-
if unpack_index is None:
|
|
2219
|
-
# Plain *Tuple[X, Y, Z] -> replace with ARG_POS completely
|
|
2220
|
-
types_middle = unpacked.items
|
|
2221
|
-
kinds_middle = [ARG_POS] * len(unpacked.items)
|
|
2222
|
-
names_middle = [no_name] * len(unpacked.items)
|
|
2223
|
-
else:
|
|
2224
|
-
# *Tuple[X, *Ts, Y, Z] or *Tuple[X, *tuple[T, ...], X, Z], here
|
|
2225
|
-
# we replace the prefix by ARG_POS (this is how some places expect
|
|
2226
|
-
# Callables to be represented)
|
|
2227
|
-
nested_unpack = unpacked.items[unpack_index]
|
|
2228
|
-
assert isinstance(nested_unpack, UnpackType)
|
|
2229
|
-
nested_unpacked = get_proper_type(nested_unpack.type)
|
|
2230
|
-
if unpack_index == len(unpacked.items) - 1:
|
|
2231
|
-
# Normalize also single item tuples like
|
|
2232
|
-
# *args: *Tuple[*tuple[X, ...]] -> *args: X
|
|
2233
|
-
# *args: *Tuple[*Ts] -> *args: *Ts
|
|
2234
|
-
# This may be not strictly necessary, but these are very verbose.
|
|
2235
|
-
if isinstance(nested_unpacked, Instance):
|
|
2236
|
-
assert nested_unpacked.type.fullname == "builtins.tuple"
|
|
2237
|
-
new_unpack = nested_unpacked.args[0]
|
|
2238
|
-
else:
|
|
2239
|
-
if not isinstance(nested_unpacked, TypeVarTupleType):
|
|
2240
|
-
# We found a non-nomralized tuple type, this means this method
|
|
2241
|
-
# is called during semantic analysis (e.g. from get_proper_type())
|
|
2242
|
-
# there is no point in normalizing callables at this stage.
|
|
2243
|
-
return self
|
|
2244
|
-
new_unpack = nested_unpack
|
|
2245
|
-
else:
|
|
2246
|
-
new_unpack = UnpackType(
|
|
2247
|
-
unpacked.copy_modified(items=unpacked.items[unpack_index:])
|
|
2248
|
-
)
|
|
2249
|
-
types_middle = unpacked.items[:unpack_index] + [new_unpack]
|
|
2250
|
-
kinds_middle = [ARG_POS] * unpack_index + [ARG_STAR]
|
|
2251
|
-
names_middle = [no_name] * unpack_index + [self.arg_names[var_arg_index]]
|
|
2252
|
-
return self.copy_modified(
|
|
2253
|
-
arg_types=types_prefix + types_middle + types_suffix,
|
|
2254
|
-
arg_kinds=kinds_prefix + kinds_middle + kinds_suffix,
|
|
2255
|
-
arg_names=names_prefix + names_middle + names_suffix,
|
|
2256
|
-
)
|
|
2257
|
-
|
|
2258
|
-
def __hash__(self) -> int:
|
|
2259
|
-
# self.is_type_obj() will fail if self.fallback.type is a FakeInfo
|
|
2260
|
-
if isinstance(self.fallback.type, FakeInfo):
|
|
2261
|
-
is_type_obj = 2
|
|
2262
|
-
else:
|
|
2263
|
-
is_type_obj = self.is_type_obj()
|
|
2264
|
-
return hash(
|
|
2265
|
-
(
|
|
2266
|
-
self.ret_type,
|
|
2267
|
-
is_type_obj,
|
|
2268
|
-
self.is_ellipsis_args,
|
|
2269
|
-
self.name,
|
|
2270
|
-
tuple(self.arg_types),
|
|
2271
|
-
tuple(self.arg_names),
|
|
2272
|
-
tuple(self.arg_kinds),
|
|
2273
|
-
self.fallback,
|
|
2274
|
-
)
|
|
2275
|
-
)
|
|
2276
|
-
|
|
2277
|
-
def __eq__(self, other: object) -> bool:
|
|
2278
|
-
if isinstance(other, CallableType):
|
|
2279
|
-
return (
|
|
2280
|
-
self.ret_type == other.ret_type
|
|
2281
|
-
and self.arg_types == other.arg_types
|
|
2282
|
-
and self.arg_names == other.arg_names
|
|
2283
|
-
and self.arg_kinds == other.arg_kinds
|
|
2284
|
-
and self.name == other.name
|
|
2285
|
-
and self.is_type_obj() == other.is_type_obj()
|
|
2286
|
-
and self.is_ellipsis_args == other.is_ellipsis_args
|
|
2287
|
-
and self.fallback == other.fallback
|
|
2288
|
-
)
|
|
2289
|
-
else:
|
|
2290
|
-
return NotImplemented
|
|
2291
|
-
|
|
2292
|
-
def serialize(self) -> JsonDict:
|
|
2293
|
-
# TODO: As an optimization, leave out everything related to
|
|
2294
|
-
# generic functions for non-generic functions.
|
|
2295
|
-
return {
|
|
2296
|
-
".class": "CallableType",
|
|
2297
|
-
"arg_types": [t.serialize() for t in self.arg_types],
|
|
2298
|
-
"arg_kinds": [int(x.value) for x in self.arg_kinds],
|
|
2299
|
-
"arg_names": self.arg_names,
|
|
2300
|
-
"ret_type": self.ret_type.serialize(),
|
|
2301
|
-
"fallback": self.fallback.serialize(),
|
|
2302
|
-
"name": self.name,
|
|
2303
|
-
# We don't serialize the definition (only used for error messages).
|
|
2304
|
-
"variables": [v.serialize() for v in self.variables],
|
|
2305
|
-
"is_ellipsis_args": self.is_ellipsis_args,
|
|
2306
|
-
"implicit": self.implicit,
|
|
2307
|
-
"bound_args": [
|
|
2308
|
-
(None if t is None else t.serialize()) for t in self.bound_args
|
|
2309
|
-
],
|
|
2310
|
-
"def_extras": dict(self.def_extras),
|
|
2311
|
-
"type_guard": (
|
|
2312
|
-
self.type_guard.serialize() if self.type_guard is not None else None
|
|
2313
|
-
),
|
|
2314
|
-
"from_concatenate": self.from_concatenate,
|
|
2315
|
-
"imprecise_arg_kinds": self.imprecise_arg_kinds,
|
|
2316
|
-
"unpack_kwargs": self.unpack_kwargs,
|
|
2317
|
-
}
|
|
2318
|
-
|
|
2319
|
-
@classmethod
|
|
2320
|
-
def deserialize(cls, data: JsonDict) -> CallableType:
|
|
2321
|
-
assert data[".class"] == "CallableType"
|
|
2322
|
-
# TODO: Set definition to the containing SymbolNode?
|
|
2323
|
-
return CallableType(
|
|
2324
|
-
[deserialize_type(t) for t in data["arg_types"]],
|
|
2325
|
-
[ArgKind(x) for x in data["arg_kinds"]],
|
|
2326
|
-
data["arg_names"],
|
|
2327
|
-
deserialize_type(data["ret_type"]),
|
|
2328
|
-
Instance.deserialize(data["fallback"]),
|
|
2329
|
-
name=data["name"],
|
|
2330
|
-
variables=[
|
|
2331
|
-
cast(TypeVarLikeType, deserialize_type(v)) for v in data["variables"]
|
|
2332
|
-
],
|
|
2333
|
-
is_ellipsis_args=data["is_ellipsis_args"],
|
|
2334
|
-
implicit=data["implicit"],
|
|
2335
|
-
bound_args=[
|
|
2336
|
-
(None if t is None else deserialize_type(t)) for t in data["bound_args"]
|
|
2337
|
-
],
|
|
2338
|
-
def_extras=data["def_extras"],
|
|
2339
|
-
type_guard=(
|
|
2340
|
-
deserialize_type(data["type_guard"])
|
|
2341
|
-
if data["type_guard"] is not None
|
|
2342
|
-
else None
|
|
2343
|
-
),
|
|
2344
|
-
from_concatenate=data["from_concatenate"],
|
|
2345
|
-
imprecise_arg_kinds=data["imprecise_arg_kinds"],
|
|
2346
|
-
unpack_kwargs=data["unpack_kwargs"],
|
|
2347
|
-
)
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
# This is a little safety net to prevent reckless special-casing of callables
|
|
2351
|
-
# that can potentially break Unpack[...] with **kwargs.
|
|
2352
|
-
# TODO: use this in more places in checkexpr.py etc?
|
|
2353
|
-
NormalizedCallableType = NewType("NormalizedCallableType", CallableType)
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
class Overloaded(FunctionLike):
|
|
2357
|
-
"""Overloaded function type T1, ... Tn, where each Ti is CallableType.
|
|
2358
|
-
|
|
2359
|
-
The variant to call is chosen based on static argument
|
|
2360
|
-
types. Overloaded function types can only be defined in stub
|
|
2361
|
-
files, and thus there is no explicit runtime dispatch
|
|
2362
|
-
implementation.
|
|
2363
|
-
"""
|
|
2364
|
-
|
|
2365
|
-
__slots__ = ("_items",)
|
|
2366
|
-
|
|
2367
|
-
_items: list[CallableType] # Must not be empty
|
|
2368
|
-
|
|
2369
|
-
def __init__(self, items: list[CallableType]) -> None:
|
|
2370
|
-
super().__init__(items[0].line, items[0].column)
|
|
2371
|
-
self._items = items
|
|
2372
|
-
self.fallback = items[0].fallback
|
|
2373
|
-
|
|
2374
|
-
@property
|
|
2375
|
-
def items(self) -> list[CallableType]:
|
|
2376
|
-
return self._items
|
|
2377
|
-
|
|
2378
|
-
def name(self) -> str | None:
|
|
2379
|
-
return self.get_name()
|
|
2380
|
-
|
|
2381
|
-
def is_type_obj(self) -> bool:
|
|
2382
|
-
# All the items must have the same type object status, so it's
|
|
2383
|
-
# sufficient to query only (any) one of them.
|
|
2384
|
-
return self._items[0].is_type_obj()
|
|
2385
|
-
|
|
2386
|
-
def type_object(self) -> mypy.nodes.TypeInfo:
|
|
2387
|
-
# All the items must have the same type object, so it's sufficient to
|
|
2388
|
-
# query only (any) one of them.
|
|
2389
|
-
return self._items[0].type_object()
|
|
2390
|
-
|
|
2391
|
-
def with_name(self, name: str) -> Overloaded:
|
|
2392
|
-
ni: list[CallableType] = []
|
|
2393
|
-
for it in self._items:
|
|
2394
|
-
ni.append(it.with_name(name))
|
|
2395
|
-
return Overloaded(ni)
|
|
2396
|
-
|
|
2397
|
-
def get_name(self) -> str | None:
|
|
2398
|
-
return self._items[0].name
|
|
2399
|
-
|
|
2400
|
-
def with_unpacked_kwargs(self) -> Overloaded:
|
|
2401
|
-
if any(i.unpack_kwargs for i in self.items):
|
|
2402
|
-
return Overloaded([i.with_unpacked_kwargs() for i in self.items])
|
|
2403
|
-
return self
|
|
2404
|
-
|
|
2405
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
2406
|
-
return visitor.visit_overloaded(self)
|
|
2407
|
-
|
|
2408
|
-
def __hash__(self) -> int:
|
|
2409
|
-
return hash(tuple(self.items))
|
|
2410
|
-
|
|
2411
|
-
def __eq__(self, other: object) -> bool:
|
|
2412
|
-
if not isinstance(other, Overloaded):
|
|
2413
|
-
return NotImplemented
|
|
2414
|
-
return self.items == other.items
|
|
2415
|
-
|
|
2416
|
-
def serialize(self) -> JsonDict:
|
|
2417
|
-
return {".class": "Overloaded", "items": [t.serialize() for t in self.items]}
|
|
2418
|
-
|
|
2419
|
-
@classmethod
|
|
2420
|
-
def deserialize(cls, data: JsonDict) -> Overloaded:
|
|
2421
|
-
assert data[".class"] == "Overloaded"
|
|
2422
|
-
return Overloaded([CallableType.deserialize(t) for t in data["items"]])
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
class TupleType(ProperType):
|
|
2426
|
-
"""The tuple type Tuple[T1, ..., Tn] (at least one type argument).
|
|
2427
|
-
|
|
2428
|
-
Instance variables:
|
|
2429
|
-
items: Tuple item types
|
|
2430
|
-
partial_fallback: The (imprecise) underlying instance type that is used
|
|
2431
|
-
for non-tuple methods. This is generally builtins.tuple[Any, ...] for
|
|
2432
|
-
regular tuples, but it's different for named tuples and classes with
|
|
2433
|
-
a tuple base class. Use mypy.typeops.tuple_fallback to calculate the
|
|
2434
|
-
precise fallback type derived from item types.
|
|
2435
|
-
implicit: If True, derived from a tuple expression (t,....) instead of Tuple[t, ...]
|
|
2436
|
-
"""
|
|
2437
|
-
|
|
2438
|
-
__slots__ = ("items", "partial_fallback", "implicit")
|
|
2439
|
-
|
|
2440
|
-
items: list[Type]
|
|
2441
|
-
partial_fallback: Instance
|
|
2442
|
-
implicit: bool
|
|
2443
|
-
|
|
2444
|
-
def __init__(
|
|
2445
|
-
self,
|
|
2446
|
-
items: list[Type],
|
|
2447
|
-
fallback: Instance,
|
|
2448
|
-
line: int = -1,
|
|
2449
|
-
column: int = -1,
|
|
2450
|
-
implicit: bool = False,
|
|
2451
|
-
) -> None:
|
|
2452
|
-
super().__init__(line, column)
|
|
2453
|
-
self.partial_fallback = fallback
|
|
2454
|
-
self.items = items
|
|
2455
|
-
self.implicit = implicit
|
|
2456
|
-
|
|
2457
|
-
def can_be_true_default(self) -> bool:
|
|
2458
|
-
if self.can_be_any_bool():
|
|
2459
|
-
# Corner case: it is a `NamedTuple` with `__bool__` method defined.
|
|
2460
|
-
# It can be anything: both `True` and `False`.
|
|
2461
|
-
return True
|
|
2462
|
-
return self.length() > 0
|
|
2463
|
-
|
|
2464
|
-
def can_be_false_default(self) -> bool:
|
|
2465
|
-
if self.can_be_any_bool():
|
|
2466
|
-
# Corner case: it is a `NamedTuple` with `__bool__` method defined.
|
|
2467
|
-
# It can be anything: both `True` and `False`.
|
|
2468
|
-
return True
|
|
2469
|
-
if self.length() == 0:
|
|
2470
|
-
return True
|
|
2471
|
-
if self.length() > 1:
|
|
2472
|
-
return False
|
|
2473
|
-
# Special case tuple[*Ts] may or may not be false.
|
|
2474
|
-
item = self.items[0]
|
|
2475
|
-
if not isinstance(item, UnpackType):
|
|
2476
|
-
return False
|
|
2477
|
-
if not isinstance(item.type, TypeVarTupleType):
|
|
2478
|
-
# Non-normalized tuple[int, ...] can be false.
|
|
2479
|
-
return True
|
|
2480
|
-
return item.type.min_len == 0
|
|
2481
|
-
|
|
2482
|
-
def can_be_any_bool(self) -> bool:
|
|
2483
|
-
return bool(
|
|
2484
|
-
self.partial_fallback.type
|
|
2485
|
-
and self.partial_fallback.type.fullname != "builtins.tuple"
|
|
2486
|
-
and self.partial_fallback.type.names.get("__bool__")
|
|
2487
|
-
)
|
|
2488
|
-
|
|
2489
|
-
def length(self) -> int:
|
|
2490
|
-
return len(self.items)
|
|
2491
|
-
|
|
2492
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
2493
|
-
return visitor.visit_tuple_type(self)
|
|
2494
|
-
|
|
2495
|
-
def __hash__(self) -> int:
|
|
2496
|
-
return hash((tuple(self.items), self.partial_fallback))
|
|
2497
|
-
|
|
2498
|
-
def __eq__(self, other: object) -> bool:
|
|
2499
|
-
if not isinstance(other, TupleType):
|
|
2500
|
-
return NotImplemented
|
|
2501
|
-
return (
|
|
2502
|
-
self.items == other.items
|
|
2503
|
-
and self.partial_fallback == other.partial_fallback
|
|
2504
|
-
)
|
|
2505
|
-
|
|
2506
|
-
def serialize(self) -> JsonDict:
|
|
2507
|
-
return {
|
|
2508
|
-
".class": "TupleType",
|
|
2509
|
-
"items": [t.serialize() for t in self.items],
|
|
2510
|
-
"partial_fallback": self.partial_fallback.serialize(),
|
|
2511
|
-
"implicit": self.implicit,
|
|
2512
|
-
}
|
|
2513
|
-
|
|
2514
|
-
@classmethod
|
|
2515
|
-
def deserialize(cls, data: JsonDict) -> TupleType:
|
|
2516
|
-
assert data[".class"] == "TupleType"
|
|
2517
|
-
return TupleType(
|
|
2518
|
-
[deserialize_type(t) for t in data["items"]],
|
|
2519
|
-
Instance.deserialize(data["partial_fallback"]),
|
|
2520
|
-
implicit=data["implicit"],
|
|
2521
|
-
)
|
|
2522
|
-
|
|
2523
|
-
def copy_modified(
|
|
2524
|
-
self, *, fallback: Instance | None = None, items: list[Type] | None = None
|
|
2525
|
-
) -> TupleType:
|
|
2526
|
-
if fallback is None:
|
|
2527
|
-
fallback = self.partial_fallback
|
|
2528
|
-
if items is None:
|
|
2529
|
-
items = self.items
|
|
2530
|
-
return TupleType(items, fallback, self.line, self.column)
|
|
2531
|
-
|
|
2532
|
-
def slice(
|
|
2533
|
-
self,
|
|
2534
|
-
begin: int | None,
|
|
2535
|
-
end: int | None,
|
|
2536
|
-
stride: int | None,
|
|
2537
|
-
*,
|
|
2538
|
-
fallback: Instance | None,
|
|
2539
|
-
) -> TupleType | None:
|
|
2540
|
-
if fallback is None:
|
|
2541
|
-
fallback = self.partial_fallback
|
|
2542
|
-
|
|
2543
|
-
if any(isinstance(t, UnpackType) for t in self.items):
|
|
2544
|
-
total = len(self.items)
|
|
2545
|
-
unpack_index = find_unpack_in_list(self.items)
|
|
2546
|
-
assert unpack_index is not None
|
|
2547
|
-
if begin is None and end is None:
|
|
2548
|
-
# We special-case this to support reversing variadic tuples.
|
|
2549
|
-
# General support for slicing is tricky, so we handle only simple cases.
|
|
2550
|
-
if stride == -1:
|
|
2551
|
-
slice_items = self.items[::-1]
|
|
2552
|
-
elif stride is None or stride == 1:
|
|
2553
|
-
slice_items = self.items
|
|
2554
|
-
else:
|
|
2555
|
-
return None
|
|
2556
|
-
elif (begin is None or unpack_index >= begin >= 0) and (
|
|
2557
|
-
end is not None and unpack_index >= end >= 0
|
|
2558
|
-
):
|
|
2559
|
-
# Start and end are in the prefix, everything works in this case.
|
|
2560
|
-
slice_items = self.items[begin:end:stride]
|
|
2561
|
-
elif (begin is not None and unpack_index - total < begin < 0) and (
|
|
2562
|
-
end is None or unpack_index - total < end < 0
|
|
2563
|
-
):
|
|
2564
|
-
# Start and end are in the suffix, everything works in this case.
|
|
2565
|
-
slice_items = self.items[begin:end:stride]
|
|
2566
|
-
elif (begin is None or unpack_index >= begin >= 0) and (
|
|
2567
|
-
end is None or unpack_index - total < end < 0
|
|
2568
|
-
):
|
|
2569
|
-
# Start in the prefix, end in the suffix, we can support only trivial strides.
|
|
2570
|
-
if stride is None or stride == 1:
|
|
2571
|
-
slice_items = self.items[begin:end:stride]
|
|
2572
|
-
else:
|
|
2573
|
-
return None
|
|
2574
|
-
elif (begin is not None and unpack_index - total < begin < 0) and (
|
|
2575
|
-
end is not None and unpack_index >= end >= 0
|
|
2576
|
-
):
|
|
2577
|
-
# Start in the suffix, end in the prefix, we can support only trivial strides.
|
|
2578
|
-
if stride is None or stride == -1:
|
|
2579
|
-
slice_items = self.items[begin:end:stride]
|
|
2580
|
-
else:
|
|
2581
|
-
return None
|
|
2582
|
-
else:
|
|
2583
|
-
# TODO: there some additional cases we can support for homogeneous variadic
|
|
2584
|
-
# items, we can "eat away" finite number of items.
|
|
2585
|
-
return None
|
|
2586
|
-
else:
|
|
2587
|
-
slice_items = self.items[begin:end:stride]
|
|
2588
|
-
return TupleType(slice_items, fallback, self.line, self.column, self.implicit)
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
class TypedDictType(ProperType):
|
|
2592
|
-
"""Type of TypedDict object {'k1': v1, ..., 'kn': vn}.
|
|
2593
|
-
|
|
2594
|
-
A TypedDict object is a dictionary with specific string (literal) keys. Each
|
|
2595
|
-
key has a value with a distinct type that depends on the key. TypedDict objects
|
|
2596
|
-
are normal dict objects at runtime.
|
|
2597
|
-
|
|
2598
|
-
A TypedDictType can be either named or anonymous. If it's anonymous, its
|
|
2599
|
-
fallback will be typing_extensions._TypedDict (Instance). _TypedDict is a subclass
|
|
2600
|
-
of Mapping[str, object] and defines all non-mapping dict methods that TypedDict
|
|
2601
|
-
supports. Some dict methods are unsafe and not supported. _TypedDict isn't defined
|
|
2602
|
-
at runtime.
|
|
2603
|
-
|
|
2604
|
-
If a TypedDict is named, its fallback will be an Instance of the named type
|
|
2605
|
-
(ex: "Point") whose TypeInfo has a typeddict_type that is anonymous. This
|
|
2606
|
-
is similar to how named tuples work.
|
|
2607
|
-
|
|
2608
|
-
TODO: The fallback structure is perhaps overly complicated.
|
|
2609
|
-
"""
|
|
2610
|
-
|
|
2611
|
-
__slots__ = ("items", "required_keys", "fallback")
|
|
2612
|
-
|
|
2613
|
-
items: dict[str, Type] # item_name -> item_type
|
|
2614
|
-
required_keys: set[str]
|
|
2615
|
-
fallback: Instance
|
|
2616
|
-
|
|
2617
|
-
def __init__(
|
|
2618
|
-
self,
|
|
2619
|
-
items: dict[str, Type],
|
|
2620
|
-
required_keys: set[str],
|
|
2621
|
-
fallback: Instance,
|
|
2622
|
-
line: int = -1,
|
|
2623
|
-
column: int = -1,
|
|
2624
|
-
) -> None:
|
|
2625
|
-
super().__init__(line, column)
|
|
2626
|
-
self.items = items
|
|
2627
|
-
self.required_keys = required_keys
|
|
2628
|
-
self.fallback = fallback
|
|
2629
|
-
self.can_be_true = len(self.items) > 0
|
|
2630
|
-
self.can_be_false = len(self.required_keys) == 0
|
|
2631
|
-
|
|
2632
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
2633
|
-
return visitor.visit_typeddict_type(self)
|
|
2634
|
-
|
|
2635
|
-
def __hash__(self) -> int:
|
|
2636
|
-
return hash(
|
|
2637
|
-
(
|
|
2638
|
-
frozenset(self.items.items()),
|
|
2639
|
-
self.fallback,
|
|
2640
|
-
frozenset(self.required_keys),
|
|
2641
|
-
)
|
|
2642
|
-
)
|
|
2643
|
-
|
|
2644
|
-
def __eq__(self, other: object) -> bool:
|
|
2645
|
-
if not isinstance(other, TypedDictType):
|
|
2646
|
-
return NotImplemented
|
|
2647
|
-
|
|
2648
|
-
return (
|
|
2649
|
-
frozenset(self.items.keys()) == frozenset(other.items.keys())
|
|
2650
|
-
and all(
|
|
2651
|
-
left_item_type == right_item_type
|
|
2652
|
-
for (_, left_item_type, right_item_type) in self.zip(other)
|
|
2653
|
-
)
|
|
2654
|
-
and self.fallback == other.fallback
|
|
2655
|
-
and self.required_keys == other.required_keys
|
|
2656
|
-
)
|
|
2657
|
-
|
|
2658
|
-
def serialize(self) -> JsonDict:
|
|
2659
|
-
return {
|
|
2660
|
-
".class": "TypedDictType",
|
|
2661
|
-
"items": [[n, t.serialize()] for (n, t) in self.items.items()],
|
|
2662
|
-
"required_keys": sorted(self.required_keys),
|
|
2663
|
-
"fallback": self.fallback.serialize(),
|
|
2664
|
-
}
|
|
2665
|
-
|
|
2666
|
-
@classmethod
|
|
2667
|
-
def deserialize(cls, data: JsonDict) -> TypedDictType:
|
|
2668
|
-
assert data[".class"] == "TypedDictType"
|
|
2669
|
-
return TypedDictType(
|
|
2670
|
-
{n: deserialize_type(t) for (n, t) in data["items"]},
|
|
2671
|
-
set(data["required_keys"]),
|
|
2672
|
-
Instance.deserialize(data["fallback"]),
|
|
2673
|
-
)
|
|
2674
|
-
|
|
2675
|
-
@property
|
|
2676
|
-
def is_final(self) -> bool:
|
|
2677
|
-
return self.fallback.type.is_final
|
|
2678
|
-
|
|
2679
|
-
def is_anonymous(self) -> bool:
|
|
2680
|
-
return self.fallback.type.fullname in TPDICT_FB_NAMES
|
|
2681
|
-
|
|
2682
|
-
def as_anonymous(self) -> TypedDictType:
|
|
2683
|
-
if self.is_anonymous():
|
|
2684
|
-
return self
|
|
2685
|
-
assert self.fallback.type.typeddict_type is not None
|
|
2686
|
-
return self.fallback.type.typeddict_type.as_anonymous()
|
|
2687
|
-
|
|
2688
|
-
def copy_modified(
|
|
2689
|
-
self,
|
|
2690
|
-
*,
|
|
2691
|
-
fallback: Instance | None = None,
|
|
2692
|
-
item_types: list[Type] | None = None,
|
|
2693
|
-
item_names: list[str] | None = None,
|
|
2694
|
-
required_keys: set[str] | None = None,
|
|
2695
|
-
) -> TypedDictType:
|
|
2696
|
-
if fallback is None:
|
|
2697
|
-
fallback = self.fallback
|
|
2698
|
-
if item_types is None:
|
|
2699
|
-
items = self.items
|
|
2700
|
-
else:
|
|
2701
|
-
items = dict(zip(self.items, item_types))
|
|
2702
|
-
if required_keys is None:
|
|
2703
|
-
required_keys = self.required_keys
|
|
2704
|
-
if item_names is not None:
|
|
2705
|
-
items = {k: v for (k, v) in items.items() if k in item_names}
|
|
2706
|
-
required_keys &= set(item_names)
|
|
2707
|
-
return TypedDictType(items, required_keys, fallback, self.line, self.column)
|
|
2708
|
-
|
|
2709
|
-
def create_anonymous_fallback(self) -> Instance:
|
|
2710
|
-
anonymous = self.as_anonymous()
|
|
2711
|
-
return anonymous.fallback
|
|
2712
|
-
|
|
2713
|
-
def names_are_wider_than(self, other: TypedDictType) -> bool:
|
|
2714
|
-
return len(other.items.keys() - self.items.keys()) == 0
|
|
2715
|
-
|
|
2716
|
-
def zip(self, right: TypedDictType) -> Iterable[tuple[str, Type, Type]]:
|
|
2717
|
-
left = self
|
|
2718
|
-
for item_name, left_item_type in left.items.items():
|
|
2719
|
-
right_item_type = right.items.get(item_name)
|
|
2720
|
-
if right_item_type is not None:
|
|
2721
|
-
yield (item_name, left_item_type, right_item_type)
|
|
2722
|
-
|
|
2723
|
-
def zipall(
|
|
2724
|
-
self, right: TypedDictType
|
|
2725
|
-
) -> Iterable[tuple[str, Type | None, Type | None]]:
|
|
2726
|
-
left = self
|
|
2727
|
-
for item_name, left_item_type in left.items.items():
|
|
2728
|
-
right_item_type = right.items.get(item_name)
|
|
2729
|
-
yield (item_name, left_item_type, right_item_type)
|
|
2730
|
-
for item_name, right_item_type in right.items.items():
|
|
2731
|
-
if item_name in left.items:
|
|
2732
|
-
continue
|
|
2733
|
-
yield (item_name, None, right_item_type)
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
class RawExpressionType(ProperType):
|
|
2737
|
-
"""A synthetic type representing some arbitrary expression that does not cleanly
|
|
2738
|
-
translate into a type.
|
|
2739
|
-
|
|
2740
|
-
This synthetic type is only used at the beginning stages of semantic analysis
|
|
2741
|
-
and should be completely removing during the process for mapping UnboundTypes to
|
|
2742
|
-
actual types: we either turn it into a LiteralType or an AnyType.
|
|
2743
|
-
|
|
2744
|
-
For example, suppose `Foo[1]` is initially represented as the following:
|
|
2745
|
-
|
|
2746
|
-
UnboundType(
|
|
2747
|
-
name='Foo',
|
|
2748
|
-
args=[
|
|
2749
|
-
RawExpressionType(value=1, base_type_name='builtins.int'),
|
|
2750
|
-
],
|
|
2751
|
-
)
|
|
2752
|
-
|
|
2753
|
-
As we perform semantic analysis, this type will transform into one of two
|
|
2754
|
-
possible forms.
|
|
2755
|
-
|
|
2756
|
-
If 'Foo' was an alias for 'Literal' all along, this type is transformed into:
|
|
2757
|
-
|
|
2758
|
-
LiteralType(value=1, fallback=int_instance_here)
|
|
2759
|
-
|
|
2760
|
-
Alternatively, if 'Foo' is an unrelated class, we report an error and instead
|
|
2761
|
-
produce something like this:
|
|
2762
|
-
|
|
2763
|
-
Instance(type=typeinfo_for_foo, args=[AnyType(TypeOfAny.from_error))
|
|
2764
|
-
|
|
2765
|
-
If the "note" field is not None, the provided note will be reported alongside the
|
|
2766
|
-
error at this point.
|
|
2767
|
-
|
|
2768
|
-
Note: if "literal_value" is None, that means this object is representing some
|
|
2769
|
-
expression that cannot possibly be a parameter of Literal[...]. For example,
|
|
2770
|
-
"Foo[3j]" would be represented as:
|
|
2771
|
-
|
|
2772
|
-
UnboundType(
|
|
2773
|
-
name='Foo',
|
|
2774
|
-
args=[
|
|
2775
|
-
RawExpressionType(value=None, base_type_name='builtins.complex'),
|
|
2776
|
-
],
|
|
2777
|
-
)
|
|
2778
|
-
"""
|
|
2779
|
-
|
|
2780
|
-
__slots__ = ("literal_value", "base_type_name", "note")
|
|
2781
|
-
|
|
2782
|
-
def __init__(
|
|
2783
|
-
self,
|
|
2784
|
-
literal_value: LiteralValue | None,
|
|
2785
|
-
base_type_name: str,
|
|
2786
|
-
line: int = -1,
|
|
2787
|
-
column: int = -1,
|
|
2788
|
-
note: str | None = None,
|
|
2789
|
-
) -> None:
|
|
2790
|
-
super().__init__(line, column)
|
|
2791
|
-
self.literal_value = literal_value
|
|
2792
|
-
self.base_type_name = base_type_name
|
|
2793
|
-
self.note = note
|
|
2794
|
-
|
|
2795
|
-
def simple_name(self) -> str:
|
|
2796
|
-
return self.base_type_name.replace("builtins.", "")
|
|
2797
|
-
|
|
2798
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
2799
|
-
assert isinstance(visitor, SyntheticTypeVisitor)
|
|
2800
|
-
ret: T = visitor.visit_raw_expression_type(self)
|
|
2801
|
-
return ret
|
|
2802
|
-
|
|
2803
|
-
def serialize(self) -> JsonDict:
|
|
2804
|
-
assert False, "Synthetic types don't serialize"
|
|
2805
|
-
|
|
2806
|
-
def __hash__(self) -> int:
|
|
2807
|
-
return hash((self.literal_value, self.base_type_name))
|
|
2808
|
-
|
|
2809
|
-
def __eq__(self, other: object) -> bool:
|
|
2810
|
-
if isinstance(other, RawExpressionType):
|
|
2811
|
-
return (
|
|
2812
|
-
self.base_type_name == other.base_type_name
|
|
2813
|
-
and self.literal_value == other.literal_value
|
|
2814
|
-
)
|
|
2815
|
-
else:
|
|
2816
|
-
return NotImplemented
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
class LiteralType(ProperType):
|
|
2820
|
-
"""The type of a Literal instance. Literal[Value]
|
|
2821
|
-
|
|
2822
|
-
A Literal always consists of:
|
|
2823
|
-
|
|
2824
|
-
1. A native Python object corresponding to the contained inner value
|
|
2825
|
-
2. A fallback for this Literal. The fallback also corresponds to the
|
|
2826
|
-
parent type this Literal subtypes.
|
|
2827
|
-
|
|
2828
|
-
For example, 'Literal[42]' is represented as
|
|
2829
|
-
'LiteralType(value=42, fallback=instance_of_int)'
|
|
2830
|
-
|
|
2831
|
-
As another example, `Literal[Color.RED]` (where Color is an enum) is
|
|
2832
|
-
represented as `LiteralType(value="RED", fallback=instance_of_color)'.
|
|
2833
|
-
"""
|
|
2834
|
-
|
|
2835
|
-
__slots__ = ("value", "fallback", "_hash")
|
|
2836
|
-
|
|
2837
|
-
def __init__(
|
|
2838
|
-
self, value: LiteralValue, fallback: Instance, line: int = -1, column: int = -1
|
|
2839
|
-
) -> None:
|
|
2840
|
-
super().__init__(line, column)
|
|
2841
|
-
self.value = value
|
|
2842
|
-
self.fallback = fallback
|
|
2843
|
-
self._hash = -1 # Cached hash value
|
|
2844
|
-
|
|
2845
|
-
def can_be_false_default(self) -> bool:
|
|
2846
|
-
return not self.value
|
|
2847
|
-
|
|
2848
|
-
def can_be_true_default(self) -> bool:
|
|
2849
|
-
return bool(self.value)
|
|
2850
|
-
|
|
2851
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
2852
|
-
return visitor.visit_literal_type(self)
|
|
2853
|
-
|
|
2854
|
-
def __hash__(self) -> int:
|
|
2855
|
-
if self._hash == -1:
|
|
2856
|
-
self._hash = hash((self.value, self.fallback))
|
|
2857
|
-
return self._hash
|
|
2858
|
-
|
|
2859
|
-
def __eq__(self, other: object) -> bool:
|
|
2860
|
-
if isinstance(other, LiteralType):
|
|
2861
|
-
return self.fallback == other.fallback and self.value == other.value
|
|
2862
|
-
else:
|
|
2863
|
-
return NotImplemented
|
|
2864
|
-
|
|
2865
|
-
def is_enum_literal(self) -> bool:
|
|
2866
|
-
return self.fallback.type.is_enum
|
|
2867
|
-
|
|
2868
|
-
def value_repr(self) -> str:
|
|
2869
|
-
"""Returns the string representation of the underlying type.
|
|
2870
|
-
|
|
2871
|
-
This function is almost equivalent to running `repr(self.value)`,
|
|
2872
|
-
except it includes some additional logic to correctly handle cases
|
|
2873
|
-
where the value is a string, byte string, a unicode string, or an enum.
|
|
2874
|
-
"""
|
|
2875
|
-
raw = repr(self.value)
|
|
2876
|
-
fallback_name = self.fallback.type.fullname
|
|
2877
|
-
|
|
2878
|
-
# If this is backed by an enum,
|
|
2879
|
-
if self.is_enum_literal():
|
|
2880
|
-
return f"{fallback_name}.{self.value}"
|
|
2881
|
-
|
|
2882
|
-
if fallback_name == "builtins.bytes":
|
|
2883
|
-
# Note: 'builtins.bytes' only appears in Python 3, so we want to
|
|
2884
|
-
# explicitly prefix with a "b"
|
|
2885
|
-
return "b" + raw
|
|
2886
|
-
else:
|
|
2887
|
-
# 'builtins.str' could mean either depending on context, but either way
|
|
2888
|
-
# we don't prefix: it's the "native" string. And of course, if value is
|
|
2889
|
-
# some other type, we just return that string repr directly.
|
|
2890
|
-
return raw
|
|
2891
|
-
|
|
2892
|
-
def serialize(self) -> JsonDict | str:
|
|
2893
|
-
return {
|
|
2894
|
-
".class": "LiteralType",
|
|
2895
|
-
"value": self.value,
|
|
2896
|
-
"fallback": self.fallback.serialize(),
|
|
2897
|
-
}
|
|
2898
|
-
|
|
2899
|
-
@classmethod
|
|
2900
|
-
def deserialize(cls, data: JsonDict) -> LiteralType:
|
|
2901
|
-
assert data[".class"] == "LiteralType"
|
|
2902
|
-
return LiteralType(
|
|
2903
|
-
value=data["value"], fallback=Instance.deserialize(data["fallback"])
|
|
2904
|
-
)
|
|
2905
|
-
|
|
2906
|
-
def is_singleton_type(self) -> bool:
|
|
2907
|
-
return self.is_enum_literal() or isinstance(self.value, bool)
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
class UnionType(ProperType):
|
|
2911
|
-
"""The union type Union[T1, ..., Tn] (at least one type argument)."""
|
|
2912
|
-
|
|
2913
|
-
__slots__ = ("items", "is_evaluated", "uses_pep604_syntax")
|
|
2914
|
-
|
|
2915
|
-
def __init__(
|
|
2916
|
-
self,
|
|
2917
|
-
items: Sequence[Type],
|
|
2918
|
-
line: int = -1,
|
|
2919
|
-
column: int = -1,
|
|
2920
|
-
is_evaluated: bool = True,
|
|
2921
|
-
uses_pep604_syntax: bool = False,
|
|
2922
|
-
) -> None:
|
|
2923
|
-
super().__init__(line, column)
|
|
2924
|
-
# We must keep this false to avoid crashes during semantic analysis.
|
|
2925
|
-
# TODO: maybe switch this to True during type-checking pass?
|
|
2926
|
-
self.items = flatten_nested_unions(items, handle_type_alias_type=False)
|
|
2927
|
-
# is_evaluated should be set to false for type comments and string literals
|
|
2928
|
-
self.is_evaluated = is_evaluated
|
|
2929
|
-
# uses_pep604_syntax is True if Union uses OR syntax (X | Y)
|
|
2930
|
-
self.uses_pep604_syntax = uses_pep604_syntax
|
|
2931
|
-
|
|
2932
|
-
def can_be_true_default(self) -> bool:
|
|
2933
|
-
return any(item.can_be_true for item in self.items)
|
|
2934
|
-
|
|
2935
|
-
def can_be_false_default(self) -> bool:
|
|
2936
|
-
return any(item.can_be_false for item in self.items)
|
|
2937
|
-
|
|
2938
|
-
def __hash__(self) -> int:
|
|
2939
|
-
return hash(frozenset(self.items))
|
|
2940
|
-
|
|
2941
|
-
def __eq__(self, other: object) -> bool:
|
|
2942
|
-
if not isinstance(other, UnionType):
|
|
2943
|
-
return NotImplemented
|
|
2944
|
-
return frozenset(self.items) == frozenset(other.items)
|
|
2945
|
-
|
|
2946
|
-
@overload
|
|
2947
|
-
@staticmethod
|
|
2948
|
-
def make_union(
|
|
2949
|
-
items: Sequence[ProperType], line: int = -1, column: int = -1
|
|
2950
|
-
) -> ProperType: ...
|
|
2951
|
-
|
|
2952
|
-
@overload
|
|
2953
|
-
@staticmethod
|
|
2954
|
-
def make_union(items: Sequence[Type], line: int = -1, column: int = -1) -> Type: ...
|
|
2955
|
-
|
|
2956
|
-
@staticmethod
|
|
2957
|
-
def make_union(items: Sequence[Type], line: int = -1, column: int = -1) -> Type:
|
|
2958
|
-
if len(items) > 1:
|
|
2959
|
-
return UnionType(items, line, column)
|
|
2960
|
-
elif len(items) == 1:
|
|
2961
|
-
return items[0]
|
|
2962
|
-
else:
|
|
2963
|
-
return UninhabitedType()
|
|
2964
|
-
|
|
2965
|
-
def length(self) -> int:
|
|
2966
|
-
return len(self.items)
|
|
2967
|
-
|
|
2968
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
2969
|
-
return visitor.visit_union_type(self)
|
|
2970
|
-
|
|
2971
|
-
def relevant_items(self) -> list[Type]:
|
|
2972
|
-
"""Removes NoneTypes from Unions when strict Optional checking is off."""
|
|
2973
|
-
if state.strict_optional:
|
|
2974
|
-
return self.items
|
|
2975
|
-
else:
|
|
2976
|
-
return [
|
|
2977
|
-
i for i in self.items if not isinstance(get_proper_type(i), NoneType)
|
|
2978
|
-
]
|
|
2979
|
-
|
|
2980
|
-
def serialize(self) -> JsonDict:
|
|
2981
|
-
return {".class": "UnionType", "items": [t.serialize() for t in self.items]}
|
|
2982
|
-
|
|
2983
|
-
@classmethod
|
|
2984
|
-
def deserialize(cls, data: JsonDict) -> UnionType:
|
|
2985
|
-
assert data[".class"] == "UnionType"
|
|
2986
|
-
return UnionType([deserialize_type(t) for t in data["items"]])
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
class PartialType(ProperType):
|
|
2990
|
-
"""Type such as List[?] where type arguments are unknown, or partial None type.
|
|
2991
|
-
|
|
2992
|
-
These are used for inferring types in multiphase initialization such as this:
|
|
2993
|
-
|
|
2994
|
-
x = [] # x gets a partial type List[?], as item type is unknown
|
|
2995
|
-
x.append(1) # partial type gets replaced with normal type List[int]
|
|
2996
|
-
|
|
2997
|
-
Or with None:
|
|
2998
|
-
|
|
2999
|
-
x = None # x gets a partial type None
|
|
3000
|
-
if c:
|
|
3001
|
-
x = 1 # Infer actual type int for x
|
|
3002
|
-
"""
|
|
3003
|
-
|
|
3004
|
-
__slots__ = ("type", "var", "value_type")
|
|
3005
|
-
|
|
3006
|
-
# None for the 'None' partial type; otherwise a generic class
|
|
3007
|
-
type: mypy.nodes.TypeInfo | None
|
|
3008
|
-
var: mypy.nodes.Var
|
|
3009
|
-
# For partial defaultdict[K, V], the type V (K is unknown). If V is generic,
|
|
3010
|
-
# the type argument is Any and will be replaced later.
|
|
3011
|
-
value_type: Instance | None
|
|
3012
|
-
|
|
3013
|
-
def __init__(
|
|
3014
|
-
self,
|
|
3015
|
-
type: mypy.nodes.TypeInfo | None,
|
|
3016
|
-
var: mypy.nodes.Var,
|
|
3017
|
-
value_type: Instance | None = None,
|
|
3018
|
-
) -> None:
|
|
3019
|
-
super().__init__()
|
|
3020
|
-
self.type = type
|
|
3021
|
-
self.var = var
|
|
3022
|
-
self.value_type = value_type
|
|
3023
|
-
|
|
3024
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
3025
|
-
return visitor.visit_partial_type(self)
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
class EllipsisType(ProperType):
|
|
3029
|
-
"""The type ... (ellipsis).
|
|
3030
|
-
|
|
3031
|
-
This is not a real type but a syntactic AST construct, used in Callable[..., T], for example.
|
|
3032
|
-
|
|
3033
|
-
A semantically analyzed type will never have ellipsis types.
|
|
3034
|
-
"""
|
|
3035
|
-
|
|
3036
|
-
__slots__ = ()
|
|
3037
|
-
|
|
3038
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
3039
|
-
assert isinstance(visitor, SyntheticTypeVisitor)
|
|
3040
|
-
ret: T = visitor.visit_ellipsis_type(self)
|
|
3041
|
-
return ret
|
|
3042
|
-
|
|
3043
|
-
def serialize(self) -> JsonDict:
|
|
3044
|
-
assert False, "Synthetic types don't serialize"
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
class TypeType(ProperType):
|
|
3048
|
-
"""For types like Type[User].
|
|
3049
|
-
|
|
3050
|
-
This annotates variables that are class objects, constrained by
|
|
3051
|
-
the type argument. See PEP 484 for more details.
|
|
3052
|
-
|
|
3053
|
-
We may encounter expressions whose values are specific classes;
|
|
3054
|
-
those are represented as callables (possibly overloaded)
|
|
3055
|
-
corresponding to the class's constructor's signature and returning
|
|
3056
|
-
an instance of that class. The difference with Type[C] is that
|
|
3057
|
-
those callables always represent the exact class given as the
|
|
3058
|
-
return type; Type[C] represents any class that's a subclass of C,
|
|
3059
|
-
and C may also be a type variable or a union (or Any).
|
|
3060
|
-
|
|
3061
|
-
Many questions around subtype relationships between Type[C1] and
|
|
3062
|
-
def(...) -> C2 are answered by looking at the subtype
|
|
3063
|
-
relationships between C1 and C2, since Type[] is considered
|
|
3064
|
-
covariant.
|
|
3065
|
-
|
|
3066
|
-
There's an unsolved problem with constructor signatures (also
|
|
3067
|
-
unsolved in PEP 484): calling a variable whose type is Type[C]
|
|
3068
|
-
assumes the constructor signature for C, even though a subclass of
|
|
3069
|
-
C might completely change the constructor signature. For now we
|
|
3070
|
-
just assume that users of Type[C] are careful not to do that (in
|
|
3071
|
-
the future we might detect when they are violating that
|
|
3072
|
-
assumption).
|
|
3073
|
-
"""
|
|
3074
|
-
|
|
3075
|
-
__slots__ = ("item",)
|
|
3076
|
-
|
|
3077
|
-
# This can't be everything, but it can be a class reference,
|
|
3078
|
-
# a generic class instance, a union, Any, a type variable...
|
|
3079
|
-
item: ProperType
|
|
3080
|
-
|
|
3081
|
-
def __init__(
|
|
3082
|
-
self,
|
|
3083
|
-
item: Bogus[
|
|
3084
|
-
Instance | AnyType | TypeVarType | TupleType | NoneType | CallableType
|
|
3085
|
-
],
|
|
3086
|
-
*,
|
|
3087
|
-
line: int = -1,
|
|
3088
|
-
column: int = -1,
|
|
3089
|
-
) -> None:
|
|
3090
|
-
"""To ensure Type[Union[A, B]] is always represented as Union[Type[A], Type[B]], item of
|
|
3091
|
-
type UnionType must be handled through make_normalized static method.
|
|
3092
|
-
"""
|
|
3093
|
-
super().__init__(line, column)
|
|
3094
|
-
self.item = item
|
|
3095
|
-
|
|
3096
|
-
@staticmethod
|
|
3097
|
-
def make_normalized(item: Type, *, line: int = -1, column: int = -1) -> ProperType:
|
|
3098
|
-
item = get_proper_type(item)
|
|
3099
|
-
if isinstance(item, UnionType):
|
|
3100
|
-
return UnionType.make_union(
|
|
3101
|
-
[TypeType.make_normalized(union_item) for union_item in item.items],
|
|
3102
|
-
line=line,
|
|
3103
|
-
column=column,
|
|
3104
|
-
)
|
|
3105
|
-
return TypeType(item, line=line, column=column) # type: ignore[arg-type]
|
|
3106
|
-
|
|
3107
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
3108
|
-
return visitor.visit_type_type(self)
|
|
3109
|
-
|
|
3110
|
-
def __hash__(self) -> int:
|
|
3111
|
-
return hash(self.item)
|
|
3112
|
-
|
|
3113
|
-
def __eq__(self, other: object) -> bool:
|
|
3114
|
-
if not isinstance(other, TypeType):
|
|
3115
|
-
return NotImplemented
|
|
3116
|
-
return self.item == other.item
|
|
3117
|
-
|
|
3118
|
-
def serialize(self) -> JsonDict:
|
|
3119
|
-
return {".class": "TypeType", "item": self.item.serialize()}
|
|
3120
|
-
|
|
3121
|
-
@classmethod
|
|
3122
|
-
def deserialize(cls, data: JsonDict) -> Type:
|
|
3123
|
-
assert data[".class"] == "TypeType"
|
|
3124
|
-
return TypeType.make_normalized(deserialize_type(data["item"]))
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
class PlaceholderType(ProperType):
|
|
3128
|
-
"""Temporary, yet-unknown type during semantic analysis.
|
|
3129
|
-
|
|
3130
|
-
This is needed when there's a reference to a type before the real symbol
|
|
3131
|
-
table entry of the target type is available (specifically, we use a
|
|
3132
|
-
temporary PlaceholderNode symbol node). Consider this example:
|
|
3133
|
-
|
|
3134
|
-
class str(Sequence[str]): ...
|
|
3135
|
-
|
|
3136
|
-
We use a PlaceholderType for the 'str' in 'Sequence[str]' since we can't create
|
|
3137
|
-
a TypeInfo for 'str' until all base classes have been resolved. We'll soon
|
|
3138
|
-
perform another analysis iteration which replaces the base class with a complete
|
|
3139
|
-
type without any placeholders. After semantic analysis, no placeholder types must
|
|
3140
|
-
exist.
|
|
3141
|
-
"""
|
|
3142
|
-
|
|
3143
|
-
__slots__ = ("fullname", "args")
|
|
3144
|
-
|
|
3145
|
-
def __init__(self, fullname: str | None, args: list[Type], line: int) -> None:
|
|
3146
|
-
super().__init__(line)
|
|
3147
|
-
self.fullname = (
|
|
3148
|
-
fullname # Must be a valid full name of an actual node (or None).
|
|
3149
|
-
)
|
|
3150
|
-
self.args = args
|
|
3151
|
-
|
|
3152
|
-
def accept(self, visitor: TypeVisitor[T]) -> T:
|
|
3153
|
-
assert isinstance(visitor, SyntheticTypeVisitor)
|
|
3154
|
-
ret: T = visitor.visit_placeholder_type(self)
|
|
3155
|
-
return ret
|
|
3156
|
-
|
|
3157
|
-
def __hash__(self) -> int:
|
|
3158
|
-
return hash((self.fullname, tuple(self.args)))
|
|
3159
|
-
|
|
3160
|
-
def __eq__(self, other: object) -> bool:
|
|
3161
|
-
if not isinstance(other, PlaceholderType):
|
|
3162
|
-
return NotImplemented
|
|
3163
|
-
return self.fullname == other.fullname and self.args == other.args
|
|
3164
|
-
|
|
3165
|
-
def serialize(self) -> str:
|
|
3166
|
-
# We should never get here since all placeholders should be replaced
|
|
3167
|
-
# during semantic analysis.
|
|
3168
|
-
assert False, f"Internal error: unresolved placeholder type {self.fullname}"
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
@overload
|
|
3172
|
-
def get_proper_type(typ: None) -> None: ...
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
@overload
|
|
3176
|
-
def get_proper_type(typ: Type) -> ProperType: ...
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
def get_proper_type(typ: Type | None) -> ProperType | None:
|
|
3180
|
-
"""Get the expansion of a type alias type.
|
|
3181
|
-
|
|
3182
|
-
If the type is already a proper type, this is a no-op. Use this function
|
|
3183
|
-
wherever a decision is made on a call like e.g. 'if isinstance(typ, UnionType): ...',
|
|
3184
|
-
because 'typ' in this case may be an alias to union. Note: if after making the decision
|
|
3185
|
-
on the isinstance() call you pass on the original type (and not one of its components)
|
|
3186
|
-
it is recommended to *always* pass on the unexpanded alias.
|
|
3187
|
-
"""
|
|
3188
|
-
if typ is None:
|
|
3189
|
-
return None
|
|
3190
|
-
if isinstance(typ, TypeGuardedType): # type: ignore[misc]
|
|
3191
|
-
typ = typ.type_guard
|
|
3192
|
-
while isinstance(typ, TypeAliasType):
|
|
3193
|
-
typ = typ._expand_once()
|
|
3194
|
-
# TODO: store the name of original type alias on this type, so we can show it in errors.
|
|
3195
|
-
return cast(ProperType, typ)
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
@overload
|
|
3199
|
-
def get_proper_types(types: list[Type] | tuple[Type, ...]) -> list[ProperType]: # type: ignore[overload-overlap]
|
|
3200
|
-
...
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
@overload
|
|
3204
|
-
def get_proper_types(
|
|
3205
|
-
types: list[Type | None] | tuple[Type | None, ...]
|
|
3206
|
-
) -> list[ProperType | None]: ...
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
def get_proper_types(
|
|
3210
|
-
types: list[Type] | list[Type | None] | tuple[Type | None, ...]
|
|
3211
|
-
) -> list[ProperType] | list[ProperType | None]:
|
|
3212
|
-
if isinstance(types, list):
|
|
3213
|
-
typelist = types
|
|
3214
|
-
# Optimize for the common case so that we don't need to allocate anything
|
|
3215
|
-
if not any(
|
|
3216
|
-
isinstance(t, (TypeAliasType, TypeGuardedType)) for t in typelist # type: ignore[misc]
|
|
3217
|
-
):
|
|
3218
|
-
return cast("list[ProperType]", typelist)
|
|
3219
|
-
return [get_proper_type(t) for t in typelist]
|
|
3220
|
-
else:
|
|
3221
|
-
return [get_proper_type(t) for t in types]
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
# We split off the type visitor base classes to another module
|
|
3225
|
-
# to make it easier to gradually get modules working with mypyc.
|
|
3226
|
-
# Import them here, after the types are defined.
|
|
3227
|
-
# This is intended as a re-export also.
|
|
3228
|
-
from mypy.type_visitor import (
|
|
3229
|
-
ALL_STRATEGY as ALL_STRATEGY,
|
|
3230
|
-
ANY_STRATEGY as ANY_STRATEGY,
|
|
3231
|
-
BoolTypeQuery as BoolTypeQuery,
|
|
3232
|
-
SyntheticTypeVisitor as SyntheticTypeVisitor,
|
|
3233
|
-
TypeQuery as TypeQuery,
|
|
3234
|
-
TypeTranslator as TypeTranslator,
|
|
3235
|
-
TypeVisitor as TypeVisitor,
|
|
3236
|
-
)
|
|
3237
|
-
from mypy.typetraverser import TypeTraverserVisitor
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
class TypeStrVisitor(SyntheticTypeVisitor[str]):
|
|
3241
|
-
"""Visitor for pretty-printing types into strings.
|
|
3242
|
-
|
|
3243
|
-
This is mostly for debugging/testing.
|
|
3244
|
-
|
|
3245
|
-
Do not preserve original formatting.
|
|
3246
|
-
|
|
3247
|
-
Notes:
|
|
3248
|
-
- Represent unbound types as Foo? or Foo?[...].
|
|
3249
|
-
- Represent the NoneType type as None.
|
|
3250
|
-
"""
|
|
3251
|
-
|
|
3252
|
-
def __init__(self, id_mapper: IdMapper | None = None, *, options: Options) -> None:
|
|
3253
|
-
self.id_mapper = id_mapper
|
|
3254
|
-
self.any_as_dots = False
|
|
3255
|
-
self.options = options
|
|
3256
|
-
|
|
3257
|
-
def visit_unbound_type(self, t: UnboundType) -> str:
|
|
3258
|
-
s = t.name + "?"
|
|
3259
|
-
if t.args:
|
|
3260
|
-
s += f"[{self.list_str(t.args)}]"
|
|
3261
|
-
return s
|
|
3262
|
-
|
|
3263
|
-
def visit_type_list(self, t: TypeList) -> str:
|
|
3264
|
-
return f"<TypeList {self.list_str(t.items)}>"
|
|
3265
|
-
|
|
3266
|
-
def visit_callable_argument(self, t: CallableArgument) -> str:
|
|
3267
|
-
typ = t.typ.accept(self)
|
|
3268
|
-
if t.name is None:
|
|
3269
|
-
return f"{t.constructor}({typ})"
|
|
3270
|
-
else:
|
|
3271
|
-
return f"{t.constructor}({typ}, {t.name})"
|
|
3272
|
-
|
|
3273
|
-
def visit_any(self, t: AnyType) -> str:
|
|
3274
|
-
if self.any_as_dots and t.type_of_any == TypeOfAny.special_form:
|
|
3275
|
-
return "..."
|
|
3276
|
-
return "Any"
|
|
3277
|
-
|
|
3278
|
-
def visit_none_type(self, t: NoneType) -> str:
|
|
3279
|
-
return "None"
|
|
3280
|
-
|
|
3281
|
-
def visit_uninhabited_type(self, t: UninhabitedType) -> str:
|
|
3282
|
-
return "Never"
|
|
3283
|
-
|
|
3284
|
-
def visit_erased_type(self, t: ErasedType) -> str:
|
|
3285
|
-
return "<Erased>"
|
|
3286
|
-
|
|
3287
|
-
def visit_deleted_type(self, t: DeletedType) -> str:
|
|
3288
|
-
if t.source is None:
|
|
3289
|
-
return "<Deleted>"
|
|
3290
|
-
else:
|
|
3291
|
-
return f"<Deleted '{t.source}'>"
|
|
3292
|
-
|
|
3293
|
-
def visit_instance(self, t: Instance) -> str:
|
|
3294
|
-
if t.last_known_value and not t.args:
|
|
3295
|
-
# Instances with a literal fallback should never be generic. If they are,
|
|
3296
|
-
# something went wrong so we fall back to showing the full Instance repr.
|
|
3297
|
-
s = f"{t.last_known_value.accept(self)}?"
|
|
3298
|
-
else:
|
|
3299
|
-
s = t.type.fullname or t.type.name or "<???>"
|
|
3300
|
-
|
|
3301
|
-
if t.args:
|
|
3302
|
-
if t.type.fullname == "builtins.tuple":
|
|
3303
|
-
assert len(t.args) == 1
|
|
3304
|
-
s += f"[{self.list_str(t.args)}, ...]"
|
|
3305
|
-
else:
|
|
3306
|
-
s += f"[{self.list_str(t.args)}]"
|
|
3307
|
-
elif t.type.has_type_var_tuple_type and len(t.type.type_vars) == 1:
|
|
3308
|
-
s += "[()]"
|
|
3309
|
-
if self.id_mapper:
|
|
3310
|
-
s += f"<{self.id_mapper.id(t.type)}>"
|
|
3311
|
-
return s
|
|
3312
|
-
|
|
3313
|
-
def visit_type_var(self, t: TypeVarType) -> str:
|
|
3314
|
-
if t.name is None:
|
|
3315
|
-
# Anonymous type variable type (only numeric id).
|
|
3316
|
-
s = f"`{t.id}"
|
|
3317
|
-
else:
|
|
3318
|
-
# Named type variable type.
|
|
3319
|
-
s = f"{t.name}`{t.id}"
|
|
3320
|
-
if self.id_mapper and t.upper_bound:
|
|
3321
|
-
s += f"(upper_bound={t.upper_bound.accept(self)})"
|
|
3322
|
-
if t.has_default():
|
|
3323
|
-
s += f" = {t.default.accept(self)}"
|
|
3324
|
-
return s
|
|
3325
|
-
|
|
3326
|
-
def visit_param_spec(self, t: ParamSpecType) -> str:
|
|
3327
|
-
# prefixes are displayed as Concatenate
|
|
3328
|
-
s = ""
|
|
3329
|
-
if t.prefix.arg_types:
|
|
3330
|
-
s += f"[{self.list_str(t.prefix.arg_types)}, **"
|
|
3331
|
-
if t.name is None:
|
|
3332
|
-
# Anonymous type variable type (only numeric id).
|
|
3333
|
-
s += f"`{t.id}"
|
|
3334
|
-
else:
|
|
3335
|
-
# Named type variable type.
|
|
3336
|
-
s += f"{t.name_with_suffix()}`{t.id}"
|
|
3337
|
-
if t.prefix.arg_types:
|
|
3338
|
-
s += "]"
|
|
3339
|
-
if t.has_default():
|
|
3340
|
-
s += f" = {t.default.accept(self)}"
|
|
3341
|
-
return s
|
|
3342
|
-
|
|
3343
|
-
def visit_parameters(self, t: Parameters) -> str:
|
|
3344
|
-
# This is copied from visit_callable -- is there a way to decrease duplication?
|
|
3345
|
-
if t.is_ellipsis_args:
|
|
3346
|
-
return "..."
|
|
3347
|
-
|
|
3348
|
-
s = ""
|
|
3349
|
-
bare_asterisk = False
|
|
3350
|
-
for i in range(len(t.arg_types)):
|
|
3351
|
-
if s != "":
|
|
3352
|
-
s += ", "
|
|
3353
|
-
if t.arg_kinds[i].is_named() and not bare_asterisk:
|
|
3354
|
-
s += "*, "
|
|
3355
|
-
bare_asterisk = True
|
|
3356
|
-
if t.arg_kinds[i] == ARG_STAR:
|
|
3357
|
-
s += "*"
|
|
3358
|
-
if t.arg_kinds[i] == ARG_STAR2:
|
|
3359
|
-
s += "**"
|
|
3360
|
-
name = t.arg_names[i]
|
|
3361
|
-
if name:
|
|
3362
|
-
s += f"{name}: "
|
|
3363
|
-
r = t.arg_types[i].accept(self)
|
|
3364
|
-
|
|
3365
|
-
s += r
|
|
3366
|
-
|
|
3367
|
-
if t.arg_kinds[i].is_optional():
|
|
3368
|
-
s += " ="
|
|
3369
|
-
|
|
3370
|
-
return f"[{s}]"
|
|
3371
|
-
|
|
3372
|
-
def visit_type_var_tuple(self, t: TypeVarTupleType) -> str:
|
|
3373
|
-
if t.name is None:
|
|
3374
|
-
# Anonymous type variable type (only numeric id).
|
|
3375
|
-
s = f"`{t.id}"
|
|
3376
|
-
else:
|
|
3377
|
-
# Named type variable type.
|
|
3378
|
-
s = f"{t.name}`{t.id}"
|
|
3379
|
-
if t.has_default():
|
|
3380
|
-
s += f" = {t.default.accept(self)}"
|
|
3381
|
-
return s
|
|
3382
|
-
|
|
3383
|
-
def visit_callable_type(self, t: CallableType) -> str:
|
|
3384
|
-
param_spec = t.param_spec()
|
|
3385
|
-
if param_spec is not None:
|
|
3386
|
-
num_skip = 2
|
|
3387
|
-
else:
|
|
3388
|
-
num_skip = 0
|
|
3389
|
-
|
|
3390
|
-
s = ""
|
|
3391
|
-
asterisk = False
|
|
3392
|
-
for i in range(len(t.arg_types) - num_skip):
|
|
3393
|
-
if s != "":
|
|
3394
|
-
s += ", "
|
|
3395
|
-
if t.arg_kinds[i].is_named() and not asterisk:
|
|
3396
|
-
s += "*, "
|
|
3397
|
-
asterisk = True
|
|
3398
|
-
if t.arg_kinds[i] == ARG_STAR:
|
|
3399
|
-
s += "*"
|
|
3400
|
-
asterisk = True
|
|
3401
|
-
if t.arg_kinds[i] == ARG_STAR2:
|
|
3402
|
-
s += "**"
|
|
3403
|
-
name = t.arg_names[i]
|
|
3404
|
-
if name:
|
|
3405
|
-
s += name + ": "
|
|
3406
|
-
type_str = t.arg_types[i].accept(self)
|
|
3407
|
-
if t.arg_kinds[i] == ARG_STAR2 and t.unpack_kwargs:
|
|
3408
|
-
type_str = f"Unpack[{type_str}]"
|
|
3409
|
-
s += type_str
|
|
3410
|
-
if t.arg_kinds[i].is_optional():
|
|
3411
|
-
s += " ="
|
|
3412
|
-
|
|
3413
|
-
if param_spec is not None:
|
|
3414
|
-
n = param_spec.name
|
|
3415
|
-
if s:
|
|
3416
|
-
s += ", "
|
|
3417
|
-
s += f"*{n}.args, **{n}.kwargs"
|
|
3418
|
-
if param_spec.has_default():
|
|
3419
|
-
s += f" = {param_spec.default.accept(self)}"
|
|
3420
|
-
|
|
3421
|
-
s = f"({s})"
|
|
3422
|
-
|
|
3423
|
-
if not isinstance(get_proper_type(t.ret_type), NoneType):
|
|
3424
|
-
if t.type_guard is not None:
|
|
3425
|
-
s += f" -> TypeGuard[{t.type_guard.accept(self)}]"
|
|
3426
|
-
else:
|
|
3427
|
-
s += f" -> {t.ret_type.accept(self)}"
|
|
3428
|
-
|
|
3429
|
-
if t.variables:
|
|
3430
|
-
vs = []
|
|
3431
|
-
for var in t.variables:
|
|
3432
|
-
if isinstance(var, TypeVarType):
|
|
3433
|
-
# We reimplement TypeVarType.__repr__ here in order to support id_mapper.
|
|
3434
|
-
if var.values:
|
|
3435
|
-
vals = f"({', '.join(val.accept(self) for val in var.values)})"
|
|
3436
|
-
vs.append(f"{var.name} in {vals}")
|
|
3437
|
-
elif not is_named_instance(var.upper_bound, "builtins.object"):
|
|
3438
|
-
vs.append(
|
|
3439
|
-
f"{var.name} <: {var.upper_bound.accept(self)}{f' = {var.default.accept(self)}' if var.has_default() else ''}"
|
|
3440
|
-
)
|
|
3441
|
-
else:
|
|
3442
|
-
vs.append(
|
|
3443
|
-
f"{var.name}{f' = {var.default.accept(self)}' if var.has_default() else ''}"
|
|
3444
|
-
)
|
|
3445
|
-
else:
|
|
3446
|
-
# For other TypeVarLikeTypes, use the name and default
|
|
3447
|
-
vs.append(
|
|
3448
|
-
f"{var.name}{f' = {var.default.accept(self)}' if var.has_default() else ''}"
|
|
3449
|
-
)
|
|
3450
|
-
s = f"[{', '.join(vs)}] {s}"
|
|
3451
|
-
|
|
3452
|
-
return f"def {s}"
|
|
3453
|
-
|
|
3454
|
-
def visit_overloaded(self, t: Overloaded) -> str:
|
|
3455
|
-
a = []
|
|
3456
|
-
for i in t.items:
|
|
3457
|
-
a.append(i.accept(self))
|
|
3458
|
-
return f"Overload({', '.join(a)})"
|
|
3459
|
-
|
|
3460
|
-
def visit_tuple_type(self, t: TupleType) -> str:
|
|
3461
|
-
s = self.list_str(t.items) or "()"
|
|
3462
|
-
tuple_name = "tuple" if self.options.use_lowercase_names() else "Tuple"
|
|
3463
|
-
if t.partial_fallback and t.partial_fallback.type:
|
|
3464
|
-
fallback_name = t.partial_fallback.type.fullname
|
|
3465
|
-
if fallback_name != "builtins.tuple":
|
|
3466
|
-
return f"{tuple_name}[{s}, fallback={t.partial_fallback.accept(self)}]"
|
|
3467
|
-
return f"{tuple_name}[{s}]"
|
|
3468
|
-
|
|
3469
|
-
def visit_typeddict_type(self, t: TypedDictType) -> str:
|
|
3470
|
-
def item_str(name: str, typ: str) -> str:
|
|
3471
|
-
if name in t.required_keys:
|
|
3472
|
-
return f"{name!r}: {typ}"
|
|
3473
|
-
else:
|
|
3474
|
-
return f"{name!r}?: {typ}"
|
|
3475
|
-
|
|
3476
|
-
s = (
|
|
3477
|
-
"{"
|
|
3478
|
-
+ ", ".join(
|
|
3479
|
-
item_str(name, typ.accept(self)) for name, typ in t.items.items()
|
|
3480
|
-
)
|
|
3481
|
-
+ "}"
|
|
3482
|
-
)
|
|
3483
|
-
prefix = ""
|
|
3484
|
-
if t.fallback and t.fallback.type:
|
|
3485
|
-
if t.fallback.type.fullname not in TPDICT_FB_NAMES:
|
|
3486
|
-
prefix = repr(t.fallback.type.fullname) + ", "
|
|
3487
|
-
return f"TypedDict({prefix}{s})"
|
|
3488
|
-
|
|
3489
|
-
def visit_raw_expression_type(self, t: RawExpressionType) -> str:
|
|
3490
|
-
return repr(t.literal_value)
|
|
3491
|
-
|
|
3492
|
-
def visit_literal_type(self, t: LiteralType) -> str:
|
|
3493
|
-
return f"Literal[{t.value_repr()}]"
|
|
3494
|
-
|
|
3495
|
-
def visit_union_type(self, t: UnionType) -> str:
|
|
3496
|
-
s = self.list_str(t.items)
|
|
3497
|
-
return f"Union[{s}]"
|
|
3498
|
-
|
|
3499
|
-
def visit_partial_type(self, t: PartialType) -> str:
|
|
3500
|
-
if t.type is None:
|
|
3501
|
-
return "<partial None>"
|
|
3502
|
-
else:
|
|
3503
|
-
return "<partial {}[{}]>".format(
|
|
3504
|
-
t.type.name, ", ".join(["?"] * len(t.type.type_vars))
|
|
3505
|
-
)
|
|
3506
|
-
|
|
3507
|
-
def visit_ellipsis_type(self, t: EllipsisType) -> str:
|
|
3508
|
-
return "..."
|
|
3509
|
-
|
|
3510
|
-
def visit_type_type(self, t: TypeType) -> str:
|
|
3511
|
-
return f"Type[{t.item.accept(self)}]"
|
|
3512
|
-
|
|
3513
|
-
def visit_placeholder_type(self, t: PlaceholderType) -> str:
|
|
3514
|
-
return f"<placeholder {t.fullname}>"
|
|
3515
|
-
|
|
3516
|
-
def visit_type_alias_type(self, t: TypeAliasType) -> str:
|
|
3517
|
-
if t.alias is not None:
|
|
3518
|
-
unrolled, recursed = t._partial_expansion()
|
|
3519
|
-
self.any_as_dots = recursed
|
|
3520
|
-
type_str = unrolled.accept(self)
|
|
3521
|
-
self.any_as_dots = False
|
|
3522
|
-
return type_str
|
|
3523
|
-
return "<alias (unfixed)>"
|
|
3524
|
-
|
|
3525
|
-
def visit_unpack_type(self, t: UnpackType) -> str:
|
|
3526
|
-
return f"Unpack[{t.type.accept(self)}]"
|
|
3527
|
-
|
|
3528
|
-
def list_str(self, a: Iterable[Type]) -> str:
|
|
3529
|
-
"""Convert items of an array to strings (pretty-print types)
|
|
3530
|
-
and join the results with commas.
|
|
3531
|
-
"""
|
|
3532
|
-
res = []
|
|
3533
|
-
for t in a:
|
|
3534
|
-
res.append(t.accept(self))
|
|
3535
|
-
return ", ".join(res)
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
class TrivialSyntheticTypeTranslator(TypeTranslator, SyntheticTypeVisitor[Type]):
|
|
3539
|
-
"""A base class for type translators that need to be run during semantic analysis."""
|
|
3540
|
-
|
|
3541
|
-
def visit_placeholder_type(self, t: PlaceholderType) -> Type:
|
|
3542
|
-
return t
|
|
3543
|
-
|
|
3544
|
-
def visit_callable_argument(self, t: CallableArgument) -> Type:
|
|
3545
|
-
return t
|
|
3546
|
-
|
|
3547
|
-
def visit_ellipsis_type(self, t: EllipsisType) -> Type:
|
|
3548
|
-
return t
|
|
3549
|
-
|
|
3550
|
-
def visit_raw_expression_type(self, t: RawExpressionType) -> Type:
|
|
3551
|
-
return t
|
|
3552
|
-
|
|
3553
|
-
def visit_type_list(self, t: TypeList) -> Type:
|
|
3554
|
-
return t
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
class UnrollAliasVisitor(TrivialSyntheticTypeTranslator):
|
|
3558
|
-
def __init__(self, initial_aliases: set[TypeAliasType]) -> None:
|
|
3559
|
-
self.recursed = False
|
|
3560
|
-
self.initial_aliases = initial_aliases
|
|
3561
|
-
|
|
3562
|
-
def visit_type_alias_type(self, t: TypeAliasType) -> Type:
|
|
3563
|
-
if t in self.initial_aliases:
|
|
3564
|
-
self.recursed = True
|
|
3565
|
-
return AnyType(TypeOfAny.special_form)
|
|
3566
|
-
# Create a new visitor on encountering a new type alias, so that an alias like
|
|
3567
|
-
# A = Tuple[B, B]
|
|
3568
|
-
# B = int
|
|
3569
|
-
# will not be detected as recursive on the second encounter of B.
|
|
3570
|
-
subvisitor = UnrollAliasVisitor(self.initial_aliases | {t})
|
|
3571
|
-
result = get_proper_type(t).accept(subvisitor)
|
|
3572
|
-
if subvisitor.recursed:
|
|
3573
|
-
self.recursed = True
|
|
3574
|
-
return result
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
def is_named_instance(t: Type, fullnames: str | tuple[str, ...]) -> TypeGuard[Instance]:
|
|
3578
|
-
if not isinstance(fullnames, tuple):
|
|
3579
|
-
fullnames = (fullnames,)
|
|
3580
|
-
|
|
3581
|
-
t = get_proper_type(t)
|
|
3582
|
-
return isinstance(t, Instance) and t.type.fullname in fullnames
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
class LocationSetter(TypeTraverserVisitor):
|
|
3586
|
-
# TODO: Should we update locations of other Type subclasses?
|
|
3587
|
-
def __init__(self, line: int, column: int) -> None:
|
|
3588
|
-
self.line = line
|
|
3589
|
-
self.column = column
|
|
3590
|
-
|
|
3591
|
-
def visit_instance(self, typ: Instance) -> None:
|
|
3592
|
-
typ.line = self.line
|
|
3593
|
-
typ.column = self.column
|
|
3594
|
-
super().visit_instance(typ)
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
class HasTypeVars(BoolTypeQuery):
|
|
3598
|
-
def __init__(self) -> None:
|
|
3599
|
-
super().__init__(ANY_STRATEGY)
|
|
3600
|
-
self.skip_alias_target = True
|
|
3601
|
-
|
|
3602
|
-
def visit_type_var(self, t: TypeVarType) -> bool:
|
|
3603
|
-
return True
|
|
3604
|
-
|
|
3605
|
-
def visit_type_var_tuple(self, t: TypeVarTupleType) -> bool:
|
|
3606
|
-
return True
|
|
3607
|
-
|
|
3608
|
-
def visit_param_spec(self, t: ParamSpecType) -> bool:
|
|
3609
|
-
return True
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
def has_type_vars(typ: Type) -> bool:
|
|
3613
|
-
"""Check if a type contains any type variables (recursively)."""
|
|
3614
|
-
return typ.accept(HasTypeVars())
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
class HasRecursiveType(BoolTypeQuery):
|
|
3618
|
-
def __init__(self) -> None:
|
|
3619
|
-
super().__init__(ANY_STRATEGY)
|
|
3620
|
-
|
|
3621
|
-
def visit_type_alias_type(self, t: TypeAliasType) -> bool:
|
|
3622
|
-
return t.is_recursive or self.query_types(t.args)
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
# Use singleton since this is hot (note: call reset() before using)
|
|
3626
|
-
_has_recursive_type: Final = HasRecursiveType()
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
def has_recursive_types(typ: Type) -> bool:
|
|
3630
|
-
"""Check if a type contains any recursive aliases (recursively)."""
|
|
3631
|
-
_has_recursive_type.reset()
|
|
3632
|
-
return typ.accept(_has_recursive_type)
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
def split_with_prefix_and_suffix(
|
|
3636
|
-
types: tuple[Type, ...], prefix: int, suffix: int
|
|
3637
|
-
) -> tuple[tuple[Type, ...], tuple[Type, ...], tuple[Type, ...]]:
|
|
3638
|
-
if len(types) <= prefix + suffix:
|
|
3639
|
-
types = extend_args_for_prefix_and_suffix(types, prefix, suffix)
|
|
3640
|
-
if suffix:
|
|
3641
|
-
return types[:prefix], types[prefix:-suffix], types[-suffix:]
|
|
3642
|
-
else:
|
|
3643
|
-
return types[:prefix], types[prefix:], ()
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
def extend_args_for_prefix_and_suffix(
|
|
3647
|
-
types: tuple[Type, ...], prefix: int, suffix: int
|
|
3648
|
-
) -> tuple[Type, ...]:
|
|
3649
|
-
"""Extend list of types by eating out from variadic tuple to satisfy prefix and suffix."""
|
|
3650
|
-
idx = None
|
|
3651
|
-
item = None
|
|
3652
|
-
for i, t in enumerate(types):
|
|
3653
|
-
if isinstance(t, UnpackType):
|
|
3654
|
-
p_type = get_proper_type(t.type)
|
|
3655
|
-
if (
|
|
3656
|
-
isinstance(p_type, Instance)
|
|
3657
|
-
and p_type.type.fullname == "builtins.tuple"
|
|
3658
|
-
):
|
|
3659
|
-
item = p_type.args[0]
|
|
3660
|
-
idx = i
|
|
3661
|
-
break
|
|
3662
|
-
|
|
3663
|
-
if idx is None:
|
|
3664
|
-
return types
|
|
3665
|
-
assert item is not None
|
|
3666
|
-
if idx < prefix:
|
|
3667
|
-
start = (item,) * (prefix - idx)
|
|
3668
|
-
else:
|
|
3669
|
-
start = ()
|
|
3670
|
-
if len(types) - idx - 1 < suffix:
|
|
3671
|
-
end = (item,) * (suffix - len(types) + idx + 1)
|
|
3672
|
-
else:
|
|
3673
|
-
end = ()
|
|
3674
|
-
return types[:idx] + start + (types[idx],) + end + types[idx + 1 :]
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
def flatten_nested_unions(
|
|
3678
|
-
types: Sequence[Type], handle_type_alias_type: bool = True
|
|
3679
|
-
) -> list[Type]:
|
|
3680
|
-
"""Flatten nested unions in a type list."""
|
|
3681
|
-
if not isinstance(types, list):
|
|
3682
|
-
typelist = list(types)
|
|
3683
|
-
else:
|
|
3684
|
-
typelist = cast("list[Type]", types)
|
|
3685
|
-
|
|
3686
|
-
# Fast path: most of the time there is nothing to flatten
|
|
3687
|
-
if not any(isinstance(t, (TypeAliasType, UnionType)) for t in typelist): # type: ignore[misc]
|
|
3688
|
-
return typelist
|
|
3689
|
-
|
|
3690
|
-
flat_items: list[Type] = []
|
|
3691
|
-
for t in typelist:
|
|
3692
|
-
tp = get_proper_type(t) if handle_type_alias_type else t
|
|
3693
|
-
if isinstance(tp, ProperType) and isinstance(tp, UnionType):
|
|
3694
|
-
flat_items.extend(
|
|
3695
|
-
flatten_nested_unions(
|
|
3696
|
-
tp.items, handle_type_alias_type=handle_type_alias_type
|
|
3697
|
-
)
|
|
3698
|
-
)
|
|
3699
|
-
else:
|
|
3700
|
-
# Must preserve original aliases when possible.
|
|
3701
|
-
flat_items.append(t)
|
|
3702
|
-
return flat_items
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
def find_unpack_in_list(items: Sequence[Type]) -> int | None:
|
|
3706
|
-
unpack_index: int | None = None
|
|
3707
|
-
for i, item in enumerate(items):
|
|
3708
|
-
if isinstance(item, UnpackType):
|
|
3709
|
-
# We cannot fail here, so we must check this in an earlier
|
|
3710
|
-
# semanal phase.
|
|
3711
|
-
# Funky code here avoids mypyc narrowing the type of unpack_index.
|
|
3712
|
-
old_index = unpack_index
|
|
3713
|
-
assert old_index is None
|
|
3714
|
-
# Don't return so that we can also sanity check there is only one.
|
|
3715
|
-
unpack_index = i
|
|
3716
|
-
return unpack_index
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
def flatten_nested_tuples(types: Sequence[Type]) -> list[Type]:
|
|
3720
|
-
"""Recursively flatten TupleTypes nested with Unpack.
|
|
3721
|
-
|
|
3722
|
-
For example this will transform
|
|
3723
|
-
Tuple[A, Unpack[Tuple[B, Unpack[Tuple[C, D]]]]]
|
|
3724
|
-
into
|
|
3725
|
-
Tuple[A, B, C, D]
|
|
3726
|
-
"""
|
|
3727
|
-
res = []
|
|
3728
|
-
for typ in types:
|
|
3729
|
-
if not isinstance(typ, UnpackType):
|
|
3730
|
-
res.append(typ)
|
|
3731
|
-
continue
|
|
3732
|
-
p_type = get_proper_type(typ.type)
|
|
3733
|
-
if not isinstance(p_type, TupleType):
|
|
3734
|
-
res.append(typ)
|
|
3735
|
-
continue
|
|
3736
|
-
res.extend(flatten_nested_tuples(p_type.items))
|
|
3737
|
-
return res
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
def is_literal_type(
|
|
3741
|
-
typ: ProperType, fallback_fullname: str, value: LiteralValue
|
|
3742
|
-
) -> bool:
|
|
3743
|
-
"""Check if this type is a LiteralType with the given fallback type and value."""
|
|
3744
|
-
if isinstance(typ, Instance) and typ.last_known_value:
|
|
3745
|
-
typ = typ.last_known_value
|
|
3746
|
-
return (
|
|
3747
|
-
isinstance(typ, LiteralType)
|
|
3748
|
-
and typ.fallback.type.fullname == fallback_fullname
|
|
3749
|
-
and typ.value == value
|
|
3750
|
-
)
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
names: Final = globals().copy()
|
|
3754
|
-
names.pop("NOT_READY", None)
|
|
3755
|
-
deserialize_map: Final = {
|
|
3756
|
-
key: obj.deserialize
|
|
3757
|
-
for key, obj in names.items()
|
|
3758
|
-
if isinstance(obj, type) and issubclass(obj, Type) and obj is not Type
|
|
3759
|
-
}
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
def callable_with_ellipsis(
|
|
3763
|
-
any_type: AnyType, ret_type: Type, fallback: Instance
|
|
3764
|
-
) -> CallableType:
|
|
3765
|
-
"""Construct type Callable[..., ret_type]."""
|
|
3766
|
-
return CallableType(
|
|
3767
|
-
[any_type, any_type],
|
|
3768
|
-
[ARG_STAR, ARG_STAR2],
|
|
3769
|
-
[None, None],
|
|
3770
|
-
ret_type=ret_type,
|
|
3771
|
-
fallback=fallback,
|
|
3772
|
-
is_ellipsis_args=True,
|
|
3773
|
-
)
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
def remove_dups(types: list[T]) -> list[T]:
|
|
3777
|
-
if len(types) <= 1:
|
|
3778
|
-
return types
|
|
3779
|
-
# Get unique elements in order of appearance
|
|
3780
|
-
all_types: set[T] = set()
|
|
3781
|
-
new_types: list[T] = []
|
|
3782
|
-
for t in types:
|
|
3783
|
-
if t not in all_types:
|
|
3784
|
-
new_types.append(t)
|
|
3785
|
-
all_types.add(t)
|
|
3786
|
-
return new_types
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
def type_vars_as_args(type_vars: Sequence[TypeVarLikeType]) -> tuple[Type, ...]:
|
|
3790
|
-
"""Represent type variables as they would appear in a type argument list."""
|
|
3791
|
-
args: list[Type] = []
|
|
3792
|
-
for tv in type_vars:
|
|
3793
|
-
if isinstance(tv, TypeVarTupleType):
|
|
3794
|
-
args.append(UnpackType(tv))
|
|
3795
|
-
else:
|
|
3796
|
-
args.append(tv)
|
|
3797
|
-
return tuple(args)
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
# This cyclic import is unfortunate, but to avoid it we would need to move away all uses
|
|
3801
|
-
# of get_proper_type() from types.py. Majority of them have been removed, but few remaining
|
|
3802
|
-
# are quite tricky to get rid of, but ultimately we want to do it at some point.
|
|
3803
|
-
from mypy.expandtype import ExpandTypeVisitor
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
class InstantiateAliasVisitor(ExpandTypeVisitor):
|
|
3807
|
-
def visit_union_type(self, t: UnionType) -> Type:
|
|
3808
|
-
# Unlike regular expand_type(), we don't do any simplification for unions,
|
|
3809
|
-
# not even removing strict duplicates. There are three reasons for this:
|
|
3810
|
-
# * get_proper_type() is a very hot function, even slightest slow down will
|
|
3811
|
-
# cause a perf regression
|
|
3812
|
-
# * We want to preserve this historical behaviour, to avoid possible
|
|
3813
|
-
# regressions
|
|
3814
|
-
# * Simplifying unions may (indirectly) call get_proper_type(), causing
|
|
3815
|
-
# infinite recursion.
|
|
3816
|
-
return TypeTranslator.visit_union_type(self, t)
|