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
|
@@ -0,0 +1,4913 @@
|
|
|
1
|
+
from typing import Final
|
|
2
|
+
|
|
3
|
+
WINVER: Final = 1280
|
|
4
|
+
WM_USER: Final = 1024
|
|
5
|
+
PY_0U: Final = 0
|
|
6
|
+
OFN_READONLY: Final = 1
|
|
7
|
+
OFN_OVERWRITEPROMPT: Final = 2
|
|
8
|
+
OFN_HIDEREADONLY: Final = 4
|
|
9
|
+
OFN_NOCHANGEDIR: Final = 8
|
|
10
|
+
OFN_SHOWHELP: Final = 16
|
|
11
|
+
OFN_ENABLEHOOK: Final = 32
|
|
12
|
+
OFN_ENABLETEMPLATE: Final = 64
|
|
13
|
+
OFN_ENABLETEMPLATEHANDLE: Final = 128
|
|
14
|
+
OFN_NOVALIDATE: Final = 256
|
|
15
|
+
OFN_ALLOWMULTISELECT: Final = 512
|
|
16
|
+
OFN_EXTENSIONDIFFERENT: Final = 1024
|
|
17
|
+
OFN_PATHMUSTEXIST: Final = 2048
|
|
18
|
+
OFN_FILEMUSTEXIST: Final = 4096
|
|
19
|
+
OFN_CREATEPROMPT: Final = 8192
|
|
20
|
+
OFN_SHAREAWARE: Final = 16384
|
|
21
|
+
OFN_NOREADONLYRETURN: Final = 32768
|
|
22
|
+
OFN_NOTESTFILECREATE: Final = 65536
|
|
23
|
+
OFN_NONETWORKBUTTON: Final = 131072
|
|
24
|
+
OFN_NOLONGNAMES: Final = 262144
|
|
25
|
+
OFN_EXPLORER: Final = 524288
|
|
26
|
+
OFN_NODEREFERENCELINKS: Final = 1048576
|
|
27
|
+
OFN_LONGNAMES: Final = 2097152
|
|
28
|
+
OFN_ENABLEINCLUDENOTIFY: Final = 4194304
|
|
29
|
+
OFN_ENABLESIZING: Final = 8388608
|
|
30
|
+
OFN_DONTADDTORECENT: Final = 33554432
|
|
31
|
+
OFN_FORCESHOWHIDDEN: Final = 268435456
|
|
32
|
+
OFN_EX_NOPLACESBAR: Final = 1
|
|
33
|
+
OFN_SHAREFALLTHROUGH: Final = 2
|
|
34
|
+
OFN_SHARENOWARN: Final = 1
|
|
35
|
+
OFN_SHAREWARN: Final = 0
|
|
36
|
+
CDN_FIRST: Final[int]
|
|
37
|
+
CDN_LAST: Final[int]
|
|
38
|
+
CDN_INITDONE: Final[int]
|
|
39
|
+
CDN_SELCHANGE: Final[int]
|
|
40
|
+
CDN_FOLDERCHANGE: Final[int]
|
|
41
|
+
CDN_SHAREVIOLATION: Final[int]
|
|
42
|
+
CDN_HELP: Final[int]
|
|
43
|
+
CDN_FILEOK: Final[int]
|
|
44
|
+
CDN_TYPECHANGE: Final[int]
|
|
45
|
+
CDN_INCLUDEITEM: Final[int]
|
|
46
|
+
CDM_FIRST: Final[int]
|
|
47
|
+
CDM_LAST: Final[int]
|
|
48
|
+
CDM_GETSPEC: Final[int]
|
|
49
|
+
CDM_GETFILEPATH: Final[int]
|
|
50
|
+
CDM_GETFOLDERPATH: Final[int]
|
|
51
|
+
CDM_GETFOLDERIDLIST: Final[int]
|
|
52
|
+
CDM_SETCONTROLTEXT: Final[int]
|
|
53
|
+
CDM_HIDECONTROL: Final[int]
|
|
54
|
+
CDM_SETDEFEXT: Final[int]
|
|
55
|
+
CC_RGBINIT: Final = 1
|
|
56
|
+
CC_FULLOPEN: Final = 2
|
|
57
|
+
CC_PREVENTFULLOPEN: Final = 4
|
|
58
|
+
CC_SHOWHELP: Final = 8
|
|
59
|
+
CC_ENABLEHOOK: Final = 16
|
|
60
|
+
CC_ENABLETEMPLATE: Final = 32
|
|
61
|
+
CC_ENABLETEMPLATEHANDLE: Final = 64
|
|
62
|
+
CC_SOLIDCOLOR: Final = 128
|
|
63
|
+
CC_ANYCOLOR: Final = 256
|
|
64
|
+
FR_DOWN: Final = 1
|
|
65
|
+
FR_WHOLEWORD: Final = 2
|
|
66
|
+
FR_MATCHCASE: Final = 4
|
|
67
|
+
FR_FINDNEXT: Final = 8
|
|
68
|
+
FR_REPLACE: Final = 16
|
|
69
|
+
FR_REPLACEALL: Final = 32
|
|
70
|
+
FR_DIALOGTERM: Final = 64
|
|
71
|
+
FR_SHOWHELP: Final = 128
|
|
72
|
+
FR_ENABLEHOOK: Final = 256
|
|
73
|
+
FR_ENABLETEMPLATE: Final = 512
|
|
74
|
+
FR_NOUPDOWN: Final = 1024
|
|
75
|
+
FR_NOMATCHCASE: Final = 2048
|
|
76
|
+
FR_NOWHOLEWORD: Final = 4096
|
|
77
|
+
FR_ENABLETEMPLATEHANDLE: Final = 8192
|
|
78
|
+
FR_HIDEUPDOWN: Final = 16384
|
|
79
|
+
FR_HIDEMATCHCASE: Final = 32768
|
|
80
|
+
FR_HIDEWHOLEWORD: Final = 65536
|
|
81
|
+
CF_SCREENFONTS: Final = 1
|
|
82
|
+
CF_PRINTERFONTS: Final = 2
|
|
83
|
+
CF_BOTH: Final[int]
|
|
84
|
+
CF_SHOWHELP: Final = 4
|
|
85
|
+
CF_ENABLEHOOK: Final = 8
|
|
86
|
+
CF_ENABLETEMPLATE: Final = 16
|
|
87
|
+
CF_ENABLETEMPLATEHANDLE: Final = 32
|
|
88
|
+
CF_INITTOLOGFONTSTRUCT: Final = 64
|
|
89
|
+
CF_USESTYLE: Final = 128
|
|
90
|
+
CF_EFFECTS: Final = 256
|
|
91
|
+
CF_APPLY: Final = 512
|
|
92
|
+
CF_ANSIONLY: Final = 1024
|
|
93
|
+
CF_SCRIPTSONLY: Final = CF_ANSIONLY
|
|
94
|
+
CF_NOVECTORFONTS: Final = 2048
|
|
95
|
+
CF_NOOEMFONTS: Final = CF_NOVECTORFONTS
|
|
96
|
+
CF_NOSIMULATIONS: Final = 4096
|
|
97
|
+
CF_LIMITSIZE: Final = 8192
|
|
98
|
+
CF_FIXEDPITCHONLY: Final = 16384
|
|
99
|
+
CF_WYSIWYG: Final = 32768
|
|
100
|
+
CF_FORCEFONTEXIST: Final = 65536
|
|
101
|
+
CF_SCALABLEONLY: Final = 131072
|
|
102
|
+
CF_TTONLY: Final = 262144
|
|
103
|
+
CF_NOFACESEL: Final = 524288
|
|
104
|
+
CF_NOSTYLESEL: Final = 1048576
|
|
105
|
+
CF_NOSIZESEL: Final = 2097152
|
|
106
|
+
CF_SELECTSCRIPT: Final = 4194304
|
|
107
|
+
CF_NOSCRIPTSEL: Final = 8388608
|
|
108
|
+
CF_NOVERTFONTS: Final = 16777216
|
|
109
|
+
SIMULATED_FONTTYPE: Final = 32768
|
|
110
|
+
PRINTER_FONTTYPE: Final = 16384
|
|
111
|
+
SCREEN_FONTTYPE: Final = 8192
|
|
112
|
+
BOLD_FONTTYPE: Final = 256
|
|
113
|
+
ITALIC_FONTTYPE: Final = 512
|
|
114
|
+
REGULAR_FONTTYPE: Final = 1024
|
|
115
|
+
OPENTYPE_FONTTYPE: Final = 65536
|
|
116
|
+
TYPE1_FONTTYPE: Final = 131072
|
|
117
|
+
DSIG_FONTTYPE: Final = 262144
|
|
118
|
+
WM_CHOOSEFONT_GETLOGFONT: Final[int]
|
|
119
|
+
WM_CHOOSEFONT_SETLOGFONT: Final[int]
|
|
120
|
+
WM_CHOOSEFONT_SETFLAGS: Final[int]
|
|
121
|
+
LBSELCHSTRINGA: Final = "commdlg_LBSelChangedNotify"
|
|
122
|
+
SHAREVISTRINGA: Final = "commdlg_ShareViolation"
|
|
123
|
+
FILEOKSTRINGA: Final = "commdlg_FileNameOK"
|
|
124
|
+
COLOROKSTRINGA: Final = "commdlg_ColorOK"
|
|
125
|
+
SETRGBSTRINGA: Final = "commdlg_SetRGBColor"
|
|
126
|
+
HELPMSGSTRINGA: Final = "commdlg_help"
|
|
127
|
+
FINDMSGSTRINGA: Final = "commdlg_FindReplace"
|
|
128
|
+
LBSELCHSTRING: Final = LBSELCHSTRINGA
|
|
129
|
+
SHAREVISTRING: Final = SHAREVISTRINGA
|
|
130
|
+
FILEOKSTRING: Final = FILEOKSTRINGA
|
|
131
|
+
COLOROKSTRING: Final = COLOROKSTRINGA
|
|
132
|
+
SETRGBSTRING: Final = SETRGBSTRINGA
|
|
133
|
+
HELPMSGSTRING: Final = HELPMSGSTRINGA
|
|
134
|
+
FINDMSGSTRING: Final = FINDMSGSTRINGA
|
|
135
|
+
CD_LBSELNOITEMS: Final = -1
|
|
136
|
+
CD_LBSELCHANGE: Final = 0
|
|
137
|
+
CD_LBSELSUB: Final = 1
|
|
138
|
+
CD_LBSELADD: Final = 2
|
|
139
|
+
PD_ALLPAGES: Final = 0
|
|
140
|
+
PD_SELECTION: Final = 1
|
|
141
|
+
PD_PAGENUMS: Final = 2
|
|
142
|
+
PD_NOSELECTION: Final = 4
|
|
143
|
+
PD_NOPAGENUMS: Final = 8
|
|
144
|
+
PD_COLLATE: Final = 16
|
|
145
|
+
PD_PRINTTOFILE: Final = 32
|
|
146
|
+
PD_PRINTSETUP: Final = 64
|
|
147
|
+
PD_NOWARNING: Final = 128
|
|
148
|
+
PD_RETURNDC: Final = 256
|
|
149
|
+
PD_RETURNIC: Final = 512
|
|
150
|
+
PD_RETURNDEFAULT: Final = 1024
|
|
151
|
+
PD_SHOWHELP: Final = 2048
|
|
152
|
+
PD_ENABLEPRINTHOOK: Final = 4096
|
|
153
|
+
PD_ENABLESETUPHOOK: Final = 8192
|
|
154
|
+
PD_ENABLEPRINTTEMPLATE: Final = 16384
|
|
155
|
+
PD_ENABLESETUPTEMPLATE: Final = 32768
|
|
156
|
+
PD_ENABLEPRINTTEMPLATEHANDLE: Final = 65536
|
|
157
|
+
PD_ENABLESETUPTEMPLATEHANDLE: Final = 131072
|
|
158
|
+
PD_USEDEVMODECOPIES: Final = 262144
|
|
159
|
+
PD_DISABLEPRINTTOFILE: Final = 524288
|
|
160
|
+
PD_HIDEPRINTTOFILE: Final = 1048576
|
|
161
|
+
PD_NONETWORKBUTTON: Final = 2097152
|
|
162
|
+
DN_DEFAULTPRN: Final = 1
|
|
163
|
+
WM_PSD_PAGESETUPDLG: Final = WM_USER
|
|
164
|
+
WM_PSD_FULLPAGERECT: Final[int]
|
|
165
|
+
WM_PSD_MINMARGINRECT: Final[int]
|
|
166
|
+
WM_PSD_MARGINRECT: Final[int]
|
|
167
|
+
WM_PSD_GREEKTEXTRECT: Final[int]
|
|
168
|
+
WM_PSD_ENVSTAMPRECT: Final[int]
|
|
169
|
+
WM_PSD_YAFULLPAGERECT: Final[int]
|
|
170
|
+
PSD_DEFAULTMINMARGINS: Final = 0
|
|
171
|
+
PSD_INWININIINTLMEASURE: Final = 0
|
|
172
|
+
PSD_MINMARGINS: Final = 1
|
|
173
|
+
PSD_MARGINS: Final = 2
|
|
174
|
+
PSD_INTHOUSANDTHSOFINCHES: Final = 4
|
|
175
|
+
PSD_INHUNDREDTHSOFMILLIMETERS: Final = 8
|
|
176
|
+
PSD_DISABLEMARGINS: Final = 16
|
|
177
|
+
PSD_DISABLEPRINTER: Final = 32
|
|
178
|
+
PSD_NOWARNING: Final = 128
|
|
179
|
+
PSD_DISABLEORIENTATION: Final = 256
|
|
180
|
+
PSD_RETURNDEFAULT: Final = 1024
|
|
181
|
+
PSD_DISABLEPAPER: Final = 512
|
|
182
|
+
PSD_SHOWHELP: Final = 2048
|
|
183
|
+
PSD_ENABLEPAGESETUPHOOK: Final = 8192
|
|
184
|
+
PSD_ENABLEPAGESETUPTEMPLATE: Final = 32768
|
|
185
|
+
PSD_ENABLEPAGESETUPTEMPLATEHANDLE: Final = 131072
|
|
186
|
+
PSD_ENABLEPAGEPAINTHOOK: Final = 262144
|
|
187
|
+
PSD_DISABLEPAGEPAINTING: Final = 524288
|
|
188
|
+
PSD_NONETWORKBUTTON: Final = 2097152
|
|
189
|
+
|
|
190
|
+
HKEY_CLASSES_ROOT: Final = -2147483648
|
|
191
|
+
HKEY_CURRENT_USER: Final = -2147483647
|
|
192
|
+
HKEY_LOCAL_MACHINE: Final = -2147483646
|
|
193
|
+
HKEY_USERS: Final = -2147483645
|
|
194
|
+
HKEY_PERFORMANCE_DATA: Final = -2147483644
|
|
195
|
+
HKEY_CURRENT_CONFIG: Final = -2147483643
|
|
196
|
+
HKEY_DYN_DATA: Final = -2147483642
|
|
197
|
+
HKEY_PERFORMANCE_TEXT: Final = -2147483568
|
|
198
|
+
HKEY_PERFORMANCE_NLSTEXT: Final = -2147483552
|
|
199
|
+
|
|
200
|
+
HWND_BROADCAST: Final = 65535
|
|
201
|
+
HWND_DESKTOP: Final = 0
|
|
202
|
+
HWND_TOP: Final = 0
|
|
203
|
+
HWND_BOTTOM: Final = 1
|
|
204
|
+
HWND_TOPMOST: Final = -1
|
|
205
|
+
HWND_NOTOPMOST: Final = -2
|
|
206
|
+
HWND_MESSAGE: Final = -3
|
|
207
|
+
|
|
208
|
+
SM_CXSCREEN: Final = 0
|
|
209
|
+
SM_CYSCREEN: Final = 1
|
|
210
|
+
SM_CXVSCROLL: Final = 2
|
|
211
|
+
SM_CYHSCROLL: Final = 3
|
|
212
|
+
SM_CYCAPTION: Final = 4
|
|
213
|
+
SM_CXBORDER: Final = 5
|
|
214
|
+
SM_CYBORDER: Final = 6
|
|
215
|
+
SM_CXDLGFRAME: Final = 7
|
|
216
|
+
SM_CYDLGFRAME: Final = 8
|
|
217
|
+
SM_CYVTHUMB: Final = 9
|
|
218
|
+
SM_CXHTHUMB: Final = 10
|
|
219
|
+
SM_CXICON: Final = 11
|
|
220
|
+
SM_CYICON: Final = 12
|
|
221
|
+
SM_CXCURSOR: Final = 13
|
|
222
|
+
SM_CYCURSOR: Final = 14
|
|
223
|
+
SM_CYMENU: Final = 15
|
|
224
|
+
SM_CXFULLSCREEN: Final = 16
|
|
225
|
+
SM_CYFULLSCREEN: Final = 17
|
|
226
|
+
SM_CYKANJIWINDOW: Final = 18
|
|
227
|
+
SM_MOUSEPRESENT: Final = 19
|
|
228
|
+
SM_CYVSCROLL: Final = 20
|
|
229
|
+
SM_CXHSCROLL: Final = 21
|
|
230
|
+
SM_DEBUG: Final = 22
|
|
231
|
+
SM_SWAPBUTTON: Final = 23
|
|
232
|
+
SM_RESERVED1: Final = 24
|
|
233
|
+
SM_RESERVED2: Final = 25
|
|
234
|
+
SM_RESERVED3: Final = 26
|
|
235
|
+
SM_RESERVED4: Final = 27
|
|
236
|
+
SM_CXMIN: Final = 28
|
|
237
|
+
SM_CYMIN: Final = 29
|
|
238
|
+
SM_CXSIZE: Final = 30
|
|
239
|
+
SM_CYSIZE: Final = 31
|
|
240
|
+
SM_CXFRAME: Final = 32
|
|
241
|
+
SM_CYFRAME: Final = 33
|
|
242
|
+
SM_CXMINTRACK: Final = 34
|
|
243
|
+
SM_CYMINTRACK: Final = 35
|
|
244
|
+
SM_CXDOUBLECLK: Final = 36
|
|
245
|
+
SM_CYDOUBLECLK: Final = 37
|
|
246
|
+
SM_CXICONSPACING: Final = 38
|
|
247
|
+
SM_CYICONSPACING: Final = 39
|
|
248
|
+
SM_MENUDROPALIGNMENT: Final = 40
|
|
249
|
+
SM_PENWINDOWS: Final = 41
|
|
250
|
+
SM_DBCSENABLED: Final = 42
|
|
251
|
+
SM_CMOUSEBUTTONS: Final = 43
|
|
252
|
+
SM_CXFIXEDFRAME: Final = SM_CXDLGFRAME
|
|
253
|
+
SM_CYFIXEDFRAME: Final = SM_CYDLGFRAME
|
|
254
|
+
SM_CXSIZEFRAME: Final = SM_CXFRAME
|
|
255
|
+
SM_CYSIZEFRAME: Final = SM_CYFRAME
|
|
256
|
+
SM_SECURE: Final = 44
|
|
257
|
+
SM_CXEDGE: Final = 45
|
|
258
|
+
SM_CYEDGE: Final = 46
|
|
259
|
+
SM_CXMINSPACING: Final = 47
|
|
260
|
+
SM_CYMINSPACING: Final = 48
|
|
261
|
+
SM_CXSMICON: Final = 49
|
|
262
|
+
SM_CYSMICON: Final = 50
|
|
263
|
+
SM_CYSMCAPTION: Final = 51
|
|
264
|
+
SM_CXSMSIZE: Final = 52
|
|
265
|
+
SM_CYSMSIZE: Final = 53
|
|
266
|
+
SM_CXMENUSIZE: Final = 54
|
|
267
|
+
SM_CYMENUSIZE: Final = 55
|
|
268
|
+
SM_ARRANGE: Final = 56
|
|
269
|
+
SM_CXMINIMIZED: Final = 57
|
|
270
|
+
SM_CYMINIMIZED: Final = 58
|
|
271
|
+
SM_CXMAXTRACK: Final = 59
|
|
272
|
+
SM_CYMAXTRACK: Final = 60
|
|
273
|
+
SM_CXMAXIMIZED: Final = 61
|
|
274
|
+
SM_CYMAXIMIZED: Final = 62
|
|
275
|
+
SM_NETWORK: Final = 63
|
|
276
|
+
SM_CLEANBOOT: Final = 67
|
|
277
|
+
SM_CXDRAG: Final = 68
|
|
278
|
+
SM_CYDRAG: Final = 69
|
|
279
|
+
SM_SHOWSOUNDS: Final = 70
|
|
280
|
+
SM_CXMENUCHECK: Final = 71
|
|
281
|
+
SM_CYMENUCHECK: Final = 72
|
|
282
|
+
SM_SLOWMACHINE: Final = 73
|
|
283
|
+
SM_MIDEASTENABLED: Final = 74
|
|
284
|
+
SM_MOUSEWHEELPRESENT: Final = 75
|
|
285
|
+
SM_XVIRTUALSCREEN: Final = 76
|
|
286
|
+
SM_YVIRTUALSCREEN: Final = 77
|
|
287
|
+
SM_CXVIRTUALSCREEN: Final = 78
|
|
288
|
+
SM_CYVIRTUALSCREEN: Final = 79
|
|
289
|
+
SM_CMONITORS: Final = 80
|
|
290
|
+
SM_SAMEDISPLAYFORMAT: Final = 81
|
|
291
|
+
SM_CMETRICS: Final = 83
|
|
292
|
+
MNC_IGNORE: Final = 0
|
|
293
|
+
MNC_CLOSE: Final = 1
|
|
294
|
+
MNC_EXECUTE: Final = 2
|
|
295
|
+
MNC_SELECT: Final = 3
|
|
296
|
+
MNS_NOCHECK: Final = -2147483648
|
|
297
|
+
MNS_MODELESS: Final = 1073741824
|
|
298
|
+
MNS_DRAGDROP: Final = 536870912
|
|
299
|
+
MNS_AUTODISMISS: Final = 268435456
|
|
300
|
+
MNS_NOTIFYBYPOS: Final = 134217728
|
|
301
|
+
MNS_CHECKORBMP: Final = 67108864
|
|
302
|
+
MIM_MAXHEIGHT: Final = 1
|
|
303
|
+
MIM_BACKGROUND: Final = 2
|
|
304
|
+
MIM_HELPID: Final = 4
|
|
305
|
+
MIM_MENUDATA: Final = 8
|
|
306
|
+
MIM_STYLE: Final = 16
|
|
307
|
+
MIM_APPLYTOSUBMENUS: Final = -2147483648
|
|
308
|
+
MND_CONTINUE: Final = 0
|
|
309
|
+
MND_ENDMENU: Final = 1
|
|
310
|
+
MNGOF_GAP: Final = 3
|
|
311
|
+
MNGO_NOINTERFACE: Final = 0
|
|
312
|
+
MNGO_NOERROR: Final = 1
|
|
313
|
+
MIIM_STATE: Final = 1
|
|
314
|
+
MIIM_ID: Final = 2
|
|
315
|
+
MIIM_SUBMENU: Final = 4
|
|
316
|
+
MIIM_CHECKMARKS: Final = 8
|
|
317
|
+
MIIM_TYPE: Final = 16
|
|
318
|
+
MIIM_DATA: Final = 32
|
|
319
|
+
MIIM_STRING: Final = 64
|
|
320
|
+
MIIM_BITMAP: Final = 128
|
|
321
|
+
MIIM_FTYPE: Final = 256
|
|
322
|
+
HBMMENU_CALLBACK: Final = -1
|
|
323
|
+
HBMMENU_SYSTEM: Final = 1
|
|
324
|
+
HBMMENU_MBAR_RESTORE: Final = 2
|
|
325
|
+
HBMMENU_MBAR_MINIMIZE: Final = 3
|
|
326
|
+
HBMMENU_MBAR_CLOSE: Final = 5
|
|
327
|
+
HBMMENU_MBAR_CLOSE_D: Final = 6
|
|
328
|
+
HBMMENU_MBAR_MINIMIZE_D: Final = 7
|
|
329
|
+
HBMMENU_POPUP_CLOSE: Final = 8
|
|
330
|
+
HBMMENU_POPUP_RESTORE: Final = 9
|
|
331
|
+
HBMMENU_POPUP_MAXIMIZE: Final = 10
|
|
332
|
+
HBMMENU_POPUP_MINIMIZE: Final = 11
|
|
333
|
+
GMDI_USEDISABLED: Final = 1
|
|
334
|
+
GMDI_GOINTOPOPUPS: Final = 2
|
|
335
|
+
TPM_LEFTBUTTON: Final = 0
|
|
336
|
+
TPM_RIGHTBUTTON: Final = 2
|
|
337
|
+
TPM_LEFTALIGN: Final = 0
|
|
338
|
+
TPM_CENTERALIGN: Final = 4
|
|
339
|
+
TPM_RIGHTALIGN: Final = 8
|
|
340
|
+
TPM_TOPALIGN: Final = 0
|
|
341
|
+
TPM_VCENTERALIGN: Final = 16
|
|
342
|
+
TPM_BOTTOMALIGN: Final = 32
|
|
343
|
+
TPM_HORIZONTAL: Final = 0
|
|
344
|
+
TPM_VERTICAL: Final = 64
|
|
345
|
+
TPM_NONOTIFY: Final = 128
|
|
346
|
+
TPM_RETURNCMD: Final = 256
|
|
347
|
+
TPM_RECURSE: Final = 1
|
|
348
|
+
DOF_EXECUTABLE: Final = 32769
|
|
349
|
+
DOF_DOCUMENT: Final = 32770
|
|
350
|
+
DOF_DIRECTORY: Final = 32771
|
|
351
|
+
DOF_MULTIPLE: Final = 32772
|
|
352
|
+
DOF_PROGMAN: Final = 1
|
|
353
|
+
DOF_SHELLDATA: Final = 2
|
|
354
|
+
DO_DROPFILE: Final = 1162627398
|
|
355
|
+
DO_PRINTFILE: Final = 1414419024
|
|
356
|
+
DT_TOP: Final = 0
|
|
357
|
+
DT_LEFT: Final = 0
|
|
358
|
+
DT_CENTER: Final = 1
|
|
359
|
+
DT_RIGHT: Final = 2
|
|
360
|
+
DT_VCENTER: Final = 4
|
|
361
|
+
DT_BOTTOM: Final = 8
|
|
362
|
+
DT_WORDBREAK: Final = 16
|
|
363
|
+
DT_SINGLELINE: Final = 32
|
|
364
|
+
DT_EXPANDTABS: Final = 64
|
|
365
|
+
DT_TABSTOP: Final = 128
|
|
366
|
+
DT_NOCLIP: Final = 256
|
|
367
|
+
DT_EXTERNALLEADING: Final = 512
|
|
368
|
+
DT_CALCRECT: Final = 1024
|
|
369
|
+
DT_NOPREFIX: Final = 2048
|
|
370
|
+
DT_INTERNAL: Final = 4096
|
|
371
|
+
DT_EDITCONTROL: Final = 8192
|
|
372
|
+
DT_PATH_ELLIPSIS: Final = 16384
|
|
373
|
+
DT_END_ELLIPSIS: Final = 32768
|
|
374
|
+
DT_MODIFYSTRING: Final = 65536
|
|
375
|
+
DT_RTLREADING: Final = 131072
|
|
376
|
+
DT_WORD_ELLIPSIS: Final = 262144
|
|
377
|
+
DST_COMPLEX: Final = 0
|
|
378
|
+
DST_TEXT: Final = 1
|
|
379
|
+
DST_PREFIXTEXT: Final = 2
|
|
380
|
+
DST_ICON: Final = 3
|
|
381
|
+
DST_BITMAP: Final = 4
|
|
382
|
+
DSS_NORMAL: Final = 0
|
|
383
|
+
DSS_UNION: Final = 16
|
|
384
|
+
DSS_DISABLED: Final = 32
|
|
385
|
+
DSS_MONO: Final = 128
|
|
386
|
+
DSS_RIGHT: Final = 32768
|
|
387
|
+
DCX_WINDOW: Final = 1
|
|
388
|
+
DCX_CACHE: Final = 2
|
|
389
|
+
DCX_NORESETATTRS: Final = 4
|
|
390
|
+
DCX_CLIPCHILDREN: Final = 8
|
|
391
|
+
DCX_CLIPSIBLINGS: Final = 16
|
|
392
|
+
DCX_PARENTCLIP: Final = 32
|
|
393
|
+
DCX_EXCLUDERGN: Final = 64
|
|
394
|
+
DCX_INTERSECTRGN: Final = 128
|
|
395
|
+
DCX_EXCLUDEUPDATE: Final = 256
|
|
396
|
+
DCX_INTERSECTUPDATE: Final = 512
|
|
397
|
+
DCX_LOCKWINDOWUPDATE: Final = 1024
|
|
398
|
+
DCX_VALIDATE: Final = 2097152
|
|
399
|
+
CUDR_NORMAL: Final = 0
|
|
400
|
+
CUDR_NOSNAPTOGRID: Final = 1
|
|
401
|
+
CUDR_NORESOLVEPOSITIONS: Final = 2
|
|
402
|
+
CUDR_NOCLOSEGAPS: Final = 4
|
|
403
|
+
CUDR_NEGATIVECOORDS: Final = 8
|
|
404
|
+
CUDR_NOPRIMARY: Final = 16
|
|
405
|
+
RDW_INVALIDATE: Final = 1
|
|
406
|
+
RDW_INTERNALPAINT: Final = 2
|
|
407
|
+
RDW_ERASE: Final = 4
|
|
408
|
+
RDW_VALIDATE: Final = 8
|
|
409
|
+
RDW_NOINTERNALPAINT: Final = 16
|
|
410
|
+
RDW_NOERASE: Final = 32
|
|
411
|
+
RDW_NOCHILDREN: Final = 64
|
|
412
|
+
RDW_ALLCHILDREN: Final = 128
|
|
413
|
+
RDW_UPDATENOW: Final = 256
|
|
414
|
+
RDW_ERASENOW: Final = 512
|
|
415
|
+
RDW_FRAME: Final = 1024
|
|
416
|
+
RDW_NOFRAME: Final = 2048
|
|
417
|
+
SW_SCROLLCHILDREN: Final = 1
|
|
418
|
+
SW_INVALIDATE: Final = 2
|
|
419
|
+
SW_ERASE: Final = 4
|
|
420
|
+
SW_SMOOTHSCROLL: Final = 16
|
|
421
|
+
ESB_ENABLE_BOTH: Final = 0
|
|
422
|
+
ESB_DISABLE_BOTH: Final = 3
|
|
423
|
+
ESB_DISABLE_LEFT: Final = 1
|
|
424
|
+
ESB_DISABLE_RIGHT: Final = 2
|
|
425
|
+
ESB_DISABLE_UP: Final = 1
|
|
426
|
+
ESB_DISABLE_DOWN: Final = 2
|
|
427
|
+
ESB_DISABLE_LTUP: Final = ESB_DISABLE_LEFT
|
|
428
|
+
ESB_DISABLE_RTDN: Final = ESB_DISABLE_RIGHT
|
|
429
|
+
HELPINFO_WINDOW: Final = 1
|
|
430
|
+
HELPINFO_MENUITEM: Final = 2
|
|
431
|
+
MB_OK: Final = 0
|
|
432
|
+
MB_OKCANCEL: Final = 1
|
|
433
|
+
MB_ABORTRETRYIGNORE: Final = 2
|
|
434
|
+
MB_YESNOCANCEL: Final = 3
|
|
435
|
+
MB_YESNO: Final = 4
|
|
436
|
+
MB_RETRYCANCEL: Final = 5
|
|
437
|
+
MB_ICONHAND: Final = 16
|
|
438
|
+
MB_ICONQUESTION: Final = 32
|
|
439
|
+
MB_ICONEXCLAMATION: Final = 48
|
|
440
|
+
MB_ICONASTERISK: Final = 64
|
|
441
|
+
MB_ICONWARNING: Final = MB_ICONEXCLAMATION
|
|
442
|
+
MB_ICONERROR: Final = MB_ICONHAND
|
|
443
|
+
MB_ICONINFORMATION: Final = MB_ICONASTERISK
|
|
444
|
+
MB_ICONSTOP: Final = MB_ICONHAND
|
|
445
|
+
MB_DEFBUTTON1: Final = 0
|
|
446
|
+
MB_DEFBUTTON2: Final = 256
|
|
447
|
+
MB_DEFBUTTON3: Final = 512
|
|
448
|
+
MB_DEFBUTTON4: Final = 768
|
|
449
|
+
MB_APPLMODAL: Final = 0
|
|
450
|
+
MB_SYSTEMMODAL: Final = 4096
|
|
451
|
+
MB_TASKMODAL: Final = 8192
|
|
452
|
+
MB_HELP: Final = 16384
|
|
453
|
+
MB_NOFOCUS: Final = 32768
|
|
454
|
+
MB_SETFOREGROUND: Final = 65536
|
|
455
|
+
MB_DEFAULT_DESKTOP_ONLY: Final = 131072
|
|
456
|
+
MB_TOPMOST: Final = 262144
|
|
457
|
+
MB_RIGHT: Final = 524288
|
|
458
|
+
MB_RTLREADING: Final = 1048576
|
|
459
|
+
MB_SERVICE_NOTIFICATION: Final = 2097152
|
|
460
|
+
MB_TYPEMASK: Final = 15
|
|
461
|
+
MB_USERICON: Final = 128
|
|
462
|
+
MB_ICONMASK: Final = 240
|
|
463
|
+
MB_DEFMASK: Final = 3840
|
|
464
|
+
MB_MODEMASK: Final = 12288
|
|
465
|
+
MB_MISCMASK: Final = 49152
|
|
466
|
+
|
|
467
|
+
CWP_ALL: Final = 0
|
|
468
|
+
CWP_SKIPINVISIBLE: Final = 1
|
|
469
|
+
CWP_SKIPDISABLED: Final = 2
|
|
470
|
+
CWP_SKIPTRANSPARENT: Final = 4
|
|
471
|
+
CTLCOLOR_MSGBOX: Final = 0
|
|
472
|
+
CTLCOLOR_EDIT: Final = 1
|
|
473
|
+
CTLCOLOR_LISTBOX: Final = 2
|
|
474
|
+
CTLCOLOR_BTN: Final = 3
|
|
475
|
+
CTLCOLOR_DLG: Final = 4
|
|
476
|
+
CTLCOLOR_SCROLLBAR: Final = 5
|
|
477
|
+
CTLCOLOR_STATIC: Final = 6
|
|
478
|
+
CTLCOLOR_MAX: Final = 7
|
|
479
|
+
COLOR_SCROLLBAR: Final = 0
|
|
480
|
+
COLOR_BACKGROUND: Final = 1
|
|
481
|
+
COLOR_ACTIVECAPTION: Final = 2
|
|
482
|
+
COLOR_INACTIVECAPTION: Final = 3
|
|
483
|
+
COLOR_MENU: Final = 4
|
|
484
|
+
COLOR_WINDOW: Final = 5
|
|
485
|
+
COLOR_WINDOWFRAME: Final = 6
|
|
486
|
+
COLOR_MENUTEXT: Final = 7
|
|
487
|
+
COLOR_WINDOWTEXT: Final = 8
|
|
488
|
+
COLOR_CAPTIONTEXT: Final = 9
|
|
489
|
+
COLOR_ACTIVEBORDER: Final = 10
|
|
490
|
+
COLOR_INACTIVEBORDER: Final = 11
|
|
491
|
+
COLOR_APPWORKSPACE: Final = 12
|
|
492
|
+
COLOR_HIGHLIGHT: Final = 13
|
|
493
|
+
COLOR_HIGHLIGHTTEXT: Final = 14
|
|
494
|
+
COLOR_BTNFACE: Final = 15
|
|
495
|
+
COLOR_BTNSHADOW: Final = 16
|
|
496
|
+
COLOR_GRAYTEXT: Final = 17
|
|
497
|
+
COLOR_BTNTEXT: Final = 18
|
|
498
|
+
COLOR_INACTIVECAPTIONTEXT: Final = 19
|
|
499
|
+
COLOR_BTNHIGHLIGHT: Final = 20
|
|
500
|
+
COLOR_3DDKSHADOW: Final = 21
|
|
501
|
+
COLOR_3DLIGHT: Final = 22
|
|
502
|
+
COLOR_INFOTEXT: Final = 23
|
|
503
|
+
COLOR_INFOBK: Final = 24
|
|
504
|
+
COLOR_HOTLIGHT: Final = 26
|
|
505
|
+
COLOR_GRADIENTACTIVECAPTION: Final = 27
|
|
506
|
+
COLOR_GRADIENTINACTIVECAPTION: Final = 28
|
|
507
|
+
COLOR_DESKTOP: Final = COLOR_BACKGROUND
|
|
508
|
+
COLOR_3DFACE: Final = COLOR_BTNFACE
|
|
509
|
+
COLOR_3DSHADOW: Final = COLOR_BTNSHADOW
|
|
510
|
+
COLOR_3DHIGHLIGHT: Final = COLOR_BTNHIGHLIGHT
|
|
511
|
+
COLOR_3DHILIGHT: Final = COLOR_BTNHIGHLIGHT
|
|
512
|
+
COLOR_BTNHILIGHT: Final = COLOR_BTNHIGHLIGHT
|
|
513
|
+
GW_HWNDFIRST: Final = 0
|
|
514
|
+
GW_HWNDLAST: Final = 1
|
|
515
|
+
GW_HWNDNEXT: Final = 2
|
|
516
|
+
GW_HWNDPREV: Final = 3
|
|
517
|
+
GW_OWNER: Final = 4
|
|
518
|
+
GW_CHILD: Final = 5
|
|
519
|
+
GW_ENABLEDPOPUP: Final = 6
|
|
520
|
+
GW_MAX: Final = 6
|
|
521
|
+
MF_INSERT: Final = 0
|
|
522
|
+
MF_CHANGE: Final = 128
|
|
523
|
+
MF_APPEND: Final = 256
|
|
524
|
+
MF_DELETE: Final = 512
|
|
525
|
+
MF_REMOVE: Final = 4096
|
|
526
|
+
MF_BYCOMMAND: Final = 0
|
|
527
|
+
MF_BYPOSITION: Final = 1024
|
|
528
|
+
MF_SEPARATOR: Final = 2048
|
|
529
|
+
MF_ENABLED: Final = 0
|
|
530
|
+
MF_GRAYED: Final = 1
|
|
531
|
+
MF_DISABLED: Final = 2
|
|
532
|
+
MF_UNCHECKED: Final = 0
|
|
533
|
+
MF_CHECKED: Final = 8
|
|
534
|
+
MF_USECHECKBITMAPS: Final = 512
|
|
535
|
+
MF_STRING: Final = 0
|
|
536
|
+
MF_BITMAP: Final = 4
|
|
537
|
+
MF_OWNERDRAW: Final = 256
|
|
538
|
+
MF_POPUP: Final = 16
|
|
539
|
+
MF_MENUBARBREAK: Final = 32
|
|
540
|
+
MF_MENUBREAK: Final = 64
|
|
541
|
+
MF_UNHILITE: Final = 0
|
|
542
|
+
MF_HILITE: Final = 128
|
|
543
|
+
MF_DEFAULT: Final = 4096
|
|
544
|
+
MF_SYSMENU: Final = 8192
|
|
545
|
+
MF_HELP: Final = 16384
|
|
546
|
+
MF_RIGHTJUSTIFY: Final = 16384
|
|
547
|
+
MF_MOUSESELECT: Final = 32768
|
|
548
|
+
MF_END: Final = 128
|
|
549
|
+
MFT_STRING: Final = MF_STRING
|
|
550
|
+
MFT_BITMAP: Final = MF_BITMAP
|
|
551
|
+
MFT_MENUBARBREAK: Final = MF_MENUBARBREAK
|
|
552
|
+
MFT_MENUBREAK: Final = MF_MENUBREAK
|
|
553
|
+
MFT_OWNERDRAW: Final = MF_OWNERDRAW
|
|
554
|
+
MFT_RADIOCHECK: Final = 512
|
|
555
|
+
MFT_SEPARATOR: Final = MF_SEPARATOR
|
|
556
|
+
MFT_RIGHTORDER: Final = 8192
|
|
557
|
+
MFT_RIGHTJUSTIFY: Final = MF_RIGHTJUSTIFY
|
|
558
|
+
MFS_GRAYED: Final = 3
|
|
559
|
+
MFS_DISABLED: Final = MFS_GRAYED
|
|
560
|
+
MFS_CHECKED: Final = MF_CHECKED
|
|
561
|
+
MFS_HILITE: Final = MF_HILITE
|
|
562
|
+
MFS_ENABLED: Final = MF_ENABLED
|
|
563
|
+
MFS_UNCHECKED: Final = MF_UNCHECKED
|
|
564
|
+
MFS_UNHILITE: Final = MF_UNHILITE
|
|
565
|
+
MFS_DEFAULT: Final = MF_DEFAULT
|
|
566
|
+
MFS_MASK: Final = 4235
|
|
567
|
+
MFS_HOTTRACKDRAWN: Final = 268435456
|
|
568
|
+
MFS_CACHEDBMP: Final = 536870912
|
|
569
|
+
MFS_BOTTOMGAPDROP: Final = 1073741824
|
|
570
|
+
MFS_TOPGAPDROP: Final = -2147483648
|
|
571
|
+
MFS_GAPDROP: Final = -1073741824
|
|
572
|
+
SC_SIZE: Final = 61440
|
|
573
|
+
SC_MOVE: Final = 61456
|
|
574
|
+
SC_MINIMIZE: Final = 61472
|
|
575
|
+
SC_MAXIMIZE: Final = 61488
|
|
576
|
+
SC_NEXTWINDOW: Final = 61504
|
|
577
|
+
SC_PREVWINDOW: Final = 61520
|
|
578
|
+
SC_CLOSE: Final = 61536
|
|
579
|
+
SC_VSCROLL: Final = 61552
|
|
580
|
+
SC_HSCROLL: Final = 61568
|
|
581
|
+
SC_MOUSEMENU: Final = 61584
|
|
582
|
+
SC_KEYMENU: Final = 61696
|
|
583
|
+
SC_ARRANGE: Final = 61712
|
|
584
|
+
SC_RESTORE: Final = 61728
|
|
585
|
+
SC_TASKLIST: Final = 61744
|
|
586
|
+
SC_SCREENSAVE: Final = 61760
|
|
587
|
+
SC_HOTKEY: Final = 61776
|
|
588
|
+
SC_DEFAULT: Final = 61792
|
|
589
|
+
SC_MONITORPOWER: Final = 61808
|
|
590
|
+
SC_CONTEXTHELP: Final = 61824
|
|
591
|
+
SC_SEPARATOR: Final = 61455
|
|
592
|
+
SC_ICON: Final = SC_MINIMIZE
|
|
593
|
+
SC_ZOOM: Final = SC_MAXIMIZE
|
|
594
|
+
IDC_ARROW: Final = 32512
|
|
595
|
+
IDC_IBEAM: Final = 32513
|
|
596
|
+
IDC_WAIT: Final = 32514
|
|
597
|
+
IDC_CROSS: Final = 32515
|
|
598
|
+
IDC_UPARROW: Final = 32516
|
|
599
|
+
IDC_SIZE: Final = 32640
|
|
600
|
+
IDC_ICON: Final = 32641
|
|
601
|
+
IDC_SIZENWSE: Final = 32642
|
|
602
|
+
IDC_SIZENESW: Final = 32643
|
|
603
|
+
IDC_SIZEWE: Final = 32644
|
|
604
|
+
IDC_SIZENS: Final = 32645
|
|
605
|
+
IDC_SIZEALL: Final = 32646
|
|
606
|
+
IDC_NO: Final = 32648
|
|
607
|
+
IDC_HAND: Final = 32649
|
|
608
|
+
IDC_APPSTARTING: Final = 32650
|
|
609
|
+
IDC_HELP: Final = 32651
|
|
610
|
+
IDC_PIN: Final = 32671
|
|
611
|
+
IDC_PERSON: Final = 32672
|
|
612
|
+
IMAGE_BITMAP: Final = 0
|
|
613
|
+
IMAGE_ICON: Final = 1
|
|
614
|
+
IMAGE_CURSOR: Final = 2
|
|
615
|
+
IMAGE_ENHMETAFILE: Final = 3
|
|
616
|
+
LR_DEFAULTCOLOR: Final = 0
|
|
617
|
+
LR_MONOCHROME: Final = 1
|
|
618
|
+
LR_COLOR: Final = 2
|
|
619
|
+
LR_COPYRETURNORG: Final = 4
|
|
620
|
+
LR_COPYDELETEORG: Final = 8
|
|
621
|
+
LR_LOADFROMFILE: Final = 16
|
|
622
|
+
LR_LOADTRANSPARENT: Final = 32
|
|
623
|
+
LR_DEFAULTSIZE: Final = 64
|
|
624
|
+
LR_LOADREALSIZE: Final = 128
|
|
625
|
+
LR_LOADMAP3DCOLORS: Final = 4096
|
|
626
|
+
LR_CREATEDIBSECTION: Final = 8192
|
|
627
|
+
LR_COPYFROMRESOURCE: Final = 16384
|
|
628
|
+
LR_SHARED: Final = 32768
|
|
629
|
+
DI_MASK: Final = 1
|
|
630
|
+
DI_IMAGE: Final = 2
|
|
631
|
+
DI_NORMAL: Final = 3
|
|
632
|
+
DI_COMPAT: Final = 4
|
|
633
|
+
DI_DEFAULTSIZE: Final = 8
|
|
634
|
+
RES_ICON: Final = 1
|
|
635
|
+
RES_CURSOR: Final = 2
|
|
636
|
+
OBM_CLOSE: Final = 32754
|
|
637
|
+
OBM_UPARROW: Final = 32753
|
|
638
|
+
OBM_DNARROW: Final = 32752
|
|
639
|
+
OBM_RGARROW: Final = 32751
|
|
640
|
+
OBM_LFARROW: Final = 32750
|
|
641
|
+
OBM_REDUCE: Final = 32749
|
|
642
|
+
OBM_ZOOM: Final = 32748
|
|
643
|
+
OBM_RESTORE: Final = 32747
|
|
644
|
+
OBM_REDUCED: Final = 32746
|
|
645
|
+
OBM_ZOOMD: Final = 32745
|
|
646
|
+
OBM_RESTORED: Final = 32744
|
|
647
|
+
OBM_UPARROWD: Final = 32743
|
|
648
|
+
OBM_DNARROWD: Final = 32742
|
|
649
|
+
OBM_RGARROWD: Final = 32741
|
|
650
|
+
OBM_LFARROWD: Final = 32740
|
|
651
|
+
OBM_MNARROW: Final = 32739
|
|
652
|
+
OBM_COMBO: Final = 32738
|
|
653
|
+
OBM_UPARROWI: Final = 32737
|
|
654
|
+
OBM_DNARROWI: Final = 32736
|
|
655
|
+
OBM_RGARROWI: Final = 32735
|
|
656
|
+
OBM_LFARROWI: Final = 32734
|
|
657
|
+
OBM_OLD_CLOSE: Final = 32767
|
|
658
|
+
OBM_SIZE: Final = 32766
|
|
659
|
+
OBM_OLD_UPARROW: Final = 32765
|
|
660
|
+
OBM_OLD_DNARROW: Final = 32764
|
|
661
|
+
OBM_OLD_RGARROW: Final = 32763
|
|
662
|
+
OBM_OLD_LFARROW: Final = 32762
|
|
663
|
+
OBM_BTSIZE: Final = 32761
|
|
664
|
+
OBM_CHECK: Final = 32760
|
|
665
|
+
OBM_CHECKBOXES: Final = 32759
|
|
666
|
+
OBM_BTNCORNERS: Final = 32758
|
|
667
|
+
OBM_OLD_REDUCE: Final = 32757
|
|
668
|
+
OBM_OLD_ZOOM: Final = 32756
|
|
669
|
+
OBM_OLD_RESTORE: Final = 32755
|
|
670
|
+
OCR_NORMAL: Final = 32512
|
|
671
|
+
OCR_IBEAM: Final = 32513
|
|
672
|
+
OCR_WAIT: Final = 32514
|
|
673
|
+
OCR_CROSS: Final = 32515
|
|
674
|
+
OCR_UP: Final = 32516
|
|
675
|
+
OCR_SIZE: Final = 32640
|
|
676
|
+
OCR_ICON: Final = 32641
|
|
677
|
+
OCR_SIZENWSE: Final = 32642
|
|
678
|
+
OCR_SIZENESW: Final = 32643
|
|
679
|
+
OCR_SIZEWE: Final = 32644
|
|
680
|
+
OCR_SIZENS: Final = 32645
|
|
681
|
+
OCR_SIZEALL: Final = 32646
|
|
682
|
+
OCR_ICOCUR: Final = 32647
|
|
683
|
+
OCR_NO: Final = 32648
|
|
684
|
+
OCR_HAND: Final = 32649
|
|
685
|
+
OCR_APPSTARTING: Final = 32650
|
|
686
|
+
|
|
687
|
+
OIC_SAMPLE: Final = 32512
|
|
688
|
+
OIC_HAND: Final = 32513
|
|
689
|
+
OIC_QUES: Final = 32514
|
|
690
|
+
OIC_BANG: Final = 32515
|
|
691
|
+
OIC_NOTE: Final = 32516
|
|
692
|
+
OIC_WINLOGO: Final = 32517
|
|
693
|
+
OIC_WARNING: Final = OIC_BANG
|
|
694
|
+
OIC_ERROR: Final = OIC_HAND
|
|
695
|
+
OIC_INFORMATION: Final = OIC_NOTE
|
|
696
|
+
ORD_LANGDRIVER: Final = 1
|
|
697
|
+
IDI_APPLICATION: Final = 32512
|
|
698
|
+
IDI_HAND: Final = 32513
|
|
699
|
+
IDI_QUESTION: Final = 32514
|
|
700
|
+
IDI_EXCLAMATION: Final = 32515
|
|
701
|
+
IDI_ASTERISK: Final = 32516
|
|
702
|
+
IDI_WINLOGO: Final = 32517
|
|
703
|
+
IDI_WARNING: Final = IDI_EXCLAMATION
|
|
704
|
+
IDI_ERROR: Final = IDI_HAND
|
|
705
|
+
IDI_INFORMATION: Final = IDI_ASTERISK
|
|
706
|
+
IDOK: Final = 1
|
|
707
|
+
IDCANCEL: Final = 2
|
|
708
|
+
IDABORT: Final = 3
|
|
709
|
+
IDRETRY: Final = 4
|
|
710
|
+
IDIGNORE: Final = 5
|
|
711
|
+
IDYES: Final = 6
|
|
712
|
+
IDNO: Final = 7
|
|
713
|
+
IDCLOSE: Final = 8
|
|
714
|
+
IDHELP: Final = 9
|
|
715
|
+
ES_LEFT: Final = 0
|
|
716
|
+
ES_CENTER: Final = 1
|
|
717
|
+
ES_RIGHT: Final = 2
|
|
718
|
+
ES_MULTILINE: Final = 4
|
|
719
|
+
ES_UPPERCASE: Final = 8
|
|
720
|
+
ES_LOWERCASE: Final = 16
|
|
721
|
+
ES_PASSWORD: Final = 32
|
|
722
|
+
ES_AUTOVSCROLL: Final = 64
|
|
723
|
+
ES_AUTOHSCROLL: Final = 128
|
|
724
|
+
ES_NOHIDESEL: Final = 256
|
|
725
|
+
ES_OEMCONVERT: Final = 1024
|
|
726
|
+
ES_READONLY: Final = 2048
|
|
727
|
+
ES_WANTRETURN: Final = 4096
|
|
728
|
+
ES_NUMBER: Final = 8192
|
|
729
|
+
EN_SETFOCUS: Final = 256
|
|
730
|
+
EN_KILLFOCUS: Final = 512
|
|
731
|
+
EN_CHANGE: Final = 768
|
|
732
|
+
EN_UPDATE: Final = 1024
|
|
733
|
+
EN_ERRSPACE: Final = 1280
|
|
734
|
+
EN_MAXTEXT: Final = 1281
|
|
735
|
+
EN_HSCROLL: Final = 1537
|
|
736
|
+
EN_VSCROLL: Final = 1538
|
|
737
|
+
EC_LEFTMARGIN: Final = 1
|
|
738
|
+
EC_RIGHTMARGIN: Final = 2
|
|
739
|
+
EC_USEFONTINFO: Final = 65535
|
|
740
|
+
EMSIS_COMPOSITIONSTRING: Final = 1
|
|
741
|
+
EIMES_GETCOMPSTRATONCE: Final = 1
|
|
742
|
+
EIMES_CANCELCOMPSTRINFOCUS: Final = 2
|
|
743
|
+
EIMES_COMPLETECOMPSTRKILLFOCUS: Final = 4
|
|
744
|
+
EM_GETSEL: Final = 176
|
|
745
|
+
EM_SETSEL: Final = 177
|
|
746
|
+
EM_GETRECT: Final = 178
|
|
747
|
+
EM_SETRECT: Final = 179
|
|
748
|
+
EM_SETRECTNP: Final = 180
|
|
749
|
+
EM_SCROLL: Final = 181
|
|
750
|
+
EM_LINESCROLL: Final = 182
|
|
751
|
+
EM_SCROLLCARET: Final = 183
|
|
752
|
+
EM_GETMODIFY: Final = 184
|
|
753
|
+
EM_SETMODIFY: Final = 185
|
|
754
|
+
EM_GETLINECOUNT: Final = 186
|
|
755
|
+
EM_LINEINDEX: Final = 187
|
|
756
|
+
EM_SETHANDLE: Final = 188
|
|
757
|
+
EM_GETHANDLE: Final = 189
|
|
758
|
+
EM_GETTHUMB: Final = 190
|
|
759
|
+
EM_LINELENGTH: Final = 193
|
|
760
|
+
EM_REPLACESEL: Final = 194
|
|
761
|
+
EM_GETLINE: Final = 196
|
|
762
|
+
EM_LIMITTEXT: Final = 197
|
|
763
|
+
EM_CANUNDO: Final = 198
|
|
764
|
+
EM_UNDO: Final = 199
|
|
765
|
+
EM_FMTLINES: Final = 200
|
|
766
|
+
EM_LINEFROMCHAR: Final = 201
|
|
767
|
+
EM_SETTABSTOPS: Final = 203
|
|
768
|
+
EM_SETPASSWORDCHAR: Final = 204
|
|
769
|
+
EM_EMPTYUNDOBUFFER: Final = 205
|
|
770
|
+
EM_GETFIRSTVISIBLELINE: Final = 206
|
|
771
|
+
EM_SETREADONLY: Final = 207
|
|
772
|
+
EM_SETWORDBREAKPROC: Final = 208
|
|
773
|
+
EM_GETWORDBREAKPROC: Final = 209
|
|
774
|
+
EM_GETPASSWORDCHAR: Final = 210
|
|
775
|
+
EM_SETMARGINS: Final = 211
|
|
776
|
+
EM_GETMARGINS: Final = 212
|
|
777
|
+
EM_SETLIMITTEXT: Final = EM_LIMITTEXT
|
|
778
|
+
EM_GETLIMITTEXT: Final = 213
|
|
779
|
+
EM_POSFROMCHAR: Final = 214
|
|
780
|
+
EM_CHARFROMPOS: Final = 215
|
|
781
|
+
EM_SETIMESTATUS: Final = 216
|
|
782
|
+
EM_GETIMESTATUS: Final = 217
|
|
783
|
+
WB_LEFT: Final = 0
|
|
784
|
+
WB_RIGHT: Final = 1
|
|
785
|
+
WB_ISDELIMITER: Final = 2
|
|
786
|
+
BS_PUSHBUTTON: Final = 0
|
|
787
|
+
BS_DEFPUSHBUTTON: Final = 1
|
|
788
|
+
BS_CHECKBOX: Final = 2
|
|
789
|
+
BS_AUTOCHECKBOX: Final = 3
|
|
790
|
+
BS_RADIOBUTTON: Final = 4
|
|
791
|
+
BS_3STATE: Final = 5
|
|
792
|
+
BS_AUTO3STATE: Final = 6
|
|
793
|
+
BS_GROUPBOX: Final = 7
|
|
794
|
+
BS_USERBUTTON: Final = 8
|
|
795
|
+
BS_AUTORADIOBUTTON: Final = 9
|
|
796
|
+
BS_OWNERDRAW: Final = 11
|
|
797
|
+
BS_LEFTTEXT: Final = 32
|
|
798
|
+
BS_TEXT: Final = 0
|
|
799
|
+
BS_ICON: Final = 64
|
|
800
|
+
BS_BITMAP: Final = 128
|
|
801
|
+
BS_LEFT: Final = 256
|
|
802
|
+
BS_RIGHT: Final = 512
|
|
803
|
+
BS_CENTER: Final = 768
|
|
804
|
+
BS_TOP: Final = 1024
|
|
805
|
+
BS_BOTTOM: Final = 2048
|
|
806
|
+
BS_VCENTER: Final = 3072
|
|
807
|
+
BS_PUSHLIKE: Final = 4096
|
|
808
|
+
BS_MULTILINE: Final = 8192
|
|
809
|
+
BS_NOTIFY: Final = 16384
|
|
810
|
+
BS_FLAT: Final = 32768
|
|
811
|
+
BS_RIGHTBUTTON: Final = BS_LEFTTEXT
|
|
812
|
+
BN_CLICKED: Final = 0
|
|
813
|
+
BN_PAINT: Final = 1
|
|
814
|
+
BN_HILITE: Final = 2
|
|
815
|
+
BN_UNHILITE: Final = 3
|
|
816
|
+
BN_DISABLE: Final = 4
|
|
817
|
+
BN_DOUBLECLICKED: Final = 5
|
|
818
|
+
BN_PUSHED: Final = BN_HILITE
|
|
819
|
+
BN_UNPUSHED: Final = BN_UNHILITE
|
|
820
|
+
BN_DBLCLK: Final = BN_DOUBLECLICKED
|
|
821
|
+
BN_SETFOCUS: Final = 6
|
|
822
|
+
BN_KILLFOCUS: Final = 7
|
|
823
|
+
BM_GETCHECK: Final = 240
|
|
824
|
+
BM_SETCHECK: Final = 241
|
|
825
|
+
BM_GETSTATE: Final = 242
|
|
826
|
+
BM_SETSTATE: Final = 243
|
|
827
|
+
BM_SETSTYLE: Final = 244
|
|
828
|
+
BM_CLICK: Final = 245
|
|
829
|
+
BM_GETIMAGE: Final = 246
|
|
830
|
+
BM_SETIMAGE: Final = 247
|
|
831
|
+
BST_UNCHECKED: Final = 0
|
|
832
|
+
BST_CHECKED: Final = 1
|
|
833
|
+
BST_INDETERMINATE: Final = 2
|
|
834
|
+
BST_PUSHED: Final = 4
|
|
835
|
+
BST_FOCUS: Final = 8
|
|
836
|
+
SS_LEFT: Final = 0
|
|
837
|
+
SS_CENTER: Final = 1
|
|
838
|
+
SS_RIGHT: Final = 2
|
|
839
|
+
SS_ICON: Final = 3
|
|
840
|
+
SS_BLACKRECT: Final = 4
|
|
841
|
+
SS_GRAYRECT: Final = 5
|
|
842
|
+
SS_WHITERECT: Final = 6
|
|
843
|
+
SS_BLACKFRAME: Final = 7
|
|
844
|
+
SS_GRAYFRAME: Final = 8
|
|
845
|
+
SS_WHITEFRAME: Final = 9
|
|
846
|
+
SS_USERITEM: Final = 10
|
|
847
|
+
SS_SIMPLE: Final = 11
|
|
848
|
+
SS_LEFTNOWORDWRAP: Final = 12
|
|
849
|
+
SS_BITMAP: Final = 14
|
|
850
|
+
SS_OWNERDRAW: Final = 13
|
|
851
|
+
SS_ENHMETAFILE: Final = 15
|
|
852
|
+
SS_ETCHEDHORZ: Final = 16
|
|
853
|
+
SS_ETCHEDVERT: Final = 17
|
|
854
|
+
SS_ETCHEDFRAME: Final = 18
|
|
855
|
+
SS_TYPEMASK: Final = 31
|
|
856
|
+
SS_NOPREFIX: Final = 128
|
|
857
|
+
SS_NOTIFY: Final = 256
|
|
858
|
+
SS_CENTERIMAGE: Final = 512
|
|
859
|
+
SS_RIGHTJUST: Final = 1024
|
|
860
|
+
SS_REALSIZEIMAGE: Final = 2048
|
|
861
|
+
SS_SUNKEN: Final = 4096
|
|
862
|
+
SS_ENDELLIPSIS: Final = 16384
|
|
863
|
+
SS_PATHELLIPSIS: Final = 32768
|
|
864
|
+
SS_WORDELLIPSIS: Final = 49152
|
|
865
|
+
SS_ELLIPSISMASK: Final = 49152
|
|
866
|
+
STM_SETICON: Final = 368
|
|
867
|
+
STM_GETICON: Final = 369
|
|
868
|
+
STM_SETIMAGE: Final = 370
|
|
869
|
+
STM_GETIMAGE: Final = 371
|
|
870
|
+
STN_CLICKED: Final = 0
|
|
871
|
+
STN_DBLCLK: Final = 1
|
|
872
|
+
STN_ENABLE: Final = 2
|
|
873
|
+
STN_DISABLE: Final = 3
|
|
874
|
+
STM_MSGMAX: Final = 372
|
|
875
|
+
DWL_MSGRESULT: Final = 0
|
|
876
|
+
DWL_DLGPROC: Final = 4
|
|
877
|
+
DWL_USER: Final = 8
|
|
878
|
+
DDL_READWRITE: Final = 0
|
|
879
|
+
DDL_READONLY: Final = 1
|
|
880
|
+
DDL_HIDDEN: Final = 2
|
|
881
|
+
DDL_SYSTEM: Final = 4
|
|
882
|
+
DDL_DIRECTORY: Final = 16
|
|
883
|
+
DDL_ARCHIVE: Final = 32
|
|
884
|
+
DDL_POSTMSGS: Final = 8192
|
|
885
|
+
DDL_DRIVES: Final = 16384
|
|
886
|
+
DDL_EXCLUSIVE: Final = 32768
|
|
887
|
+
|
|
888
|
+
RT_CURSOR: Final = 1
|
|
889
|
+
RT_BITMAP: Final = 2
|
|
890
|
+
RT_ICON: Final = 3
|
|
891
|
+
RT_MENU: Final = 4
|
|
892
|
+
RT_DIALOG: Final = 5
|
|
893
|
+
RT_STRING: Final = 6
|
|
894
|
+
RT_FONTDIR: Final = 7
|
|
895
|
+
RT_FONT: Final = 8
|
|
896
|
+
RT_ACCELERATOR: Final = 9
|
|
897
|
+
RT_RCDATA: Final = 10
|
|
898
|
+
RT_MESSAGETABLE: Final = 11
|
|
899
|
+
DIFFERENCE: Final = 11
|
|
900
|
+
RT_GROUP_CURSOR: Final[int]
|
|
901
|
+
RT_GROUP_ICON: Final[int]
|
|
902
|
+
RT_VERSION: Final = 16
|
|
903
|
+
RT_DLGINCLUDE: Final = 17
|
|
904
|
+
RT_PLUGPLAY: Final = 19
|
|
905
|
+
RT_VXD: Final = 20
|
|
906
|
+
RT_ANICURSOR: Final = 21
|
|
907
|
+
RT_ANIICON: Final = 22
|
|
908
|
+
RT_HTML: Final = 23
|
|
909
|
+
|
|
910
|
+
SB_HORZ: Final = 0
|
|
911
|
+
SB_VERT: Final = 1
|
|
912
|
+
SB_CTL: Final = 2
|
|
913
|
+
SB_BOTH: Final = 3
|
|
914
|
+
SB_LINEUP: Final = 0
|
|
915
|
+
SB_LINELEFT: Final = 0
|
|
916
|
+
SB_LINEDOWN: Final = 1
|
|
917
|
+
SB_LINERIGHT: Final = 1
|
|
918
|
+
SB_PAGEUP: Final = 2
|
|
919
|
+
SB_PAGELEFT: Final = 2
|
|
920
|
+
SB_PAGEDOWN: Final = 3
|
|
921
|
+
SB_PAGERIGHT: Final = 3
|
|
922
|
+
SB_THUMBPOSITION: Final = 4
|
|
923
|
+
SB_THUMBTRACK: Final = 5
|
|
924
|
+
SB_TOP: Final = 6
|
|
925
|
+
SB_LEFT: Final = 6
|
|
926
|
+
SB_BOTTOM: Final = 7
|
|
927
|
+
SB_RIGHT: Final = 7
|
|
928
|
+
SB_ENDSCROLL: Final = 8
|
|
929
|
+
SW_HIDE: Final = 0
|
|
930
|
+
SW_SHOWNORMAL: Final = 1
|
|
931
|
+
SW_NORMAL: Final = 1
|
|
932
|
+
SW_SHOWMINIMIZED: Final = 2
|
|
933
|
+
SW_SHOWMAXIMIZED: Final = 3
|
|
934
|
+
SW_MAXIMIZE: Final = 3
|
|
935
|
+
SW_SHOWNOACTIVATE: Final = 4
|
|
936
|
+
SW_SHOW: Final = 5
|
|
937
|
+
SW_MINIMIZE: Final = 6
|
|
938
|
+
SW_SHOWMINNOACTIVE: Final = 7
|
|
939
|
+
SW_SHOWNA: Final = 8
|
|
940
|
+
SW_RESTORE: Final = 9
|
|
941
|
+
SW_SHOWDEFAULT: Final = 10
|
|
942
|
+
SW_FORCEMINIMIZE: Final = 11
|
|
943
|
+
SW_MAX: Final = 11
|
|
944
|
+
HIDE_WINDOW: Final = 0
|
|
945
|
+
SHOW_OPENWINDOW: Final = 1
|
|
946
|
+
SHOW_ICONWINDOW: Final = 2
|
|
947
|
+
SHOW_FULLSCREEN: Final = 3
|
|
948
|
+
SHOW_OPENNOACTIVATE: Final = 4
|
|
949
|
+
SW_PARENTCLOSING: Final = 1
|
|
950
|
+
SW_OTHERZOOM: Final = 2
|
|
951
|
+
SW_PARENTOPENING: Final = 3
|
|
952
|
+
SW_OTHERUNZOOM: Final = 4
|
|
953
|
+
AW_HOR_POSITIVE: Final = 1
|
|
954
|
+
AW_HOR_NEGATIVE: Final = 2
|
|
955
|
+
AW_VER_POSITIVE: Final = 4
|
|
956
|
+
AW_VER_NEGATIVE: Final = 8
|
|
957
|
+
AW_CENTER: Final = 16
|
|
958
|
+
AW_HIDE: Final = 65536
|
|
959
|
+
AW_ACTIVATE: Final = 131072
|
|
960
|
+
AW_SLIDE: Final = 262144
|
|
961
|
+
AW_BLEND: Final = 524288
|
|
962
|
+
KF_EXTENDED: Final = 256
|
|
963
|
+
KF_DLGMODE: Final = 2048
|
|
964
|
+
KF_MENUMODE: Final = 4096
|
|
965
|
+
KF_ALTDOWN: Final = 8192
|
|
966
|
+
KF_REPEAT: Final = 16384
|
|
967
|
+
KF_UP: Final = 32768
|
|
968
|
+
VK_LBUTTON: Final = 1
|
|
969
|
+
VK_RBUTTON: Final = 2
|
|
970
|
+
VK_CANCEL: Final = 3
|
|
971
|
+
VK_MBUTTON: Final = 4
|
|
972
|
+
VK_BACK: Final = 8
|
|
973
|
+
VK_TAB: Final = 9
|
|
974
|
+
VK_CLEAR: Final = 12
|
|
975
|
+
VK_RETURN: Final = 13
|
|
976
|
+
VK_SHIFT: Final = 16
|
|
977
|
+
VK_CONTROL: Final = 17
|
|
978
|
+
VK_MENU: Final = 18
|
|
979
|
+
VK_PAUSE: Final = 19
|
|
980
|
+
VK_CAPITAL: Final = 20
|
|
981
|
+
VK_KANA: Final = 21
|
|
982
|
+
VK_HANGEUL: Final = 21
|
|
983
|
+
VK_HANGUL: Final = 21
|
|
984
|
+
VK_JUNJA: Final = 23
|
|
985
|
+
VK_FINAL: Final = 24
|
|
986
|
+
VK_HANJA: Final = 25
|
|
987
|
+
VK_KANJI: Final = 25
|
|
988
|
+
VK_ESCAPE: Final = 27
|
|
989
|
+
VK_CONVERT: Final = 28
|
|
990
|
+
VK_NONCONVERT: Final = 29
|
|
991
|
+
VK_ACCEPT: Final = 30
|
|
992
|
+
VK_MODECHANGE: Final = 31
|
|
993
|
+
VK_SPACE: Final = 32
|
|
994
|
+
VK_PRIOR: Final = 33
|
|
995
|
+
VK_NEXT: Final = 34
|
|
996
|
+
VK_END: Final = 35
|
|
997
|
+
VK_HOME: Final = 36
|
|
998
|
+
VK_LEFT: Final = 37
|
|
999
|
+
VK_UP: Final = 38
|
|
1000
|
+
VK_RIGHT: Final = 39
|
|
1001
|
+
VK_DOWN: Final = 40
|
|
1002
|
+
VK_SELECT: Final = 41
|
|
1003
|
+
VK_PRINT: Final = 42
|
|
1004
|
+
VK_EXECUTE: Final = 43
|
|
1005
|
+
VK_SNAPSHOT: Final = 44
|
|
1006
|
+
VK_INSERT: Final = 45
|
|
1007
|
+
VK_DELETE: Final = 46
|
|
1008
|
+
VK_HELP: Final = 47
|
|
1009
|
+
VK_LWIN: Final = 91
|
|
1010
|
+
VK_RWIN: Final = 92
|
|
1011
|
+
VK_APPS: Final = 93
|
|
1012
|
+
VK_NUMPAD0: Final = 96
|
|
1013
|
+
VK_NUMPAD1: Final = 97
|
|
1014
|
+
VK_NUMPAD2: Final = 98
|
|
1015
|
+
VK_NUMPAD3: Final = 99
|
|
1016
|
+
VK_NUMPAD4: Final = 100
|
|
1017
|
+
VK_NUMPAD5: Final = 101
|
|
1018
|
+
VK_NUMPAD6: Final = 102
|
|
1019
|
+
VK_NUMPAD7: Final = 103
|
|
1020
|
+
VK_NUMPAD8: Final = 104
|
|
1021
|
+
VK_NUMPAD9: Final = 105
|
|
1022
|
+
VK_MULTIPLY: Final = 106
|
|
1023
|
+
VK_ADD: Final = 107
|
|
1024
|
+
VK_SEPARATOR: Final = 108
|
|
1025
|
+
VK_SUBTRACT: Final = 109
|
|
1026
|
+
VK_DECIMAL: Final = 110
|
|
1027
|
+
VK_DIVIDE: Final = 111
|
|
1028
|
+
VK_F1: Final = 112
|
|
1029
|
+
VK_F2: Final = 113
|
|
1030
|
+
VK_F3: Final = 114
|
|
1031
|
+
VK_F4: Final = 115
|
|
1032
|
+
VK_F5: Final = 116
|
|
1033
|
+
VK_F6: Final = 117
|
|
1034
|
+
VK_F7: Final = 118
|
|
1035
|
+
VK_F8: Final = 119
|
|
1036
|
+
VK_F9: Final = 120
|
|
1037
|
+
VK_F10: Final = 121
|
|
1038
|
+
VK_F11: Final = 122
|
|
1039
|
+
VK_F12: Final = 123
|
|
1040
|
+
VK_F13: Final = 124
|
|
1041
|
+
VK_F14: Final = 125
|
|
1042
|
+
VK_F15: Final = 126
|
|
1043
|
+
VK_F16: Final = 127
|
|
1044
|
+
VK_F17: Final = 128
|
|
1045
|
+
VK_F18: Final = 129
|
|
1046
|
+
VK_F19: Final = 130
|
|
1047
|
+
VK_F20: Final = 131
|
|
1048
|
+
VK_F21: Final = 132
|
|
1049
|
+
VK_F22: Final = 133
|
|
1050
|
+
VK_F23: Final = 134
|
|
1051
|
+
VK_F24: Final = 135
|
|
1052
|
+
VK_NUMLOCK: Final = 144
|
|
1053
|
+
VK_SCROLL: Final = 145
|
|
1054
|
+
VK_LSHIFT: Final = 160
|
|
1055
|
+
VK_RSHIFT: Final = 161
|
|
1056
|
+
VK_LCONTROL: Final = 162
|
|
1057
|
+
VK_RCONTROL: Final = 163
|
|
1058
|
+
VK_LMENU: Final = 164
|
|
1059
|
+
VK_RMENU: Final = 165
|
|
1060
|
+
VK_PROCESSKEY: Final = 229
|
|
1061
|
+
VK_ATTN: Final = 246
|
|
1062
|
+
VK_CRSEL: Final = 247
|
|
1063
|
+
VK_EXSEL: Final = 248
|
|
1064
|
+
VK_EREOF: Final = 249
|
|
1065
|
+
VK_PLAY: Final = 250
|
|
1066
|
+
VK_ZOOM: Final = 251
|
|
1067
|
+
VK_NONAME: Final = 252
|
|
1068
|
+
VK_PA1: Final = 253
|
|
1069
|
+
VK_OEM_CLEAR: Final = 254
|
|
1070
|
+
|
|
1071
|
+
VK_XBUTTON1: Final = 0x05
|
|
1072
|
+
VK_XBUTTON2: Final = 0x06
|
|
1073
|
+
VK_VOLUME_MUTE: Final = 0xAD
|
|
1074
|
+
VK_VOLUME_DOWN: Final = 0xAE
|
|
1075
|
+
VK_VOLUME_UP: Final = 0xAF
|
|
1076
|
+
VK_MEDIA_NEXT_TRACK: Final = 0xB0
|
|
1077
|
+
VK_MEDIA_PREV_TRACK: Final = 0xB1
|
|
1078
|
+
VK_MEDIA_PLAY_PAUSE: Final = 0xB3
|
|
1079
|
+
VK_BROWSER_BACK: Final = 0xA6
|
|
1080
|
+
VK_BROWSER_FORWARD: Final = 0xA7
|
|
1081
|
+
WH_MIN: Final = -1
|
|
1082
|
+
WH_MSGFILTER: Final = -1
|
|
1083
|
+
WH_JOURNALRECORD: Final = 0
|
|
1084
|
+
WH_JOURNALPLAYBACK: Final = 1
|
|
1085
|
+
WH_KEYBOARD: Final = 2
|
|
1086
|
+
WH_GETMESSAGE: Final = 3
|
|
1087
|
+
WH_CALLWNDPROC: Final = 4
|
|
1088
|
+
WH_CBT: Final = 5
|
|
1089
|
+
WH_SYSMSGFILTER: Final = 6
|
|
1090
|
+
WH_MOUSE: Final = 7
|
|
1091
|
+
WH_HARDWARE: Final = 8
|
|
1092
|
+
WH_DEBUG: Final = 9
|
|
1093
|
+
WH_SHELL: Final = 10
|
|
1094
|
+
WH_FOREGROUNDIDLE: Final = 11
|
|
1095
|
+
WH_CALLWNDPROCRET: Final = 12
|
|
1096
|
+
WH_KEYBOARD_LL: Final = 13
|
|
1097
|
+
WH_MOUSE_LL: Final = 14
|
|
1098
|
+
WH_MAX: Final = 14
|
|
1099
|
+
WH_MINHOOK: Final = WH_MIN
|
|
1100
|
+
WH_MAXHOOK: Final = WH_MAX
|
|
1101
|
+
HC_ACTION: Final = 0
|
|
1102
|
+
HC_GETNEXT: Final = 1
|
|
1103
|
+
HC_SKIP: Final = 2
|
|
1104
|
+
HC_NOREMOVE: Final = 3
|
|
1105
|
+
HC_NOREM: Final = HC_NOREMOVE
|
|
1106
|
+
HC_SYSMODALON: Final = 4
|
|
1107
|
+
HC_SYSMODALOFF: Final = 5
|
|
1108
|
+
HCBT_MOVESIZE: Final = 0
|
|
1109
|
+
HCBT_MINMAX: Final = 1
|
|
1110
|
+
HCBT_QS: Final = 2
|
|
1111
|
+
HCBT_CREATEWND: Final = 3
|
|
1112
|
+
HCBT_DESTROYWND: Final = 4
|
|
1113
|
+
HCBT_ACTIVATE: Final = 5
|
|
1114
|
+
HCBT_CLICKSKIPPED: Final = 6
|
|
1115
|
+
HCBT_KEYSKIPPED: Final = 7
|
|
1116
|
+
HCBT_SYSCOMMAND: Final = 8
|
|
1117
|
+
HCBT_SETFOCUS: Final = 9
|
|
1118
|
+
MSGF_DIALOGBOX: Final = 0
|
|
1119
|
+
MSGF_MESSAGEBOX: Final = 1
|
|
1120
|
+
MSGF_MENU: Final = 2
|
|
1121
|
+
|
|
1122
|
+
MSGF_SCROLLBAR: Final = 5
|
|
1123
|
+
MSGF_NEXTWINDOW: Final = 6
|
|
1124
|
+
|
|
1125
|
+
MSGF_MAX: Final = 8
|
|
1126
|
+
MSGF_USER: Final = 4096
|
|
1127
|
+
HSHELL_WINDOWCREATED: Final = 1
|
|
1128
|
+
HSHELL_WINDOWDESTROYED: Final = 2
|
|
1129
|
+
HSHELL_ACTIVATESHELLWINDOW: Final = 3
|
|
1130
|
+
HSHELL_WINDOWACTIVATED: Final = 4
|
|
1131
|
+
HSHELL_GETMINRECT: Final = 5
|
|
1132
|
+
HSHELL_REDRAW: Final = 6
|
|
1133
|
+
HSHELL_TASKMAN: Final = 7
|
|
1134
|
+
HSHELL_LANGUAGE: Final = 8
|
|
1135
|
+
HSHELL_ACCESSIBILITYSTATE: Final = 11
|
|
1136
|
+
ACCESS_STICKYKEYS: Final = 1
|
|
1137
|
+
ACCESS_FILTERKEYS: Final = 2
|
|
1138
|
+
ACCESS_MOUSEKEYS: Final = 3
|
|
1139
|
+
|
|
1140
|
+
LLKHF_EXTENDED: Final = 1
|
|
1141
|
+
LLKHF_INJECTED: Final = 16
|
|
1142
|
+
LLKHF_ALTDOWN: Final = 32
|
|
1143
|
+
LLKHF_UP: Final = 128
|
|
1144
|
+
LLKHF_LOWER_IL_INJECTED: Final = 2
|
|
1145
|
+
LLMHF_INJECTED: Final = 1
|
|
1146
|
+
LLMHF_LOWER_IL_INJECTED: Final = 2
|
|
1147
|
+
|
|
1148
|
+
HKL_PREV: Final = 0
|
|
1149
|
+
HKL_NEXT: Final = 1
|
|
1150
|
+
KLF_ACTIVATE: Final = 1
|
|
1151
|
+
KLF_SUBSTITUTE_OK: Final = 2
|
|
1152
|
+
KLF_UNLOADPREVIOUS: Final = 4
|
|
1153
|
+
KLF_REORDER: Final = 8
|
|
1154
|
+
KLF_REPLACELANG: Final = 16
|
|
1155
|
+
KLF_NOTELLSHELL: Final = 128
|
|
1156
|
+
KLF_SETFORPROCESS: Final = 256
|
|
1157
|
+
KL_NAMELENGTH: Final = 9
|
|
1158
|
+
DESKTOP_READOBJECTS: Final = 1
|
|
1159
|
+
DESKTOP_CREATEWINDOW: Final = 2
|
|
1160
|
+
DESKTOP_CREATEMENU: Final = 4
|
|
1161
|
+
DESKTOP_HOOKCONTROL: Final = 8
|
|
1162
|
+
DESKTOP_JOURNALRECORD: Final = 16
|
|
1163
|
+
DESKTOP_JOURNALPLAYBACK: Final = 32
|
|
1164
|
+
DESKTOP_ENUMERATE: Final = 64
|
|
1165
|
+
DESKTOP_WRITEOBJECTS: Final = 128
|
|
1166
|
+
DESKTOP_SWITCHDESKTOP: Final = 256
|
|
1167
|
+
DF_ALLOWOTHERACCOUNTHOOK: Final = 1
|
|
1168
|
+
WINSTA_ENUMDESKTOPS: Final = 1
|
|
1169
|
+
WINSTA_READATTRIBUTES: Final = 2
|
|
1170
|
+
WINSTA_ACCESSCLIPBOARD: Final = 4
|
|
1171
|
+
WINSTA_CREATEDESKTOP: Final = 8
|
|
1172
|
+
WINSTA_WRITEATTRIBUTES: Final = 16
|
|
1173
|
+
WINSTA_ACCESSGLOBALATOMS: Final = 32
|
|
1174
|
+
WINSTA_EXITWINDOWS: Final = 64
|
|
1175
|
+
WINSTA_ENUMERATE: Final = 256
|
|
1176
|
+
WINSTA_READSCREEN: Final = 512
|
|
1177
|
+
WSF_VISIBLE: Final = 1
|
|
1178
|
+
UOI_FLAGS: Final = 1
|
|
1179
|
+
UOI_NAME: Final = 2
|
|
1180
|
+
UOI_TYPE: Final = 3
|
|
1181
|
+
UOI_USER_SID: Final = 4
|
|
1182
|
+
GWL_WNDPROC: Final = -4
|
|
1183
|
+
GWL_HINSTANCE: Final = -6
|
|
1184
|
+
GWL_HWNDPARENT: Final = -8
|
|
1185
|
+
GWL_STYLE: Final = -16
|
|
1186
|
+
GWL_EXSTYLE: Final = -20
|
|
1187
|
+
GWL_USERDATA: Final = -21
|
|
1188
|
+
GWL_ID: Final = -12
|
|
1189
|
+
GCL_MENUNAME: Final = -8
|
|
1190
|
+
GCL_HBRBACKGROUND: Final = -10
|
|
1191
|
+
GCL_HCURSOR: Final = -12
|
|
1192
|
+
GCL_HICON: Final = -14
|
|
1193
|
+
GCL_HMODULE: Final = -16
|
|
1194
|
+
GCL_CBWNDEXTRA: Final = -18
|
|
1195
|
+
GCL_CBCLSEXTRA: Final = -20
|
|
1196
|
+
GCL_WNDPROC: Final = -24
|
|
1197
|
+
GCL_STYLE: Final = -26
|
|
1198
|
+
GCW_ATOM: Final = -32
|
|
1199
|
+
GCL_HICONSM: Final = -34
|
|
1200
|
+
|
|
1201
|
+
WM_NULL: Final = 0
|
|
1202
|
+
WM_CREATE: Final = 1
|
|
1203
|
+
WM_DESTROY: Final = 2
|
|
1204
|
+
WM_MOVE: Final = 3
|
|
1205
|
+
WM_SIZE: Final = 5
|
|
1206
|
+
WM_ACTIVATE: Final = 6
|
|
1207
|
+
WA_INACTIVE: Final = 0
|
|
1208
|
+
WA_ACTIVE: Final = 1
|
|
1209
|
+
WA_CLICKACTIVE: Final = 2
|
|
1210
|
+
WM_SETFOCUS: Final = 7
|
|
1211
|
+
WM_KILLFOCUS: Final = 8
|
|
1212
|
+
WM_ENABLE: Final = 10
|
|
1213
|
+
WM_SETREDRAW: Final = 11
|
|
1214
|
+
WM_SETTEXT: Final = 12
|
|
1215
|
+
WM_GETTEXT: Final = 13
|
|
1216
|
+
WM_GETTEXTLENGTH: Final = 14
|
|
1217
|
+
WM_PAINT: Final = 15
|
|
1218
|
+
WM_CLOSE: Final = 16
|
|
1219
|
+
WM_QUERYENDSESSION: Final = 17
|
|
1220
|
+
WM_QUIT: Final = 18
|
|
1221
|
+
WM_QUERYOPEN: Final = 19
|
|
1222
|
+
WM_ERASEBKGND: Final = 20
|
|
1223
|
+
WM_SYSCOLORCHANGE: Final = 21
|
|
1224
|
+
WM_ENDSESSION: Final = 22
|
|
1225
|
+
WM_SHOWWINDOW: Final = 24
|
|
1226
|
+
WM_WININICHANGE: Final = 26
|
|
1227
|
+
WM_SETTINGCHANGE: Final = WM_WININICHANGE
|
|
1228
|
+
WM_DEVMODECHANGE: Final = 27
|
|
1229
|
+
WM_ACTIVATEAPP: Final = 28
|
|
1230
|
+
WM_FONTCHANGE: Final = 29
|
|
1231
|
+
WM_TIMECHANGE: Final = 30
|
|
1232
|
+
WM_CANCELMODE: Final = 31
|
|
1233
|
+
WM_SETCURSOR: Final = 32
|
|
1234
|
+
WM_MOUSEACTIVATE: Final = 33
|
|
1235
|
+
WM_CHILDACTIVATE: Final = 34
|
|
1236
|
+
WM_QUEUESYNC: Final = 35
|
|
1237
|
+
WM_GETMINMAXINFO: Final = 36
|
|
1238
|
+
WM_PAINTICON: Final = 38
|
|
1239
|
+
WM_ICONERASEBKGND: Final = 39
|
|
1240
|
+
WM_NEXTDLGCTL: Final = 40
|
|
1241
|
+
WM_SPOOLERSTATUS: Final = 42
|
|
1242
|
+
WM_DRAWITEM: Final = 43
|
|
1243
|
+
WM_MEASUREITEM: Final = 44
|
|
1244
|
+
WM_DELETEITEM: Final = 45
|
|
1245
|
+
WM_VKEYTOITEM: Final = 46
|
|
1246
|
+
WM_CHARTOITEM: Final = 47
|
|
1247
|
+
WM_SETFONT: Final = 48
|
|
1248
|
+
WM_GETFONT: Final = 49
|
|
1249
|
+
WM_SETHOTKEY: Final = 50
|
|
1250
|
+
WM_GETHOTKEY: Final = 51
|
|
1251
|
+
WM_QUERYDRAGICON: Final = 55
|
|
1252
|
+
WM_COMPAREITEM: Final = 57
|
|
1253
|
+
WM_GETOBJECT: Final = 61
|
|
1254
|
+
WM_COMPACTING: Final = 65
|
|
1255
|
+
WM_COMMNOTIFY: Final = 68
|
|
1256
|
+
WM_WINDOWPOSCHANGING: Final = 70
|
|
1257
|
+
WM_WINDOWPOSCHANGED: Final = 71
|
|
1258
|
+
WM_POWER: Final = 72
|
|
1259
|
+
PWR_OK: Final = 1
|
|
1260
|
+
PWR_FAIL: Final = -1
|
|
1261
|
+
PWR_SUSPENDREQUEST: Final = 1
|
|
1262
|
+
PWR_SUSPENDRESUME: Final = 2
|
|
1263
|
+
PWR_CRITICALRESUME: Final = 3
|
|
1264
|
+
WM_COPYDATA: Final = 74
|
|
1265
|
+
WM_CANCELJOURNAL: Final = 75
|
|
1266
|
+
WM_INPUTLANGCHANGEREQUEST: Final = 80
|
|
1267
|
+
WM_INPUTLANGCHANGE: Final = 81
|
|
1268
|
+
WM_TCARD: Final = 82
|
|
1269
|
+
WM_HELP: Final = 83
|
|
1270
|
+
WM_USERCHANGED: Final = 84
|
|
1271
|
+
WM_NOTIFYFORMAT: Final = 85
|
|
1272
|
+
NFR_ANSI: Final = 1
|
|
1273
|
+
NFR_UNICODE: Final = 2
|
|
1274
|
+
NF_QUERY: Final = 3
|
|
1275
|
+
NF_REQUERY: Final = 4
|
|
1276
|
+
WM_STYLECHANGING: Final = 124
|
|
1277
|
+
WM_STYLECHANGED: Final = 125
|
|
1278
|
+
WM_DISPLAYCHANGE: Final = 126
|
|
1279
|
+
WM_GETICON: Final = 127
|
|
1280
|
+
WM_SETICON: Final = 128
|
|
1281
|
+
WM_NCCREATE: Final = 129
|
|
1282
|
+
WM_NCDESTROY: Final = 130
|
|
1283
|
+
WM_NCCALCSIZE: Final = 131
|
|
1284
|
+
WM_NCHITTEST: Final = 132
|
|
1285
|
+
WM_NCPAINT: Final = 133
|
|
1286
|
+
WM_NCACTIVATE: Final = 134
|
|
1287
|
+
WM_GETDLGCODE: Final = 135
|
|
1288
|
+
WM_SYNCPAINT: Final = 136
|
|
1289
|
+
WM_NCMOUSEMOVE: Final = 160
|
|
1290
|
+
WM_NCLBUTTONDOWN: Final = 161
|
|
1291
|
+
WM_NCLBUTTONUP: Final = 162
|
|
1292
|
+
WM_NCLBUTTONDBLCLK: Final = 163
|
|
1293
|
+
WM_NCRBUTTONDOWN: Final = 164
|
|
1294
|
+
WM_NCRBUTTONUP: Final = 165
|
|
1295
|
+
WM_NCRBUTTONDBLCLK: Final = 166
|
|
1296
|
+
WM_NCMBUTTONDOWN: Final = 167
|
|
1297
|
+
WM_NCMBUTTONUP: Final = 168
|
|
1298
|
+
WM_NCMBUTTONDBLCLK: Final = 169
|
|
1299
|
+
WM_KEYFIRST: Final = 256
|
|
1300
|
+
WM_KEYDOWN: Final = 256
|
|
1301
|
+
WM_KEYUP: Final = 257
|
|
1302
|
+
WM_CHAR: Final = 258
|
|
1303
|
+
WM_DEADCHAR: Final = 259
|
|
1304
|
+
WM_SYSKEYDOWN: Final = 260
|
|
1305
|
+
WM_SYSKEYUP: Final = 261
|
|
1306
|
+
WM_SYSCHAR: Final = 262
|
|
1307
|
+
WM_SYSDEADCHAR: Final = 263
|
|
1308
|
+
WM_KEYLAST: Final = 264
|
|
1309
|
+
WM_IME_STARTCOMPOSITION: Final = 269
|
|
1310
|
+
WM_IME_ENDCOMPOSITION: Final = 270
|
|
1311
|
+
WM_IME_COMPOSITION: Final = 271
|
|
1312
|
+
WM_IME_KEYLAST: Final = 271
|
|
1313
|
+
WM_INITDIALOG: Final = 272
|
|
1314
|
+
WM_COMMAND: Final = 273
|
|
1315
|
+
WM_SYSCOMMAND: Final = 274
|
|
1316
|
+
WM_TIMER: Final = 275
|
|
1317
|
+
WM_HSCROLL: Final = 276
|
|
1318
|
+
WM_VSCROLL: Final = 277
|
|
1319
|
+
WM_INITMENU: Final = 278
|
|
1320
|
+
WM_INITMENUPOPUP: Final = 279
|
|
1321
|
+
WM_MENUSELECT: Final = 287
|
|
1322
|
+
WM_MENUCHAR: Final = 288
|
|
1323
|
+
WM_ENTERIDLE: Final = 289
|
|
1324
|
+
WM_MENURBUTTONUP: Final = 290
|
|
1325
|
+
WM_MENUDRAG: Final = 291
|
|
1326
|
+
WM_MENUGETOBJECT: Final = 292
|
|
1327
|
+
WM_UNINITMENUPOPUP: Final = 293
|
|
1328
|
+
WM_MENUCOMMAND: Final = 294
|
|
1329
|
+
WM_CTLCOLORMSGBOX: Final = 306
|
|
1330
|
+
WM_CTLCOLOREDIT: Final = 307
|
|
1331
|
+
WM_CTLCOLORLISTBOX: Final = 308
|
|
1332
|
+
WM_CTLCOLORBTN: Final = 309
|
|
1333
|
+
WM_CTLCOLORDLG: Final = 310
|
|
1334
|
+
WM_CTLCOLORSCROLLBAR: Final = 311
|
|
1335
|
+
WM_CTLCOLORSTATIC: Final = 312
|
|
1336
|
+
WM_MOUSEFIRST: Final = 512
|
|
1337
|
+
WM_MOUSEMOVE: Final = 512
|
|
1338
|
+
WM_LBUTTONDOWN: Final = 513
|
|
1339
|
+
WM_LBUTTONUP: Final = 514
|
|
1340
|
+
WM_LBUTTONDBLCLK: Final = 515
|
|
1341
|
+
WM_RBUTTONDOWN: Final = 516
|
|
1342
|
+
WM_RBUTTONUP: Final = 517
|
|
1343
|
+
WM_RBUTTONDBLCLK: Final = 518
|
|
1344
|
+
WM_MBUTTONDOWN: Final = 519
|
|
1345
|
+
WM_MBUTTONUP: Final = 520
|
|
1346
|
+
WM_MBUTTONDBLCLK: Final = 521
|
|
1347
|
+
WM_MOUSEWHEEL: Final = 522
|
|
1348
|
+
WM_MOUSELAST: Final = 522
|
|
1349
|
+
WHEEL_DELTA: Final = 120
|
|
1350
|
+
WHEEL_PAGESCROLL: Final = -1
|
|
1351
|
+
WM_PARENTNOTIFY: Final = 528
|
|
1352
|
+
MENULOOP_WINDOW: Final = 0
|
|
1353
|
+
MENULOOP_POPUP: Final = 1
|
|
1354
|
+
WM_ENTERMENULOOP: Final = 529
|
|
1355
|
+
WM_EXITMENULOOP: Final = 530
|
|
1356
|
+
WM_NEXTMENU: Final = 531
|
|
1357
|
+
WM_SIZING: Final = 532
|
|
1358
|
+
WM_CAPTURECHANGED: Final = 533
|
|
1359
|
+
WM_MOVING: Final = 534
|
|
1360
|
+
WM_POWERBROADCAST: Final = 536
|
|
1361
|
+
PBT_APMQUERYSUSPEND: Final = 0
|
|
1362
|
+
PBT_APMQUERYSTANDBY: Final = 1
|
|
1363
|
+
PBT_APMQUERYSUSPENDFAILED: Final = 2
|
|
1364
|
+
PBT_APMQUERYSTANDBYFAILED: Final = 3
|
|
1365
|
+
PBT_APMSUSPEND: Final = 4
|
|
1366
|
+
PBT_APMSTANDBY: Final = 5
|
|
1367
|
+
PBT_APMRESUMECRITICAL: Final = 6
|
|
1368
|
+
PBT_APMRESUMESUSPEND: Final = 7
|
|
1369
|
+
PBT_APMRESUMESTANDBY: Final = 8
|
|
1370
|
+
PBTF_APMRESUMEFROMFAILURE: Final = 1
|
|
1371
|
+
PBT_APMBATTERYLOW: Final = 9
|
|
1372
|
+
PBT_APMPOWERSTATUSCHANGE: Final = 10
|
|
1373
|
+
PBT_APMOEMEVENT: Final = 11
|
|
1374
|
+
PBT_APMRESUMEAUTOMATIC: Final = 18
|
|
1375
|
+
WM_MDICREATE: Final = 544
|
|
1376
|
+
WM_MDIDESTROY: Final = 545
|
|
1377
|
+
WM_MDIACTIVATE: Final = 546
|
|
1378
|
+
WM_MDIRESTORE: Final = 547
|
|
1379
|
+
WM_MDINEXT: Final = 548
|
|
1380
|
+
WM_MDIMAXIMIZE: Final = 549
|
|
1381
|
+
WM_MDITILE: Final = 550
|
|
1382
|
+
WM_MDICASCADE: Final = 551
|
|
1383
|
+
WM_MDIICONARRANGE: Final = 552
|
|
1384
|
+
WM_MDIGETACTIVE: Final = 553
|
|
1385
|
+
WM_MDISETMENU: Final = 560
|
|
1386
|
+
WM_ENTERSIZEMOVE: Final = 561
|
|
1387
|
+
WM_EXITSIZEMOVE: Final = 562
|
|
1388
|
+
WM_DROPFILES: Final = 563
|
|
1389
|
+
WM_MDIREFRESHMENU: Final = 564
|
|
1390
|
+
WM_IME_SETCONTEXT: Final = 641
|
|
1391
|
+
WM_IME_NOTIFY: Final = 642
|
|
1392
|
+
WM_IME_CONTROL: Final = 643
|
|
1393
|
+
WM_IME_COMPOSITIONFULL: Final = 644
|
|
1394
|
+
WM_IME_SELECT: Final = 645
|
|
1395
|
+
WM_IME_CHAR: Final = 646
|
|
1396
|
+
WM_IME_REQUEST: Final = 648
|
|
1397
|
+
WM_IME_KEYDOWN: Final = 656
|
|
1398
|
+
WM_IME_KEYUP: Final = 657
|
|
1399
|
+
WM_MOUSEHOVER: Final = 673
|
|
1400
|
+
WM_MOUSELEAVE: Final = 675
|
|
1401
|
+
WM_CUT: Final = 768
|
|
1402
|
+
WM_COPY: Final = 769
|
|
1403
|
+
WM_PASTE: Final = 770
|
|
1404
|
+
WM_CLEAR: Final = 771
|
|
1405
|
+
WM_UNDO: Final = 772
|
|
1406
|
+
WM_RENDERFORMAT: Final = 773
|
|
1407
|
+
WM_RENDERALLFORMATS: Final = 774
|
|
1408
|
+
WM_DESTROYCLIPBOARD: Final = 775
|
|
1409
|
+
WM_DRAWCLIPBOARD: Final = 776
|
|
1410
|
+
WM_PAINTCLIPBOARD: Final = 777
|
|
1411
|
+
WM_VSCROLLCLIPBOARD: Final = 778
|
|
1412
|
+
WM_SIZECLIPBOARD: Final = 779
|
|
1413
|
+
WM_ASKCBFORMATNAME: Final = 780
|
|
1414
|
+
WM_CHANGECBCHAIN: Final = 781
|
|
1415
|
+
WM_HSCROLLCLIPBOARD: Final = 782
|
|
1416
|
+
WM_QUERYNEWPALETTE: Final = 783
|
|
1417
|
+
WM_PALETTEISCHANGING: Final = 784
|
|
1418
|
+
WM_PALETTECHANGED: Final = 785
|
|
1419
|
+
WM_HOTKEY: Final = 786
|
|
1420
|
+
WM_PRINT: Final = 791
|
|
1421
|
+
WM_HANDHELDFIRST: Final = 856
|
|
1422
|
+
WM_HANDHELDLAST: Final = 863
|
|
1423
|
+
WM_AFXFIRST: Final = 864
|
|
1424
|
+
WM_AFXLAST: Final = 895
|
|
1425
|
+
WM_PENWINFIRST: Final = 896
|
|
1426
|
+
WM_PENWINLAST: Final = 911
|
|
1427
|
+
WM_APP: Final = 32768
|
|
1428
|
+
WMSZ_LEFT: Final = 1
|
|
1429
|
+
WMSZ_RIGHT: Final = 2
|
|
1430
|
+
WMSZ_TOP: Final = 3
|
|
1431
|
+
WMSZ_TOPLEFT: Final = 4
|
|
1432
|
+
WMSZ_TOPRIGHT: Final = 5
|
|
1433
|
+
WMSZ_BOTTOM: Final = 6
|
|
1434
|
+
WMSZ_BOTTOMLEFT: Final = 7
|
|
1435
|
+
WMSZ_BOTTOMRIGHT: Final = 8
|
|
1436
|
+
|
|
1437
|
+
HTERROR: Final = -2
|
|
1438
|
+
HTTRANSPARENT: Final = -1
|
|
1439
|
+
HTNOWHERE: Final = 0
|
|
1440
|
+
HTCLIENT: Final = 1
|
|
1441
|
+
HTCAPTION: Final = 2
|
|
1442
|
+
HTSYSMENU: Final = 3
|
|
1443
|
+
HTGROWBOX: Final = 4
|
|
1444
|
+
HTSIZE: Final = HTGROWBOX
|
|
1445
|
+
HTMENU: Final = 5
|
|
1446
|
+
HTHSCROLL: Final = 6
|
|
1447
|
+
HTVSCROLL: Final = 7
|
|
1448
|
+
HTMINBUTTON: Final = 8
|
|
1449
|
+
HTMAXBUTTON: Final = 9
|
|
1450
|
+
HTLEFT: Final = 10
|
|
1451
|
+
HTRIGHT: Final = 11
|
|
1452
|
+
HTTOP: Final = 12
|
|
1453
|
+
HTTOPLEFT: Final = 13
|
|
1454
|
+
HTTOPRIGHT: Final = 14
|
|
1455
|
+
HTBOTTOM: Final = 15
|
|
1456
|
+
HTBOTTOMLEFT: Final = 16
|
|
1457
|
+
HTBOTTOMRIGHT: Final = 17
|
|
1458
|
+
HTBORDER: Final = 18
|
|
1459
|
+
HTREDUCE: Final = HTMINBUTTON
|
|
1460
|
+
HTZOOM: Final = HTMAXBUTTON
|
|
1461
|
+
HTSIZEFIRST: Final = HTLEFT
|
|
1462
|
+
HTSIZELAST: Final = HTBOTTOMRIGHT
|
|
1463
|
+
HTOBJECT: Final = 19
|
|
1464
|
+
HTCLOSE: Final = 20
|
|
1465
|
+
HTHELP: Final = 21
|
|
1466
|
+
SMTO_NORMAL: Final = 0
|
|
1467
|
+
SMTO_BLOCK: Final = 1
|
|
1468
|
+
SMTO_ABORTIFHUNG: Final = 2
|
|
1469
|
+
SMTO_NOTIMEOUTIFNOTHUNG: Final = 8
|
|
1470
|
+
MA_ACTIVATE: Final = 1
|
|
1471
|
+
MA_ACTIVATEANDEAT: Final = 2
|
|
1472
|
+
MA_NOACTIVATE: Final = 3
|
|
1473
|
+
MA_NOACTIVATEANDEAT: Final = 4
|
|
1474
|
+
ICON_SMALL: Final = 0
|
|
1475
|
+
ICON_BIG: Final = 1
|
|
1476
|
+
SIZE_RESTORED: Final = 0
|
|
1477
|
+
SIZE_MINIMIZED: Final = 1
|
|
1478
|
+
SIZE_MAXIMIZED: Final = 2
|
|
1479
|
+
SIZE_MAXSHOW: Final = 3
|
|
1480
|
+
SIZE_MAXHIDE: Final = 4
|
|
1481
|
+
SIZENORMAL: Final = SIZE_RESTORED
|
|
1482
|
+
SIZEICONIC: Final = SIZE_MINIMIZED
|
|
1483
|
+
SIZEFULLSCREEN: Final = SIZE_MAXIMIZED
|
|
1484
|
+
SIZEZOOMSHOW: Final = SIZE_MAXSHOW
|
|
1485
|
+
SIZEZOOMHIDE: Final = SIZE_MAXHIDE
|
|
1486
|
+
WVR_ALIGNTOP: Final = 16
|
|
1487
|
+
WVR_ALIGNLEFT: Final = 32
|
|
1488
|
+
WVR_ALIGNBOTTOM: Final = 64
|
|
1489
|
+
WVR_ALIGNRIGHT: Final = 128
|
|
1490
|
+
WVR_HREDRAW: Final = 256
|
|
1491
|
+
WVR_VREDRAW: Final = 512
|
|
1492
|
+
WVR_REDRAW: Final[int]
|
|
1493
|
+
WVR_VALIDRECTS: Final = 1024
|
|
1494
|
+
MK_LBUTTON: Final = 1
|
|
1495
|
+
MK_RBUTTON: Final = 2
|
|
1496
|
+
MK_SHIFT: Final = 4
|
|
1497
|
+
MK_CONTROL: Final = 8
|
|
1498
|
+
MK_MBUTTON: Final = 16
|
|
1499
|
+
TME_HOVER: Final = 1
|
|
1500
|
+
TME_LEAVE: Final = 2
|
|
1501
|
+
TME_QUERY: Final = 1073741824
|
|
1502
|
+
TME_CANCEL: Final = -2147483648
|
|
1503
|
+
HOVER_DEFAULT: Final = -1
|
|
1504
|
+
WS_OVERLAPPED: Final = 0
|
|
1505
|
+
WS_POPUP: Final = -2147483648
|
|
1506
|
+
WS_CHILD: Final = 1073741824
|
|
1507
|
+
WS_MINIMIZE: Final = 536870912
|
|
1508
|
+
WS_VISIBLE: Final = 268435456
|
|
1509
|
+
WS_DISABLED: Final = 134217728
|
|
1510
|
+
WS_CLIPSIBLINGS: Final = 67108864
|
|
1511
|
+
WS_CLIPCHILDREN: Final = 33554432
|
|
1512
|
+
WS_MAXIMIZE: Final = 16777216
|
|
1513
|
+
WS_CAPTION: Final = 12582912
|
|
1514
|
+
WS_BORDER: Final = 8388608
|
|
1515
|
+
WS_DLGFRAME: Final = 4194304
|
|
1516
|
+
WS_VSCROLL: Final = 2097152
|
|
1517
|
+
WS_HSCROLL: Final = 1048576
|
|
1518
|
+
WS_SYSMENU: Final = 524288
|
|
1519
|
+
WS_THICKFRAME: Final = 262144
|
|
1520
|
+
WS_GROUP: Final = 131072
|
|
1521
|
+
WS_TABSTOP: Final = 65536
|
|
1522
|
+
WS_MINIMIZEBOX: Final = 131072
|
|
1523
|
+
WS_MAXIMIZEBOX: Final = 65536
|
|
1524
|
+
WS_TILED: Final = WS_OVERLAPPED
|
|
1525
|
+
WS_ICONIC: Final = WS_MINIMIZE
|
|
1526
|
+
WS_SIZEBOX: Final = WS_THICKFRAME
|
|
1527
|
+
WS_OVERLAPPEDWINDOW: Final[int]
|
|
1528
|
+
WS_POPUPWINDOW: Final[int]
|
|
1529
|
+
WS_CHILDWINDOW: Final = WS_CHILD
|
|
1530
|
+
WS_TILEDWINDOW: Final = WS_OVERLAPPEDWINDOW
|
|
1531
|
+
WS_EX_DLGMODALFRAME: Final = 1
|
|
1532
|
+
WS_EX_NOPARENTNOTIFY: Final = 4
|
|
1533
|
+
WS_EX_TOPMOST: Final = 8
|
|
1534
|
+
WS_EX_ACCEPTFILES: Final = 16
|
|
1535
|
+
WS_EX_TRANSPARENT: Final = 32
|
|
1536
|
+
WS_EX_MDICHILD: Final = 64
|
|
1537
|
+
WS_EX_TOOLWINDOW: Final = 128
|
|
1538
|
+
WS_EX_WINDOWEDGE: Final = 256
|
|
1539
|
+
WS_EX_CLIENTEDGE: Final = 512
|
|
1540
|
+
WS_EX_CONTEXTHELP: Final = 1024
|
|
1541
|
+
WS_EX_RIGHT: Final = 4096
|
|
1542
|
+
WS_EX_LEFT: Final = 0
|
|
1543
|
+
WS_EX_RTLREADING: Final = 8192
|
|
1544
|
+
WS_EX_LTRREADING: Final = 0
|
|
1545
|
+
WS_EX_LEFTSCROLLBAR: Final = 16384
|
|
1546
|
+
WS_EX_RIGHTSCROLLBAR: Final = 0
|
|
1547
|
+
WS_EX_CONTROLPARENT: Final = 65536
|
|
1548
|
+
WS_EX_STATICEDGE: Final = 131072
|
|
1549
|
+
WS_EX_APPWINDOW: Final = 262144
|
|
1550
|
+
WS_EX_OVERLAPPEDWINDOW: Final[int]
|
|
1551
|
+
WS_EX_PALETTEWINDOW: Final[int]
|
|
1552
|
+
WS_EX_LAYERED: Final = 0x00080000
|
|
1553
|
+
WS_EX_NOINHERITLAYOUT: Final = 0x00100000
|
|
1554
|
+
WS_EX_LAYOUTRTL: Final = 0x00400000
|
|
1555
|
+
WS_EX_COMPOSITED: Final = 0x02000000
|
|
1556
|
+
WS_EX_NOACTIVATE: Final = 0x08000000
|
|
1557
|
+
|
|
1558
|
+
CS_VREDRAW: Final = 1
|
|
1559
|
+
CS_HREDRAW: Final = 2
|
|
1560
|
+
|
|
1561
|
+
CS_DBLCLKS: Final = 8
|
|
1562
|
+
CS_OWNDC: Final = 32
|
|
1563
|
+
CS_CLASSDC: Final = 64
|
|
1564
|
+
CS_PARENTDC: Final = 128
|
|
1565
|
+
|
|
1566
|
+
CS_NOCLOSE: Final = 512
|
|
1567
|
+
CS_SAVEBITS: Final = 2048
|
|
1568
|
+
CS_BYTEALIGNCLIENT: Final = 4096
|
|
1569
|
+
CS_BYTEALIGNWINDOW: Final = 8192
|
|
1570
|
+
CS_GLOBALCLASS: Final = 16384
|
|
1571
|
+
CS_IME: Final = 65536
|
|
1572
|
+
PRF_CHECKVISIBLE: Final = 1
|
|
1573
|
+
PRF_NONCLIENT: Final = 2
|
|
1574
|
+
PRF_CLIENT: Final = 4
|
|
1575
|
+
PRF_ERASEBKGND: Final = 8
|
|
1576
|
+
PRF_CHILDREN: Final = 16
|
|
1577
|
+
PRF_OWNED: Final = 32
|
|
1578
|
+
BDR_RAISEDOUTER: Final = 1
|
|
1579
|
+
BDR_SUNKENOUTER: Final = 2
|
|
1580
|
+
BDR_RAISEDINNER: Final = 4
|
|
1581
|
+
BDR_SUNKENINNER: Final = 8
|
|
1582
|
+
BDR_OUTER: Final = 3
|
|
1583
|
+
BDR_INNER: Final = 12
|
|
1584
|
+
|
|
1585
|
+
EDGE_RAISED: Final[int]
|
|
1586
|
+
EDGE_SUNKEN: Final[int]
|
|
1587
|
+
EDGE_ETCHED: Final[int]
|
|
1588
|
+
EDGE_BUMP: Final[int]
|
|
1589
|
+
|
|
1590
|
+
ISMEX_NOSEND: Final = 0
|
|
1591
|
+
ISMEX_SEND: Final = 1
|
|
1592
|
+
ISMEX_NOTIFY: Final = 2
|
|
1593
|
+
ISMEX_CALLBACK: Final = 4
|
|
1594
|
+
ISMEX_REPLIED: Final = 8
|
|
1595
|
+
CW_USEDEFAULT: Final = -2147483648
|
|
1596
|
+
FLASHW_STOP: Final = 0
|
|
1597
|
+
FLASHW_CAPTION: Final = 1
|
|
1598
|
+
FLASHW_TRAY: Final = 2
|
|
1599
|
+
FLASHW_ALL: Final[int]
|
|
1600
|
+
FLASHW_TIMER: Final = 4
|
|
1601
|
+
FLASHW_TIMERNOFG: Final = 12
|
|
1602
|
+
|
|
1603
|
+
DS_ABSALIGN: Final = 1
|
|
1604
|
+
DS_SYSMODAL: Final = 2
|
|
1605
|
+
DS_LOCALEDIT: Final = 32
|
|
1606
|
+
DS_SETFONT: Final = 64
|
|
1607
|
+
DS_MODALFRAME: Final = 128
|
|
1608
|
+
DS_NOIDLEMSG: Final = 256
|
|
1609
|
+
DS_SETFOREGROUND: Final = 512
|
|
1610
|
+
DS_3DLOOK: Final = 4
|
|
1611
|
+
DS_FIXEDSYS: Final = 8
|
|
1612
|
+
DS_NOFAILCREATE: Final = 16
|
|
1613
|
+
DS_CONTROL: Final = 1024
|
|
1614
|
+
DS_CENTER: Final = 2048
|
|
1615
|
+
DS_CENTERMOUSE: Final = 4096
|
|
1616
|
+
DS_CONTEXTHELP: Final = 8192
|
|
1617
|
+
DM_GETDEFID: Final[int]
|
|
1618
|
+
DM_SETDEFID: Final[int]
|
|
1619
|
+
DM_REPOSITION: Final[int]
|
|
1620
|
+
|
|
1621
|
+
DC_HASDEFID: Final = 21323
|
|
1622
|
+
DLGC_WANTARROWS: Final = 1
|
|
1623
|
+
DLGC_WANTTAB: Final = 2
|
|
1624
|
+
DLGC_WANTALLKEYS: Final = 4
|
|
1625
|
+
DLGC_WANTMESSAGE: Final = 4
|
|
1626
|
+
DLGC_HASSETSEL: Final = 8
|
|
1627
|
+
DLGC_DEFPUSHBUTTON: Final = 16
|
|
1628
|
+
DLGC_UNDEFPUSHBUTTON: Final = 32
|
|
1629
|
+
DLGC_RADIOBUTTON: Final = 64
|
|
1630
|
+
DLGC_WANTCHARS: Final = 128
|
|
1631
|
+
DLGC_STATIC: Final = 256
|
|
1632
|
+
DLGC_BUTTON: Final = 8192
|
|
1633
|
+
LB_CTLCODE: Final = 0
|
|
1634
|
+
LB_OKAY: Final = 0
|
|
1635
|
+
LB_ERR: Final = -1
|
|
1636
|
+
LB_ERRSPACE: Final = -2
|
|
1637
|
+
LBN_ERRSPACE: Final = -2
|
|
1638
|
+
LBN_SELCHANGE: Final = 1
|
|
1639
|
+
LBN_DBLCLK: Final = 2
|
|
1640
|
+
LBN_SELCANCEL: Final = 3
|
|
1641
|
+
LBN_SETFOCUS: Final = 4
|
|
1642
|
+
LBN_KILLFOCUS: Final = 5
|
|
1643
|
+
LB_ADDSTRING: Final = 384
|
|
1644
|
+
LB_INSERTSTRING: Final = 385
|
|
1645
|
+
LB_DELETESTRING: Final = 386
|
|
1646
|
+
LB_SELITEMRANGEEX: Final = 387
|
|
1647
|
+
LB_RESETCONTENT: Final = 388
|
|
1648
|
+
LB_SETSEL: Final = 389
|
|
1649
|
+
LB_SETCURSEL: Final = 390
|
|
1650
|
+
LB_GETSEL: Final = 391
|
|
1651
|
+
LB_GETCURSEL: Final = 392
|
|
1652
|
+
LB_GETTEXT: Final = 393
|
|
1653
|
+
LB_GETTEXTLEN: Final = 394
|
|
1654
|
+
LB_GETCOUNT: Final = 395
|
|
1655
|
+
LB_SELECTSTRING: Final = 396
|
|
1656
|
+
LB_DIR: Final = 397
|
|
1657
|
+
LB_GETTOPINDEX: Final = 398
|
|
1658
|
+
LB_FINDSTRING: Final = 399
|
|
1659
|
+
LB_GETSELCOUNT: Final = 400
|
|
1660
|
+
LB_GETSELITEMS: Final = 401
|
|
1661
|
+
LB_SETTABSTOPS: Final = 402
|
|
1662
|
+
LB_GETHORIZONTALEXTENT: Final = 403
|
|
1663
|
+
LB_SETHORIZONTALEXTENT: Final = 404
|
|
1664
|
+
LB_SETCOLUMNWIDTH: Final = 405
|
|
1665
|
+
LB_ADDFILE: Final = 406
|
|
1666
|
+
LB_SETTOPINDEX: Final = 407
|
|
1667
|
+
LB_GETITEMRECT: Final = 408
|
|
1668
|
+
LB_GETITEMDATA: Final = 409
|
|
1669
|
+
LB_SETITEMDATA: Final = 410
|
|
1670
|
+
LB_SELITEMRANGE: Final = 411
|
|
1671
|
+
LB_SETANCHORINDEX: Final = 412
|
|
1672
|
+
LB_GETANCHORINDEX: Final = 413
|
|
1673
|
+
LB_SETCARETINDEX: Final = 414
|
|
1674
|
+
LB_GETCARETINDEX: Final = 415
|
|
1675
|
+
LB_SETITEMHEIGHT: Final = 416
|
|
1676
|
+
LB_GETITEMHEIGHT: Final = 417
|
|
1677
|
+
LB_FINDSTRINGEXACT: Final = 418
|
|
1678
|
+
LB_SETLOCALE: Final = 421
|
|
1679
|
+
LB_GETLOCALE: Final = 422
|
|
1680
|
+
LB_SETCOUNT: Final = 423
|
|
1681
|
+
LB_INITSTORAGE: Final = 424
|
|
1682
|
+
LB_ITEMFROMPOINT: Final = 425
|
|
1683
|
+
LB_MSGMAX: Final = 432
|
|
1684
|
+
LBS_NOTIFY: Final = 1
|
|
1685
|
+
LBS_SORT: Final = 2
|
|
1686
|
+
LBS_NOREDRAW: Final = 4
|
|
1687
|
+
LBS_MULTIPLESEL: Final = 8
|
|
1688
|
+
LBS_OWNERDRAWFIXED: Final = 16
|
|
1689
|
+
LBS_OWNERDRAWVARIABLE: Final = 32
|
|
1690
|
+
LBS_HASSTRINGS: Final = 64
|
|
1691
|
+
LBS_USETABSTOPS: Final = 128
|
|
1692
|
+
LBS_NOINTEGRALHEIGHT: Final = 256
|
|
1693
|
+
LBS_MULTICOLUMN: Final = 512
|
|
1694
|
+
LBS_WANTKEYBOARDINPUT: Final = 1024
|
|
1695
|
+
LBS_EXTENDEDSEL: Final = 2048
|
|
1696
|
+
LBS_DISABLENOSCROLL: Final = 4096
|
|
1697
|
+
LBS_NODATA: Final = 8192
|
|
1698
|
+
LBS_NOSEL: Final = 16384
|
|
1699
|
+
LBS_STANDARD: Final[int]
|
|
1700
|
+
CB_OKAY: Final = 0
|
|
1701
|
+
CB_ERR: Final = -1
|
|
1702
|
+
CB_ERRSPACE: Final = -2
|
|
1703
|
+
CBN_ERRSPACE: Final = -1
|
|
1704
|
+
CBN_SELCHANGE: Final = 1
|
|
1705
|
+
CBN_DBLCLK: Final = 2
|
|
1706
|
+
CBN_SETFOCUS: Final = 3
|
|
1707
|
+
CBN_KILLFOCUS: Final = 4
|
|
1708
|
+
CBN_EDITCHANGE: Final = 5
|
|
1709
|
+
CBN_EDITUPDATE: Final = 6
|
|
1710
|
+
CBN_DROPDOWN: Final = 7
|
|
1711
|
+
CBN_CLOSEUP: Final = 8
|
|
1712
|
+
CBN_SELENDOK: Final = 9
|
|
1713
|
+
CBN_SELENDCANCEL: Final = 10
|
|
1714
|
+
CBS_SIMPLE: Final = 1
|
|
1715
|
+
CBS_DROPDOWN: Final = 2
|
|
1716
|
+
CBS_DROPDOWNLIST: Final = 3
|
|
1717
|
+
CBS_OWNERDRAWFIXED: Final = 16
|
|
1718
|
+
CBS_OWNERDRAWVARIABLE: Final = 32
|
|
1719
|
+
CBS_AUTOHSCROLL: Final = 64
|
|
1720
|
+
CBS_OEMCONVERT: Final = 128
|
|
1721
|
+
CBS_SORT: Final = 256
|
|
1722
|
+
CBS_HASSTRINGS: Final = 512
|
|
1723
|
+
CBS_NOINTEGRALHEIGHT: Final = 1024
|
|
1724
|
+
CBS_DISABLENOSCROLL: Final = 2048
|
|
1725
|
+
CBS_UPPERCASE: Final = 8192
|
|
1726
|
+
CBS_LOWERCASE: Final = 16384
|
|
1727
|
+
CB_GETEDITSEL: Final = 320
|
|
1728
|
+
CB_LIMITTEXT: Final = 321
|
|
1729
|
+
CB_SETEDITSEL: Final = 322
|
|
1730
|
+
CB_ADDSTRING: Final = 323
|
|
1731
|
+
CB_DELETESTRING: Final = 324
|
|
1732
|
+
CB_DIR: Final = 325
|
|
1733
|
+
CB_GETCOUNT: Final = 326
|
|
1734
|
+
CB_GETCURSEL: Final = 327
|
|
1735
|
+
CB_GETLBTEXT: Final = 328
|
|
1736
|
+
CB_GETLBTEXTLEN: Final = 329
|
|
1737
|
+
CB_INSERTSTRING: Final = 330
|
|
1738
|
+
CB_RESETCONTENT: Final = 331
|
|
1739
|
+
CB_FINDSTRING: Final = 332
|
|
1740
|
+
CB_SELECTSTRING: Final = 333
|
|
1741
|
+
CB_SETCURSEL: Final = 334
|
|
1742
|
+
CB_SHOWDROPDOWN: Final = 335
|
|
1743
|
+
CB_GETITEMDATA: Final = 336
|
|
1744
|
+
CB_SETITEMDATA: Final = 337
|
|
1745
|
+
CB_GETDROPPEDCONTROLRECT: Final = 338
|
|
1746
|
+
CB_SETITEMHEIGHT: Final = 339
|
|
1747
|
+
CB_GETITEMHEIGHT: Final = 340
|
|
1748
|
+
CB_SETEXTENDEDUI: Final = 341
|
|
1749
|
+
CB_GETEXTENDEDUI: Final = 342
|
|
1750
|
+
CB_GETDROPPEDSTATE: Final = 343
|
|
1751
|
+
CB_FINDSTRINGEXACT: Final = 344
|
|
1752
|
+
CB_SETLOCALE: Final = 345
|
|
1753
|
+
CB_GETLOCALE: Final = 346
|
|
1754
|
+
CB_GETTOPINDEX: Final = 347
|
|
1755
|
+
CB_SETTOPINDEX: Final = 348
|
|
1756
|
+
CB_GETHORIZONTALEXTENT: Final = 349
|
|
1757
|
+
CB_SETHORIZONTALEXTENT: Final = 350
|
|
1758
|
+
CB_GETDROPPEDWIDTH: Final = 351
|
|
1759
|
+
CB_SETDROPPEDWIDTH: Final = 352
|
|
1760
|
+
CB_INITSTORAGE: Final = 353
|
|
1761
|
+
CB_MSGMAX: Final = 354
|
|
1762
|
+
SBS_HORZ: Final = 0
|
|
1763
|
+
SBS_VERT: Final = 1
|
|
1764
|
+
SBS_TOPALIGN: Final = 2
|
|
1765
|
+
SBS_LEFTALIGN: Final = 2
|
|
1766
|
+
SBS_BOTTOMALIGN: Final = 4
|
|
1767
|
+
SBS_RIGHTALIGN: Final = 4
|
|
1768
|
+
SBS_SIZEBOXTOPLEFTALIGN: Final = 2
|
|
1769
|
+
SBS_SIZEBOXBOTTOMRIGHTALIGN: Final = 4
|
|
1770
|
+
SBS_SIZEBOX: Final = 8
|
|
1771
|
+
SBS_SIZEGRIP: Final = 16
|
|
1772
|
+
SBM_SETPOS: Final = 224
|
|
1773
|
+
SBM_GETPOS: Final = 225
|
|
1774
|
+
SBM_SETRANGE: Final = 226
|
|
1775
|
+
SBM_SETRANGEREDRAW: Final = 230
|
|
1776
|
+
SBM_GETRANGE: Final = 227
|
|
1777
|
+
SBM_ENABLE_ARROWS: Final = 228
|
|
1778
|
+
SBM_SETSCROLLINFO: Final = 233
|
|
1779
|
+
SBM_GETSCROLLINFO: Final = 234
|
|
1780
|
+
SIF_RANGE: Final = 1
|
|
1781
|
+
SIF_PAGE: Final = 2
|
|
1782
|
+
SIF_POS: Final = 4
|
|
1783
|
+
SIF_DISABLENOSCROLL: Final = 8
|
|
1784
|
+
SIF_TRACKPOS: Final = 16
|
|
1785
|
+
SIF_ALL: Final[int]
|
|
1786
|
+
MDIS_ALLCHILDSTYLES: Final = 1
|
|
1787
|
+
MDITILE_VERTICAL: Final = 0
|
|
1788
|
+
MDITILE_HORIZONTAL: Final = 1
|
|
1789
|
+
MDITILE_SKIPDISABLED: Final = 2
|
|
1790
|
+
MDITILE_ZORDER: Final = 4
|
|
1791
|
+
|
|
1792
|
+
IMC_GETCANDIDATEPOS: Final = 7
|
|
1793
|
+
IMC_SETCANDIDATEPOS: Final = 8
|
|
1794
|
+
IMC_GETCOMPOSITIONFONT: Final = 9
|
|
1795
|
+
IMC_SETCOMPOSITIONFONT: Final = 10
|
|
1796
|
+
IMC_GETCOMPOSITIONWINDOW: Final = 11
|
|
1797
|
+
IMC_SETCOMPOSITIONWINDOW: Final = 12
|
|
1798
|
+
IMC_GETSTATUSWINDOWPOS: Final = 15
|
|
1799
|
+
IMC_SETSTATUSWINDOWPOS: Final = 16
|
|
1800
|
+
IMC_CLOSESTATUSWINDOW: Final = 33
|
|
1801
|
+
IMC_OPENSTATUSWINDOW: Final = 34
|
|
1802
|
+
|
|
1803
|
+
DELETE: Final = 65536
|
|
1804
|
+
READ_CONTROL: Final = 131072
|
|
1805
|
+
WRITE_DAC: Final = 262144
|
|
1806
|
+
WRITE_OWNER: Final = 524288
|
|
1807
|
+
SYNCHRONIZE: Final = 1048576
|
|
1808
|
+
STANDARD_RIGHTS_REQUIRED: Final = 983040
|
|
1809
|
+
STANDARD_RIGHTS_READ: Final = READ_CONTROL
|
|
1810
|
+
STANDARD_RIGHTS_WRITE: Final = READ_CONTROL
|
|
1811
|
+
STANDARD_RIGHTS_EXECUTE: Final = READ_CONTROL
|
|
1812
|
+
STANDARD_RIGHTS_ALL: Final = 2031616
|
|
1813
|
+
SPECIFIC_RIGHTS_ALL: Final = 65535
|
|
1814
|
+
ACCESS_SYSTEM_SECURITY: Final = 16777216
|
|
1815
|
+
MAXIMUM_ALLOWED: Final = 33554432
|
|
1816
|
+
GENERIC_READ: Final = -2147483648
|
|
1817
|
+
GENERIC_WRITE: Final = 1073741824
|
|
1818
|
+
GENERIC_EXECUTE: Final = 536870912
|
|
1819
|
+
GENERIC_ALL: Final = 268435456
|
|
1820
|
+
|
|
1821
|
+
SERVICE_KERNEL_DRIVER: Final = 1
|
|
1822
|
+
SERVICE_FILE_SYSTEM_DRIVER: Final = 2
|
|
1823
|
+
SERVICE_ADAPTER: Final = 4
|
|
1824
|
+
SERVICE_RECOGNIZER_DRIVER: Final = 8
|
|
1825
|
+
SERVICE_DRIVER: Final[int]
|
|
1826
|
+
SERVICE_WIN32_OWN_PROCESS: Final = 16
|
|
1827
|
+
SERVICE_WIN32_SHARE_PROCESS: Final = 32
|
|
1828
|
+
SERVICE_WIN32: Final[int]
|
|
1829
|
+
SERVICE_INTERACTIVE_PROCESS: Final = 256
|
|
1830
|
+
SERVICE_TYPE_ALL: Final[int]
|
|
1831
|
+
SERVICE_BOOT_START: Final = 0
|
|
1832
|
+
SERVICE_SYSTEM_START: Final = 1
|
|
1833
|
+
SERVICE_AUTO_START: Final = 2
|
|
1834
|
+
SERVICE_DEMAND_START: Final = 3
|
|
1835
|
+
SERVICE_DISABLED: Final = 4
|
|
1836
|
+
SERVICE_ERROR_IGNORE: Final = 0
|
|
1837
|
+
SERVICE_ERROR_NORMAL: Final = 1
|
|
1838
|
+
SERVICE_ERROR_SEVERE: Final = 2
|
|
1839
|
+
SERVICE_ERROR_CRITICAL: Final = 3
|
|
1840
|
+
TAPE_ERASE_SHORT: Final = 0
|
|
1841
|
+
TAPE_ERASE_LONG: Final = 1
|
|
1842
|
+
TAPE_LOAD: Final = 0
|
|
1843
|
+
TAPE_UNLOAD: Final = 1
|
|
1844
|
+
TAPE_TENSION: Final = 2
|
|
1845
|
+
TAPE_LOCK: Final = 3
|
|
1846
|
+
TAPE_UNLOCK: Final = 4
|
|
1847
|
+
TAPE_FORMAT: Final = 5
|
|
1848
|
+
TAPE_SETMARKS: Final = 0
|
|
1849
|
+
TAPE_FILEMARKS: Final = 1
|
|
1850
|
+
TAPE_SHORT_FILEMARKS: Final = 2
|
|
1851
|
+
TAPE_LONG_FILEMARKS: Final = 3
|
|
1852
|
+
TAPE_ABSOLUTE_POSITION: Final = 0
|
|
1853
|
+
TAPE_LOGICAL_POSITION: Final = 1
|
|
1854
|
+
TAPE_PSEUDO_LOGICAL_POSITION: Final = 2
|
|
1855
|
+
TAPE_REWIND: Final = 0
|
|
1856
|
+
TAPE_ABSOLUTE_BLOCK: Final = 1
|
|
1857
|
+
TAPE_LOGICAL_BLOCK: Final = 2
|
|
1858
|
+
TAPE_PSEUDO_LOGICAL_BLOCK: Final = 3
|
|
1859
|
+
TAPE_SPACE_END_OF_DATA: Final = 4
|
|
1860
|
+
TAPE_SPACE_RELATIVE_BLOCKS: Final = 5
|
|
1861
|
+
TAPE_SPACE_FILEMARKS: Final = 6
|
|
1862
|
+
TAPE_SPACE_SEQUENTIAL_FMKS: Final = 7
|
|
1863
|
+
TAPE_SPACE_SETMARKS: Final = 8
|
|
1864
|
+
TAPE_SPACE_SEQUENTIAL_SMKS: Final = 9
|
|
1865
|
+
TAPE_DRIVE_FIXED: Final = 1
|
|
1866
|
+
TAPE_DRIVE_SELECT: Final = 2
|
|
1867
|
+
TAPE_DRIVE_INITIATOR: Final = 4
|
|
1868
|
+
TAPE_DRIVE_ERASE_SHORT: Final = 16
|
|
1869
|
+
TAPE_DRIVE_ERASE_LONG: Final = 32
|
|
1870
|
+
TAPE_DRIVE_ERASE_BOP_ONLY: Final = 64
|
|
1871
|
+
TAPE_DRIVE_ERASE_IMMEDIATE: Final = 128
|
|
1872
|
+
TAPE_DRIVE_TAPE_CAPACITY: Final = 256
|
|
1873
|
+
TAPE_DRIVE_TAPE_REMAINING: Final = 512
|
|
1874
|
+
TAPE_DRIVE_FIXED_BLOCK: Final = 1024
|
|
1875
|
+
TAPE_DRIVE_VARIABLE_BLOCK: Final = 2048
|
|
1876
|
+
TAPE_DRIVE_WRITE_PROTECT: Final = 4096
|
|
1877
|
+
TAPE_DRIVE_EOT_WZ_SIZE: Final = 8192
|
|
1878
|
+
TAPE_DRIVE_ECC: Final = 65536
|
|
1879
|
+
TAPE_DRIVE_COMPRESSION: Final = 131072
|
|
1880
|
+
TAPE_DRIVE_PADDING: Final = 262144
|
|
1881
|
+
TAPE_DRIVE_REPORT_SMKS: Final = 524288
|
|
1882
|
+
TAPE_DRIVE_GET_ABSOLUTE_BLK: Final = 1048576
|
|
1883
|
+
TAPE_DRIVE_GET_LOGICAL_BLK: Final = 2097152
|
|
1884
|
+
TAPE_DRIVE_SET_EOT_WZ_SIZE: Final = 4194304
|
|
1885
|
+
TAPE_DRIVE_LOAD_UNLOAD: Final = -2147483647
|
|
1886
|
+
TAPE_DRIVE_TENSION: Final = -2147483646
|
|
1887
|
+
TAPE_DRIVE_LOCK_UNLOCK: Final = -2147483644
|
|
1888
|
+
TAPE_DRIVE_REWIND_IMMEDIATE: Final = -2147483640
|
|
1889
|
+
TAPE_DRIVE_SET_BLOCK_SIZE: Final = -2147483632
|
|
1890
|
+
TAPE_DRIVE_LOAD_UNLD_IMMED: Final = -2147483616
|
|
1891
|
+
TAPE_DRIVE_TENSION_IMMED: Final = -2147483584
|
|
1892
|
+
TAPE_DRIVE_LOCK_UNLK_IMMED: Final = -2147483520
|
|
1893
|
+
TAPE_DRIVE_SET_ECC: Final = -2147483392
|
|
1894
|
+
TAPE_DRIVE_SET_COMPRESSION: Final = -2147483136
|
|
1895
|
+
TAPE_DRIVE_SET_PADDING: Final = -2147482624
|
|
1896
|
+
TAPE_DRIVE_SET_REPORT_SMKS: Final = -2147481600
|
|
1897
|
+
TAPE_DRIVE_ABSOLUTE_BLK: Final = -2147479552
|
|
1898
|
+
TAPE_DRIVE_ABS_BLK_IMMED: Final = -2147475456
|
|
1899
|
+
TAPE_DRIVE_LOGICAL_BLK: Final = -2147467264
|
|
1900
|
+
TAPE_DRIVE_LOG_BLK_IMMED: Final = -2147450880
|
|
1901
|
+
TAPE_DRIVE_END_OF_DATA: Final = -2147418112
|
|
1902
|
+
TAPE_DRIVE_RELATIVE_BLKS: Final = -2147352576
|
|
1903
|
+
TAPE_DRIVE_FILEMARKS: Final = -2147221504
|
|
1904
|
+
TAPE_DRIVE_SEQUENTIAL_FMKS: Final = -2146959360
|
|
1905
|
+
TAPE_DRIVE_SETMARKS: Final = -2146435072
|
|
1906
|
+
TAPE_DRIVE_SEQUENTIAL_SMKS: Final = -2145386496
|
|
1907
|
+
TAPE_DRIVE_REVERSE_POSITION: Final = -2143289344
|
|
1908
|
+
TAPE_DRIVE_SPACE_IMMEDIATE: Final = -2139095040
|
|
1909
|
+
TAPE_DRIVE_WRITE_SETMARKS: Final = -2130706432
|
|
1910
|
+
TAPE_DRIVE_WRITE_FILEMARKS: Final = -2113929216
|
|
1911
|
+
TAPE_DRIVE_WRITE_SHORT_FMKS: Final = -2080374784
|
|
1912
|
+
TAPE_DRIVE_WRITE_LONG_FMKS: Final = -2013265920
|
|
1913
|
+
TAPE_DRIVE_WRITE_MARK_IMMED: Final = -1879048192
|
|
1914
|
+
TAPE_DRIVE_FORMAT: Final = -1610612736
|
|
1915
|
+
TAPE_DRIVE_FORMAT_IMMEDIATE: Final = -1073741824
|
|
1916
|
+
TAPE_FIXED_PARTITIONS: Final = 0
|
|
1917
|
+
TAPE_SELECT_PARTITIONS: Final = 1
|
|
1918
|
+
TAPE_INITIATOR_PARTITIONS: Final = 2
|
|
1919
|
+
|
|
1920
|
+
APPLICATION_ERROR_MASK: Final = 536870912
|
|
1921
|
+
ERROR_SEVERITY_SUCCESS: Final = 0
|
|
1922
|
+
ERROR_SEVERITY_INFORMATIONAL: Final = 1073741824
|
|
1923
|
+
ERROR_SEVERITY_WARNING: Final = -2147483648
|
|
1924
|
+
ERROR_SEVERITY_ERROR: Final = -1073741824
|
|
1925
|
+
MINCHAR: Final = 128
|
|
1926
|
+
MAXCHAR: Final = 127
|
|
1927
|
+
MINSHORT: Final = 32768
|
|
1928
|
+
MAXSHORT: Final = 32767
|
|
1929
|
+
MINLONG: Final = -2147483648
|
|
1930
|
+
MAXLONG: Final = 2147483647
|
|
1931
|
+
MAXBYTE: Final = 255
|
|
1932
|
+
MAXWORD: Final = 65535
|
|
1933
|
+
MAXDWORD: Final = -1
|
|
1934
|
+
LANG_NEUTRAL: Final = 0
|
|
1935
|
+
LANG_BULGARIAN: Final = 2
|
|
1936
|
+
LANG_CHINESE: Final = 4
|
|
1937
|
+
LANG_CROATIAN: Final = 26
|
|
1938
|
+
LANG_CZECH: Final = 5
|
|
1939
|
+
LANG_DANISH: Final = 6
|
|
1940
|
+
LANG_DUTCH: Final = 19
|
|
1941
|
+
LANG_ENGLISH: Final = 9
|
|
1942
|
+
LANG_FINNISH: Final = 11
|
|
1943
|
+
LANG_FRENCH: Final = 12
|
|
1944
|
+
LANG_GERMAN: Final = 7
|
|
1945
|
+
LANG_GREEK: Final = 8
|
|
1946
|
+
LANG_HUNGARIAN: Final = 14
|
|
1947
|
+
LANG_ICELANDIC: Final = 15
|
|
1948
|
+
LANG_ITALIAN: Final = 16
|
|
1949
|
+
LANG_JAPANESE: Final = 17
|
|
1950
|
+
LANG_KOREAN: Final = 18
|
|
1951
|
+
LANG_NORWEGIAN: Final = 20
|
|
1952
|
+
LANG_POLISH: Final = 21
|
|
1953
|
+
LANG_PORTUGUESE: Final = 22
|
|
1954
|
+
LANG_ROMANIAN: Final = 24
|
|
1955
|
+
LANG_RUSSIAN: Final = 25
|
|
1956
|
+
LANG_SLOVAK: Final = 27
|
|
1957
|
+
LANG_SLOVENIAN: Final = 36
|
|
1958
|
+
LANG_SPANISH: Final = 10
|
|
1959
|
+
LANG_SWEDISH: Final = 29
|
|
1960
|
+
LANG_TURKISH: Final = 31
|
|
1961
|
+
SUBLANG_NEUTRAL: Final = 0
|
|
1962
|
+
SUBLANG_DEFAULT: Final = 1
|
|
1963
|
+
SUBLANG_SYS_DEFAULT: Final = 2
|
|
1964
|
+
SUBLANG_CHINESE_TRADITIONAL: Final = 1
|
|
1965
|
+
SUBLANG_CHINESE_SIMPLIFIED: Final = 2
|
|
1966
|
+
SUBLANG_CHINESE_HONGKONG: Final = 3
|
|
1967
|
+
SUBLANG_CHINESE_SINGAPORE: Final = 4
|
|
1968
|
+
SUBLANG_DUTCH: Final = 1
|
|
1969
|
+
SUBLANG_DUTCH_BELGIAN: Final = 2
|
|
1970
|
+
SUBLANG_ENGLISH_US: Final = 1
|
|
1971
|
+
SUBLANG_ENGLISH_UK: Final = 2
|
|
1972
|
+
SUBLANG_ENGLISH_AUS: Final = 3
|
|
1973
|
+
SUBLANG_ENGLISH_CAN: Final = 4
|
|
1974
|
+
SUBLANG_ENGLISH_NZ: Final = 5
|
|
1975
|
+
SUBLANG_ENGLISH_EIRE: Final = 6
|
|
1976
|
+
SUBLANG_FRENCH: Final = 1
|
|
1977
|
+
SUBLANG_FRENCH_BELGIAN: Final = 2
|
|
1978
|
+
SUBLANG_FRENCH_CANADIAN: Final = 3
|
|
1979
|
+
SUBLANG_FRENCH_SWISS: Final = 4
|
|
1980
|
+
SUBLANG_GERMAN: Final = 1
|
|
1981
|
+
SUBLANG_GERMAN_SWISS: Final = 2
|
|
1982
|
+
SUBLANG_GERMAN_AUSTRIAN: Final = 3
|
|
1983
|
+
SUBLANG_ITALIAN: Final = 1
|
|
1984
|
+
SUBLANG_ITALIAN_SWISS: Final = 2
|
|
1985
|
+
SUBLANG_NORWEGIAN_BOKMAL: Final = 1
|
|
1986
|
+
SUBLANG_NORWEGIAN_NYNORSK: Final = 2
|
|
1987
|
+
SUBLANG_PORTUGUESE: Final = 2
|
|
1988
|
+
SUBLANG_PORTUGUESE_BRAZILIAN: Final = 1
|
|
1989
|
+
SUBLANG_SPANISH: Final = 1
|
|
1990
|
+
SUBLANG_SPANISH_MEXICAN: Final = 2
|
|
1991
|
+
SUBLANG_SPANISH_MODERN: Final = 3
|
|
1992
|
+
SORT_DEFAULT: Final = 0
|
|
1993
|
+
SORT_JAPANESE_XJIS: Final = 0
|
|
1994
|
+
SORT_JAPANESE_UNICODE: Final = 1
|
|
1995
|
+
SORT_CHINESE_BIG5: Final = 0
|
|
1996
|
+
SORT_CHINESE_UNICODE: Final = 1
|
|
1997
|
+
SORT_KOREAN_KSC: Final = 0
|
|
1998
|
+
SORT_KOREAN_UNICODE: Final = 1
|
|
1999
|
+
|
|
2000
|
+
def PRIMARYLANGID(lgid: int) -> int: ...
|
|
2001
|
+
def SUBLANGID(lgid: int) -> int: ...
|
|
2002
|
+
|
|
2003
|
+
NLS_VALID_LOCALE_MASK: Final = 1048575
|
|
2004
|
+
CONTEXT_PORTABLE_32BIT: Final = 1048576
|
|
2005
|
+
CONTEXT_ALPHA: Final = 131072
|
|
2006
|
+
SIZE_OF_80387_REGISTERS: Final = 80
|
|
2007
|
+
CONTEXT_CONTROL: Final = 1
|
|
2008
|
+
CONTEXT_FLOATING_POINT: Final = 2
|
|
2009
|
+
CONTEXT_INTEGER: Final = 4
|
|
2010
|
+
CONTEXT_FULL: Final[int]
|
|
2011
|
+
PROCESS_TERMINATE: Final = 1
|
|
2012
|
+
PROCESS_CREATE_THREAD: Final = 2
|
|
2013
|
+
PROCESS_VM_OPERATION: Final = 8
|
|
2014
|
+
PROCESS_VM_READ: Final = 16
|
|
2015
|
+
PROCESS_VM_WRITE: Final = 32
|
|
2016
|
+
PROCESS_DUP_HANDLE: Final = 64
|
|
2017
|
+
PROCESS_CREATE_PROCESS: Final = 128
|
|
2018
|
+
PROCESS_SET_QUOTA: Final = 256
|
|
2019
|
+
PROCESS_SET_INFORMATION: Final = 512
|
|
2020
|
+
PROCESS_QUERY_INFORMATION: Final = 1024
|
|
2021
|
+
PROCESS_SUSPEND_RESUME: Final = 2048
|
|
2022
|
+
PROCESS_QUERY_LIMITED_INFORMATION: Final = 4096
|
|
2023
|
+
PROCESS_SET_LIMITED_INFORMATION: Final = 8192
|
|
2024
|
+
PROCESS_ALL_ACCESS: Final[int]
|
|
2025
|
+
THREAD_TERMINATE: Final = 1
|
|
2026
|
+
THREAD_SUSPEND_RESUME: Final = 2
|
|
2027
|
+
THREAD_GET_CONTEXT: Final = 8
|
|
2028
|
+
THREAD_SET_CONTEXT: Final = 16
|
|
2029
|
+
THREAD_SET_INFORMATION: Final = 32
|
|
2030
|
+
THREAD_QUERY_INFORMATION: Final = 64
|
|
2031
|
+
THREAD_SET_THREAD_TOKEN: Final = 128
|
|
2032
|
+
THREAD_IMPERSONATE: Final = 256
|
|
2033
|
+
THREAD_DIRECT_IMPERSONATION: Final = 512
|
|
2034
|
+
THREAD_SET_LIMITED_INFORMATION: Final = 1024
|
|
2035
|
+
THREAD_QUERY_LIMITED_INFORMATION: Final = 2048
|
|
2036
|
+
THREAD_RESUME: Final = 4096
|
|
2037
|
+
TLS_MINIMUM_AVAILABLE: Final = 64
|
|
2038
|
+
EVENT_MODIFY_STATE: Final = 2
|
|
2039
|
+
MUTANT_QUERY_STATE: Final = 1
|
|
2040
|
+
SEMAPHORE_MODIFY_STATE: Final = 2
|
|
2041
|
+
TIME_ZONE_ID_UNKNOWN: Final = 0
|
|
2042
|
+
TIME_ZONE_ID_STANDARD: Final = 1
|
|
2043
|
+
TIME_ZONE_ID_DAYLIGHT: Final = 2
|
|
2044
|
+
PROCESSOR_INTEL_386: Final = 386
|
|
2045
|
+
PROCESSOR_INTEL_486: Final = 486
|
|
2046
|
+
PROCESSOR_INTEL_PENTIUM: Final = 586
|
|
2047
|
+
PROCESSOR_INTEL_860: Final = 860
|
|
2048
|
+
PROCESSOR_MIPS_R2000: Final = 2000
|
|
2049
|
+
PROCESSOR_MIPS_R3000: Final = 3000
|
|
2050
|
+
PROCESSOR_MIPS_R4000: Final = 4000
|
|
2051
|
+
PROCESSOR_ALPHA_21064: Final = 21064
|
|
2052
|
+
PROCESSOR_PPC_601: Final = 601
|
|
2053
|
+
PROCESSOR_PPC_603: Final = 603
|
|
2054
|
+
PROCESSOR_PPC_604: Final = 604
|
|
2055
|
+
PROCESSOR_PPC_620: Final = 620
|
|
2056
|
+
SECTION_QUERY: Final = 1
|
|
2057
|
+
SECTION_MAP_WRITE: Final = 2
|
|
2058
|
+
SECTION_MAP_READ: Final = 4
|
|
2059
|
+
SECTION_MAP_EXECUTE: Final = 8
|
|
2060
|
+
SECTION_EXTEND_SIZE: Final = 16
|
|
2061
|
+
PAGE_NOACCESS: Final = 1
|
|
2062
|
+
PAGE_READONLY: Final = 2
|
|
2063
|
+
PAGE_READWRITE: Final = 4
|
|
2064
|
+
PAGE_WRITECOPY: Final = 8
|
|
2065
|
+
PAGE_EXECUTE: Final = 16
|
|
2066
|
+
PAGE_EXECUTE_READ: Final = 32
|
|
2067
|
+
PAGE_EXECUTE_READWRITE: Final = 64
|
|
2068
|
+
PAGE_EXECUTE_WRITECOPY: Final = 128
|
|
2069
|
+
PAGE_GUARD: Final = 256
|
|
2070
|
+
PAGE_NOCACHE: Final = 512
|
|
2071
|
+
MEM_COMMIT: Final = 4096
|
|
2072
|
+
MEM_RESERVE: Final = 8192
|
|
2073
|
+
MEM_DECOMMIT: Final = 16384
|
|
2074
|
+
MEM_RELEASE: Final = 32768
|
|
2075
|
+
MEM_FREE: Final = 65536
|
|
2076
|
+
MEM_PRIVATE: Final = 131072
|
|
2077
|
+
MEM_MAPPED: Final = 262144
|
|
2078
|
+
MEM_TOP_DOWN: Final = 1048576
|
|
2079
|
+
|
|
2080
|
+
SEC_FILE: Final = 8388608
|
|
2081
|
+
SEC_IMAGE: Final = 16777216
|
|
2082
|
+
SEC_RESERVE: Final = 67108864
|
|
2083
|
+
SEC_COMMIT: Final = 134217728
|
|
2084
|
+
SEC_NOCACHE: Final = 268435456
|
|
2085
|
+
MEM_IMAGE: Final = SEC_IMAGE
|
|
2086
|
+
FILE_SHARE_READ: Final = 1
|
|
2087
|
+
FILE_SHARE_WRITE: Final = 2
|
|
2088
|
+
FILE_SHARE_DELETE: Final = 4
|
|
2089
|
+
FILE_ATTRIBUTE_READONLY: Final = 1
|
|
2090
|
+
FILE_ATTRIBUTE_HIDDEN: Final = 2
|
|
2091
|
+
FILE_ATTRIBUTE_SYSTEM: Final = 4
|
|
2092
|
+
FILE_ATTRIBUTE_DIRECTORY: Final = 16
|
|
2093
|
+
FILE_ATTRIBUTE_ARCHIVE: Final = 32
|
|
2094
|
+
FILE_ATTRIBUTE_DEVICE: Final = 64
|
|
2095
|
+
FILE_ATTRIBUTE_NORMAL: Final = 128
|
|
2096
|
+
FILE_ATTRIBUTE_TEMPORARY: Final = 256
|
|
2097
|
+
FILE_ATTRIBUTE_SPARSE_FILE: Final = 512
|
|
2098
|
+
FILE_ATTRIBUTE_REPARSE_POINT: Final = 1024
|
|
2099
|
+
FILE_ATTRIBUTE_COMPRESSED: Final = 2048
|
|
2100
|
+
FILE_ATTRIBUTE_OFFLINE: Final = 4096
|
|
2101
|
+
FILE_ATTRIBUTE_NOT_CONTENT_INDEXED: Final = 8192
|
|
2102
|
+
FILE_ATTRIBUTE_ENCRYPTED: Final = 16384
|
|
2103
|
+
FILE_ATTRIBUTE_VIRTUAL: Final = 65536
|
|
2104
|
+
|
|
2105
|
+
FILE_ATTRIBUTE_ATOMIC_WRITE: Final = 512
|
|
2106
|
+
FILE_ATTRIBUTE_XACTION_WRITE: Final = 1024
|
|
2107
|
+
|
|
2108
|
+
FILE_NOTIFY_CHANGE_FILE_NAME: Final = 1
|
|
2109
|
+
FILE_NOTIFY_CHANGE_DIR_NAME: Final = 2
|
|
2110
|
+
FILE_NOTIFY_CHANGE_ATTRIBUTES: Final = 4
|
|
2111
|
+
FILE_NOTIFY_CHANGE_SIZE: Final = 8
|
|
2112
|
+
FILE_NOTIFY_CHANGE_LAST_WRITE: Final = 16
|
|
2113
|
+
FILE_NOTIFY_CHANGE_SECURITY: Final = 256
|
|
2114
|
+
FILE_CASE_SENSITIVE_SEARCH: Final = 1
|
|
2115
|
+
FILE_CASE_PRESERVED_NAMES: Final = 2
|
|
2116
|
+
FILE_FILE_COMPRESSION: Final = 16
|
|
2117
|
+
FILE_NAMED_STREAMS: Final = 262144
|
|
2118
|
+
FILE_PERSISTENT_ACLS: Final = 0x00000008
|
|
2119
|
+
FILE_READ_ONLY_VOLUME: Final = 0x00080000
|
|
2120
|
+
FILE_SEQUENTIAL_WRITE_ONCE: Final = 0x00100000
|
|
2121
|
+
FILE_SUPPORTS_ENCRYPTION: Final = 0x00020000
|
|
2122
|
+
FILE_SUPPORTS_EXTENDED_ATTRIBUTES: Final = 0x00800000
|
|
2123
|
+
FILE_SUPPORTS_HARD_LINKS: Final = 0x00400000
|
|
2124
|
+
FILE_SUPPORTS_OBJECT_IDS: Final = 0x00010000
|
|
2125
|
+
FILE_SUPPORTS_OPEN_BY_FILE_ID: Final = 0x01000000
|
|
2126
|
+
FILE_SUPPORTS_REPARSE_POINTS: Final = 0x00000080
|
|
2127
|
+
FILE_SUPPORTS_SPARSE_FILES: Final = 0x00000040
|
|
2128
|
+
FILE_SUPPORTS_TRANSACTIONS: Final = 0x00200000
|
|
2129
|
+
FILE_SUPPORTS_USN_JOURNAL: Final = 0x02000000
|
|
2130
|
+
FILE_UNICODE_ON_DISK: Final = 0x00000004
|
|
2131
|
+
FILE_VOLUME_QUOTAS: Final = 0x00000020
|
|
2132
|
+
FILE_VOLUME_IS_COMPRESSED: Final = 32768
|
|
2133
|
+
IO_COMPLETION_MODIFY_STATE: Final = 2
|
|
2134
|
+
DUPLICATE_CLOSE_SOURCE: Final = 1
|
|
2135
|
+
DUPLICATE_SAME_ACCESS: Final = 2
|
|
2136
|
+
SID_MAX_SUB_AUTHORITIES: Final = 15
|
|
2137
|
+
SECURITY_NULL_RID: Final = 0
|
|
2138
|
+
SECURITY_WORLD_RID: Final = 0
|
|
2139
|
+
SECURITY_LOCAL_RID: Final = 0x00000000
|
|
2140
|
+
SECURITY_CREATOR_OWNER_RID: Final = 0
|
|
2141
|
+
SECURITY_CREATOR_GROUP_RID: Final = 1
|
|
2142
|
+
SECURITY_DIALUP_RID: Final = 1
|
|
2143
|
+
SECURITY_NETWORK_RID: Final = 2
|
|
2144
|
+
SECURITY_BATCH_RID: Final = 3
|
|
2145
|
+
SECURITY_INTERACTIVE_RID: Final = 4
|
|
2146
|
+
SECURITY_SERVICE_RID: Final = 6
|
|
2147
|
+
SECURITY_ANONYMOUS_LOGON_RID: Final = 7
|
|
2148
|
+
SECURITY_LOGON_IDS_RID: Final = 5
|
|
2149
|
+
SECURITY_LOGON_IDS_RID_COUNT: Final = 3
|
|
2150
|
+
SECURITY_LOCAL_SYSTEM_RID: Final = 18
|
|
2151
|
+
SECURITY_NT_NON_UNIQUE: Final = 21
|
|
2152
|
+
SECURITY_BUILTIN_DOMAIN_RID: Final = 32
|
|
2153
|
+
DOMAIN_USER_RID_ADMIN: Final = 500
|
|
2154
|
+
DOMAIN_USER_RID_GUEST: Final = 501
|
|
2155
|
+
DOMAIN_GROUP_RID_ADMINS: Final = 512
|
|
2156
|
+
DOMAIN_GROUP_RID_USERS: Final = 513
|
|
2157
|
+
DOMAIN_GROUP_RID_GUESTS: Final = 514
|
|
2158
|
+
DOMAIN_ALIAS_RID_ADMINS: Final = 544
|
|
2159
|
+
DOMAIN_ALIAS_RID_USERS: Final = 545
|
|
2160
|
+
DOMAIN_ALIAS_RID_GUESTS: Final = 546
|
|
2161
|
+
DOMAIN_ALIAS_RID_POWER_USERS: Final = 547
|
|
2162
|
+
DOMAIN_ALIAS_RID_ACCOUNT_OPS: Final = 548
|
|
2163
|
+
DOMAIN_ALIAS_RID_SYSTEM_OPS: Final = 549
|
|
2164
|
+
DOMAIN_ALIAS_RID_PRINT_OPS: Final = 550
|
|
2165
|
+
DOMAIN_ALIAS_RID_BACKUP_OPS: Final = 551
|
|
2166
|
+
DOMAIN_ALIAS_RID_REPLICATOR: Final = 552
|
|
2167
|
+
SE_GROUP_MANDATORY: Final = 1
|
|
2168
|
+
SE_GROUP_ENABLED_BY_DEFAULT: Final = 2
|
|
2169
|
+
SE_GROUP_ENABLED: Final = 4
|
|
2170
|
+
SE_GROUP_OWNER: Final = 8
|
|
2171
|
+
SE_GROUP_LOGON_ID: Final = -1073741824
|
|
2172
|
+
ACL_REVISION: Final = 2
|
|
2173
|
+
ACL_REVISION1: Final = 1
|
|
2174
|
+
ACL_REVISION2: Final = 2
|
|
2175
|
+
ACCESS_ALLOWED_ACE_TYPE: Final = 0
|
|
2176
|
+
ACCESS_DENIED_ACE_TYPE: Final = 1
|
|
2177
|
+
SYSTEM_AUDIT_ACE_TYPE: Final = 2
|
|
2178
|
+
SYSTEM_ALARM_ACE_TYPE: Final = 3
|
|
2179
|
+
OBJECT_INHERIT_ACE: Final = 1
|
|
2180
|
+
CONTAINER_INHERIT_ACE: Final = 2
|
|
2181
|
+
NO_PROPAGATE_INHERIT_ACE: Final = 4
|
|
2182
|
+
INHERIT_ONLY_ACE: Final = 8
|
|
2183
|
+
VALID_INHERIT_FLAGS: Final = 15
|
|
2184
|
+
SUCCESSFUL_ACCESS_ACE_FLAG: Final = 64
|
|
2185
|
+
FAILED_ACCESS_ACE_FLAG: Final = 128
|
|
2186
|
+
SECURITY_DESCRIPTOR_REVISION: Final = 1
|
|
2187
|
+
SECURITY_DESCRIPTOR_REVISION1: Final = 1
|
|
2188
|
+
SECURITY_DESCRIPTOR_MIN_LENGTH: Final = 20
|
|
2189
|
+
SE_OWNER_DEFAULTED: Final = 1
|
|
2190
|
+
SE_GROUP_DEFAULTED: Final = 2
|
|
2191
|
+
SE_DACL_PRESENT: Final = 4
|
|
2192
|
+
SE_DACL_DEFAULTED: Final = 8
|
|
2193
|
+
SE_SACL_PRESENT: Final = 16
|
|
2194
|
+
SE_SACL_DEFAULTED: Final = 32
|
|
2195
|
+
SE_SELF_RELATIVE: Final = 32768
|
|
2196
|
+
SE_PRIVILEGE_ENABLED_BY_DEFAULT: Final = 1
|
|
2197
|
+
SE_PRIVILEGE_ENABLED: Final = 2
|
|
2198
|
+
SE_PRIVILEGE_USED_FOR_ACCESS: Final = -2147483648
|
|
2199
|
+
PRIVILEGE_SET_ALL_NECESSARY: Final = 1
|
|
2200
|
+
SE_CREATE_TOKEN_NAME: Final = "SeCreateTokenPrivilege"
|
|
2201
|
+
SE_ASSIGNPRIMARYTOKEN_NAME: Final = "SeAssignPrimaryTokenPrivilege"
|
|
2202
|
+
SE_LOCK_MEMORY_NAME: Final = "SeLockMemoryPrivilege"
|
|
2203
|
+
SE_INCREASE_QUOTA_NAME: Final = "SeIncreaseQuotaPrivilege"
|
|
2204
|
+
SE_UNSOLICITED_INPUT_NAME: Final = "SeUnsolicitedInputPrivilege"
|
|
2205
|
+
SE_MACHINE_ACCOUNT_NAME: Final = "SeMachineAccountPrivilege"
|
|
2206
|
+
SE_TCB_NAME: Final = "SeTcbPrivilege"
|
|
2207
|
+
SE_SECURITY_NAME: Final = "SeSecurityPrivilege"
|
|
2208
|
+
SE_TAKE_OWNERSHIP_NAME: Final = "SeTakeOwnershipPrivilege"
|
|
2209
|
+
SE_LOAD_DRIVER_NAME: Final = "SeLoadDriverPrivilege"
|
|
2210
|
+
SE_SYSTEM_PROFILE_NAME: Final = "SeSystemProfilePrivilege"
|
|
2211
|
+
SE_SYSTEMTIME_NAME: Final = "SeSystemtimePrivilege"
|
|
2212
|
+
SE_PROF_SINGLE_PROCESS_NAME: Final = "SeProfileSingleProcessPrivilege"
|
|
2213
|
+
SE_INC_BASE_PRIORITY_NAME: Final = "SeIncreaseBasePriorityPrivilege"
|
|
2214
|
+
SE_CREATE_PAGEFILE_NAME: Final = "SeCreatePagefilePrivilege"
|
|
2215
|
+
SE_CREATE_PERMANENT_NAME: Final = "SeCreatePermanentPrivilege"
|
|
2216
|
+
SE_BACKUP_NAME: Final = "SeBackupPrivilege"
|
|
2217
|
+
SE_RESTORE_NAME: Final = "SeRestorePrivilege"
|
|
2218
|
+
SE_SHUTDOWN_NAME: Final = "SeShutdownPrivilege"
|
|
2219
|
+
SE_DEBUG_NAME: Final = "SeDebugPrivilege"
|
|
2220
|
+
SE_AUDIT_NAME: Final = "SeAuditPrivilege"
|
|
2221
|
+
SE_SYSTEM_ENVIRONMENT_NAME: Final = "SeSystemEnvironmentPrivilege"
|
|
2222
|
+
SE_CHANGE_NOTIFY_NAME: Final = "SeChangeNotifyPrivilege"
|
|
2223
|
+
SE_REMOTE_SHUTDOWN_NAME: Final = "SeRemoteShutdownPrivilege"
|
|
2224
|
+
|
|
2225
|
+
TOKEN_ASSIGN_PRIMARY: Final = 1
|
|
2226
|
+
TOKEN_DUPLICATE: Final = 2
|
|
2227
|
+
TOKEN_IMPERSONATE: Final = 4
|
|
2228
|
+
TOKEN_QUERY: Final = 8
|
|
2229
|
+
TOKEN_QUERY_SOURCE: Final = 16
|
|
2230
|
+
TOKEN_ADJUST_PRIVILEGES: Final = 32
|
|
2231
|
+
TOKEN_ADJUST_GROUPS: Final = 64
|
|
2232
|
+
TOKEN_ADJUST_DEFAULT: Final = 128
|
|
2233
|
+
TOKEN_ADJUST_SESSIONID: Final = 256
|
|
2234
|
+
TOKEN_ALL_ACCESS: Final[int]
|
|
2235
|
+
TOKEN_READ: Final[int]
|
|
2236
|
+
TOKEN_WRITE: Final[int]
|
|
2237
|
+
TOKEN_EXECUTE: Final = STANDARD_RIGHTS_EXECUTE
|
|
2238
|
+
TOKEN_SOURCE_LENGTH: Final = 8
|
|
2239
|
+
|
|
2240
|
+
KEY_QUERY_VALUE: Final = 1
|
|
2241
|
+
KEY_SET_VALUE: Final = 2
|
|
2242
|
+
KEY_CREATE_SUB_KEY: Final = 4
|
|
2243
|
+
KEY_ENUMERATE_SUB_KEYS: Final = 8
|
|
2244
|
+
KEY_NOTIFY: Final = 16
|
|
2245
|
+
KEY_CREATE_LINK: Final = 32
|
|
2246
|
+
KEY_WOW64_32KEY: Final = 512
|
|
2247
|
+
KEY_WOW64_64KEY: Final = 256
|
|
2248
|
+
KEY_WOW64_RES: Final = 768
|
|
2249
|
+
KEY_READ: Final[int]
|
|
2250
|
+
KEY_WRITE: Final[int]
|
|
2251
|
+
KEY_EXECUTE: Final[int]
|
|
2252
|
+
KEY_ALL_ACCESS: Final[int]
|
|
2253
|
+
REG_NOTIFY_CHANGE_ATTRIBUTES: Final = 2
|
|
2254
|
+
REG_NOTIFY_CHANGE_SECURITY: Final = 8
|
|
2255
|
+
REG_NONE: Final = 0
|
|
2256
|
+
REG_SZ: Final = 1
|
|
2257
|
+
REG_EXPAND_SZ: Final = 2
|
|
2258
|
+
|
|
2259
|
+
REG_BINARY: Final = 3
|
|
2260
|
+
REG_DWORD: Final = 4
|
|
2261
|
+
REG_DWORD_LITTLE_ENDIAN: Final = 4
|
|
2262
|
+
REG_DWORD_BIG_ENDIAN: Final = 5
|
|
2263
|
+
REG_LINK: Final = 6
|
|
2264
|
+
REG_MULTI_SZ: Final = 7
|
|
2265
|
+
REG_RESOURCE_LIST: Final = 8
|
|
2266
|
+
REG_FULL_RESOURCE_DESCRIPTOR: Final = 9
|
|
2267
|
+
REG_RESOURCE_REQUIREMENTS_LIST: Final = 10
|
|
2268
|
+
REG_QWORD: Final = 11
|
|
2269
|
+
REG_QWORD_LITTLE_ENDIAN: Final = 11
|
|
2270
|
+
|
|
2271
|
+
_NLSCMPERROR: Final = 2147483647
|
|
2272
|
+
NULL: Final = 0
|
|
2273
|
+
HEAP_NO_SERIALIZE: Final = 1
|
|
2274
|
+
HEAP_GROWABLE: Final = 2
|
|
2275
|
+
HEAP_GENERATE_EXCEPTIONS: Final = 4
|
|
2276
|
+
HEAP_ZERO_MEMORY: Final = 8
|
|
2277
|
+
HEAP_REALLOC_IN_PLACE_ONLY: Final = 16
|
|
2278
|
+
HEAP_TAIL_CHECKING_ENABLED: Final = 32
|
|
2279
|
+
HEAP_FREE_CHECKING_ENABLED: Final = 64
|
|
2280
|
+
HEAP_DISABLE_COALESCE_ON_FREE: Final = 128
|
|
2281
|
+
IS_TEXT_UNICODE_ASCII16: Final = 1
|
|
2282
|
+
IS_TEXT_UNICODE_REVERSE_ASCII16: Final = 16
|
|
2283
|
+
IS_TEXT_UNICODE_STATISTICS: Final = 2
|
|
2284
|
+
IS_TEXT_UNICODE_REVERSE_STATISTICS: Final = 32
|
|
2285
|
+
IS_TEXT_UNICODE_CONTROLS: Final = 4
|
|
2286
|
+
IS_TEXT_UNICODE_REVERSE_CONTROLS: Final = 64
|
|
2287
|
+
IS_TEXT_UNICODE_SIGNATURE: Final = 8
|
|
2288
|
+
IS_TEXT_UNICODE_REVERSE_SIGNATURE: Final = 128
|
|
2289
|
+
IS_TEXT_UNICODE_ILLEGAL_CHARS: Final = 256
|
|
2290
|
+
IS_TEXT_UNICODE_ODD_LENGTH: Final = 512
|
|
2291
|
+
IS_TEXT_UNICODE_DBCS_LEADBYTE: Final = 1024
|
|
2292
|
+
IS_TEXT_UNICODE_NULL_BYTES: Final = 4096
|
|
2293
|
+
IS_TEXT_UNICODE_UNICODE_MASK: Final = 15
|
|
2294
|
+
IS_TEXT_UNICODE_REVERSE_MASK: Final = 240
|
|
2295
|
+
IS_TEXT_UNICODE_NOT_UNICODE_MASK: Final = 3840
|
|
2296
|
+
IS_TEXT_UNICODE_NOT_ASCII_MASK: Final = 61440
|
|
2297
|
+
COMPRESSION_FORMAT_NONE: Final = 0
|
|
2298
|
+
COMPRESSION_FORMAT_DEFAULT: Final = 1
|
|
2299
|
+
COMPRESSION_FORMAT_LZNT1: Final = 2
|
|
2300
|
+
COMPRESSION_ENGINE_STANDARD: Final = 0
|
|
2301
|
+
COMPRESSION_ENGINE_MAXIMUM: Final = 256
|
|
2302
|
+
MESSAGE_RESOURCE_UNICODE: Final = 1
|
|
2303
|
+
RTL_CRITSECT_TYPE: Final = 0
|
|
2304
|
+
RTL_RESOURCE_TYPE: Final = 1
|
|
2305
|
+
DLL_PROCESS_ATTACH: Final = 1
|
|
2306
|
+
DLL_THREAD_ATTACH: Final = 2
|
|
2307
|
+
DLL_THREAD_DETACH: Final = 3
|
|
2308
|
+
DLL_PROCESS_DETACH: Final = 0
|
|
2309
|
+
EVENTLOG_SEQUENTIAL_READ: Final = 0x0001
|
|
2310
|
+
EVENTLOG_SEEK_READ: Final = 0x0002
|
|
2311
|
+
EVENTLOG_FORWARDS_READ: Final = 0x0004
|
|
2312
|
+
EVENTLOG_BACKWARDS_READ: Final = 0x0008
|
|
2313
|
+
EVENTLOG_SUCCESS: Final = 0x0000
|
|
2314
|
+
EVENTLOG_ERROR_TYPE: Final = 1
|
|
2315
|
+
EVENTLOG_WARNING_TYPE: Final = 2
|
|
2316
|
+
EVENTLOG_INFORMATION_TYPE: Final = 4
|
|
2317
|
+
EVENTLOG_AUDIT_SUCCESS: Final = 8
|
|
2318
|
+
EVENTLOG_AUDIT_FAILURE: Final = 16
|
|
2319
|
+
EVENTLOG_START_PAIRED_EVENT: Final = 1
|
|
2320
|
+
EVENTLOG_END_PAIRED_EVENT: Final = 2
|
|
2321
|
+
EVENTLOG_END_ALL_PAIRED_EVENTS: Final = 4
|
|
2322
|
+
EVENTLOG_PAIRED_EVENT_ACTIVE: Final = 8
|
|
2323
|
+
EVENTLOG_PAIRED_EVENT_INACTIVE: Final = 16
|
|
2324
|
+
|
|
2325
|
+
OWNER_SECURITY_INFORMATION: Final = 0x00000001
|
|
2326
|
+
GROUP_SECURITY_INFORMATION: Final = 0x00000002
|
|
2327
|
+
DACL_SECURITY_INFORMATION: Final = 0x00000004
|
|
2328
|
+
SACL_SECURITY_INFORMATION: Final = 0x00000008
|
|
2329
|
+
IMAGE_SIZEOF_FILE_HEADER: Final = 20
|
|
2330
|
+
IMAGE_FILE_MACHINE_UNKNOWN: Final = 0
|
|
2331
|
+
IMAGE_NUMBEROF_DIRECTORY_ENTRIES: Final = 16
|
|
2332
|
+
IMAGE_SIZEOF_ROM_OPTIONAL_HEADER: Final = 56
|
|
2333
|
+
IMAGE_SIZEOF_STD_OPTIONAL_HEADER: Final = 28
|
|
2334
|
+
IMAGE_SIZEOF_NT_OPTIONAL_HEADER: Final = 224
|
|
2335
|
+
IMAGE_NT_OPTIONAL_HDR_MAGIC: Final = 267
|
|
2336
|
+
IMAGE_ROM_OPTIONAL_HDR_MAGIC: Final = 263
|
|
2337
|
+
IMAGE_SIZEOF_SHORT_NAME: Final = 8
|
|
2338
|
+
IMAGE_SIZEOF_SECTION_HEADER: Final = 40
|
|
2339
|
+
IMAGE_SIZEOF_SYMBOL: Final = 18
|
|
2340
|
+
IMAGE_SYM_CLASS_NULL: Final = 0
|
|
2341
|
+
IMAGE_SYM_CLASS_AUTOMATIC: Final = 1
|
|
2342
|
+
IMAGE_SYM_CLASS_EXTERNAL: Final = 2
|
|
2343
|
+
IMAGE_SYM_CLASS_STATIC: Final = 3
|
|
2344
|
+
IMAGE_SYM_CLASS_REGISTER: Final = 4
|
|
2345
|
+
IMAGE_SYM_CLASS_EXTERNAL_DEF: Final = 5
|
|
2346
|
+
IMAGE_SYM_CLASS_LABEL: Final = 6
|
|
2347
|
+
IMAGE_SYM_CLASS_UNDEFINED_LABEL: Final = 7
|
|
2348
|
+
IMAGE_SYM_CLASS_MEMBER_OF_STRUCT: Final = 8
|
|
2349
|
+
IMAGE_SYM_CLASS_ARGUMENT: Final = 9
|
|
2350
|
+
IMAGE_SYM_CLASS_STRUCT_TAG: Final = 10
|
|
2351
|
+
IMAGE_SYM_CLASS_MEMBER_OF_UNION: Final = 11
|
|
2352
|
+
IMAGE_SYM_CLASS_UNION_TAG: Final = 12
|
|
2353
|
+
IMAGE_SYM_CLASS_TYPE_DEFINITION: Final = 13
|
|
2354
|
+
IMAGE_SYM_CLASS_UNDEFINED_STATIC: Final = 14
|
|
2355
|
+
IMAGE_SYM_CLASS_ENUM_TAG: Final = 15
|
|
2356
|
+
IMAGE_SYM_CLASS_MEMBER_OF_ENUM: Final = 16
|
|
2357
|
+
IMAGE_SYM_CLASS_REGISTER_PARAM: Final = 17
|
|
2358
|
+
IMAGE_SYM_CLASS_BIT_FIELD: Final = 18
|
|
2359
|
+
IMAGE_SYM_CLASS_BLOCK: Final = 100
|
|
2360
|
+
IMAGE_SYM_CLASS_FUNCTION: Final = 101
|
|
2361
|
+
IMAGE_SYM_CLASS_END_OF_STRUCT: Final = 102
|
|
2362
|
+
IMAGE_SYM_CLASS_FILE: Final = 103
|
|
2363
|
+
IMAGE_SYM_CLASS_SECTION: Final = 104
|
|
2364
|
+
IMAGE_SYM_CLASS_WEAK_EXTERNAL: Final = 105
|
|
2365
|
+
N_BTMASK: Final = 15
|
|
2366
|
+
N_TMASK: Final = 48
|
|
2367
|
+
N_TMASK1: Final = 192
|
|
2368
|
+
N_TMASK2: Final = 240
|
|
2369
|
+
N_BTSHFT: Final = 4
|
|
2370
|
+
N_TSHIFT: Final = 2
|
|
2371
|
+
IMAGE_SIZEOF_AUX_SYMBOL: Final = 18
|
|
2372
|
+
IMAGE_COMDAT_SELECT_NODUPLICATES: Final = 1
|
|
2373
|
+
IMAGE_COMDAT_SELECT_ANY: Final = 2
|
|
2374
|
+
IMAGE_COMDAT_SELECT_SAME_SIZE: Final = 3
|
|
2375
|
+
IMAGE_COMDAT_SELECT_EXACT_MATCH: Final = 4
|
|
2376
|
+
IMAGE_COMDAT_SELECT_ASSOCIATIVE: Final = 5
|
|
2377
|
+
IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY: Final = 1
|
|
2378
|
+
IMAGE_WEAK_EXTERN_SEARCH_LIBRARY: Final = 2
|
|
2379
|
+
IMAGE_WEAK_EXTERN_SEARCH_ALIAS: Final = 3
|
|
2380
|
+
IMAGE_SIZEOF_RELOCATION: Final = 10
|
|
2381
|
+
IMAGE_REL_I386_SECTION: Final = 10
|
|
2382
|
+
IMAGE_REL_I386_SECREL: Final = 11
|
|
2383
|
+
IMAGE_REL_MIPS_REFHALF: Final = 1
|
|
2384
|
+
IMAGE_REL_MIPS_REFWORD: Final = 2
|
|
2385
|
+
IMAGE_REL_MIPS_JMPADDR: Final = 3
|
|
2386
|
+
IMAGE_REL_MIPS_REFHI: Final = 4
|
|
2387
|
+
IMAGE_REL_MIPS_REFLO: Final = 5
|
|
2388
|
+
IMAGE_REL_MIPS_GPREL: Final = 6
|
|
2389
|
+
IMAGE_REL_MIPS_LITERAL: Final = 7
|
|
2390
|
+
IMAGE_REL_MIPS_SECTION: Final = 10
|
|
2391
|
+
IMAGE_REL_MIPS_SECREL: Final = 11
|
|
2392
|
+
IMAGE_REL_MIPS_REFWORDNB: Final = 34
|
|
2393
|
+
IMAGE_REL_MIPS_PAIR: Final = 37
|
|
2394
|
+
IMAGE_REL_ALPHA_ABSOLUTE: Final = 0
|
|
2395
|
+
IMAGE_REL_ALPHA_REFLONG: Final = 1
|
|
2396
|
+
IMAGE_REL_ALPHA_REFQUAD: Final = 2
|
|
2397
|
+
IMAGE_REL_ALPHA_GPREL32: Final = 3
|
|
2398
|
+
IMAGE_REL_ALPHA_LITERAL: Final = 4
|
|
2399
|
+
IMAGE_REL_ALPHA_LITUSE: Final = 5
|
|
2400
|
+
IMAGE_REL_ALPHA_GPDISP: Final = 6
|
|
2401
|
+
IMAGE_REL_ALPHA_BRADDR: Final = 7
|
|
2402
|
+
IMAGE_REL_ALPHA_HINT: Final = 8
|
|
2403
|
+
IMAGE_REL_ALPHA_INLINE_REFLONG: Final = 9
|
|
2404
|
+
IMAGE_REL_ALPHA_REFHI: Final = 10
|
|
2405
|
+
IMAGE_REL_ALPHA_REFLO: Final = 11
|
|
2406
|
+
IMAGE_REL_ALPHA_PAIR: Final = 12
|
|
2407
|
+
IMAGE_REL_ALPHA_MATCH: Final = 13
|
|
2408
|
+
IMAGE_REL_ALPHA_SECTION: Final = 14
|
|
2409
|
+
IMAGE_REL_ALPHA_SECREL: Final = 15
|
|
2410
|
+
IMAGE_REL_ALPHA_REFLONGNB: Final = 16
|
|
2411
|
+
IMAGE_SIZEOF_BASE_RELOCATION: Final = 8
|
|
2412
|
+
IMAGE_REL_BASED_ABSOLUTE: Final = 0
|
|
2413
|
+
IMAGE_REL_BASED_HIGH: Final = 1
|
|
2414
|
+
IMAGE_REL_BASED_LOW: Final = 2
|
|
2415
|
+
IMAGE_REL_BASED_HIGHLOW: Final = 3
|
|
2416
|
+
IMAGE_REL_BASED_HIGHADJ: Final = 4
|
|
2417
|
+
IMAGE_REL_BASED_MIPS_JMPADDR: Final = 5
|
|
2418
|
+
IMAGE_SIZEOF_LINENUMBER: Final = 6
|
|
2419
|
+
IMAGE_ARCHIVE_START_SIZE: Final = 8
|
|
2420
|
+
IMAGE_ARCHIVE_START: Final = "!<arch>\n"
|
|
2421
|
+
IMAGE_ARCHIVE_END: Final = "`\n"
|
|
2422
|
+
IMAGE_ARCHIVE_PAD: Final = "\n"
|
|
2423
|
+
IMAGE_ARCHIVE_LINKER_MEMBER: Final = "/ "
|
|
2424
|
+
IMAGE_ARCHIVE_LONGNAMES_MEMBER: Final = "// "
|
|
2425
|
+
IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR: Final = 60
|
|
2426
|
+
IMAGE_ORDINAL_FLAG: Final = -2147483648
|
|
2427
|
+
|
|
2428
|
+
def IMAGE_SNAP_BY_ORDINAL(Ordinal: int) -> bool: ...
|
|
2429
|
+
def IMAGE_ORDINAL(Ordinal: int) -> int: ...
|
|
2430
|
+
|
|
2431
|
+
IMAGE_RESOURCE_NAME_IS_STRING: Final = -2147483648
|
|
2432
|
+
IMAGE_RESOURCE_DATA_IS_DIRECTORY: Final = -2147483648
|
|
2433
|
+
IMAGE_DEBUG_TYPE_UNKNOWN: Final = 0
|
|
2434
|
+
IMAGE_DEBUG_TYPE_COFF: Final = 1
|
|
2435
|
+
IMAGE_DEBUG_TYPE_CODEVIEW: Final = 2
|
|
2436
|
+
IMAGE_DEBUG_TYPE_FPO: Final = 3
|
|
2437
|
+
IMAGE_DEBUG_TYPE_MISC: Final = 4
|
|
2438
|
+
IMAGE_DEBUG_TYPE_EXCEPTION: Final = 5
|
|
2439
|
+
IMAGE_DEBUG_TYPE_FIXUP: Final = 6
|
|
2440
|
+
IMAGE_DEBUG_TYPE_OMAP_TO_SRC: Final = 7
|
|
2441
|
+
IMAGE_DEBUG_TYPE_OMAP_FROM_SRC: Final = 8
|
|
2442
|
+
FRAME_FPO: Final = 0
|
|
2443
|
+
FRAME_TRAP: Final = 1
|
|
2444
|
+
FRAME_TSS: Final = 2
|
|
2445
|
+
SIZEOF_RFPO_DATA: Final = 16
|
|
2446
|
+
IMAGE_DEBUG_MISC_EXENAME: Final = 1
|
|
2447
|
+
IMAGE_SEPARATE_DEBUG_SIGNATURE: Final = 18756
|
|
2448
|
+
|
|
2449
|
+
NEWFRAME: Final = 1
|
|
2450
|
+
ABORTDOC: Final = 2
|
|
2451
|
+
NEXTBAND: Final = 3
|
|
2452
|
+
SETCOLORTABLE: Final = 4
|
|
2453
|
+
GETCOLORTABLE: Final = 5
|
|
2454
|
+
FLUSHOUTPUT: Final = 6
|
|
2455
|
+
DRAFTMODE: Final = 7
|
|
2456
|
+
QUERYESCSUPPORT: Final = 8
|
|
2457
|
+
SETABORTPROC: Final = 9
|
|
2458
|
+
STARTDOC: Final = 10
|
|
2459
|
+
ENDDOC: Final = 11
|
|
2460
|
+
GETPHYSPAGESIZE: Final = 12
|
|
2461
|
+
GETPRINTINGOFFSET: Final = 13
|
|
2462
|
+
GETSCALINGFACTOR: Final = 14
|
|
2463
|
+
MFCOMMENT: Final = 15
|
|
2464
|
+
GETPENWIDTH: Final = 16
|
|
2465
|
+
SETCOPYCOUNT: Final = 17
|
|
2466
|
+
SELECTPAPERSOURCE: Final = 18
|
|
2467
|
+
DEVICEDATA: Final = 19
|
|
2468
|
+
PASSTHROUGH: Final = 19
|
|
2469
|
+
GETTECHNOLGY: Final = 20
|
|
2470
|
+
GETTECHNOLOGY: Final = 20
|
|
2471
|
+
SETLINECAP: Final = 21
|
|
2472
|
+
SETLINEJOIN: Final = 22
|
|
2473
|
+
SETMITERLIMIT: Final = 23
|
|
2474
|
+
BANDINFO: Final = 24
|
|
2475
|
+
DRAWPATTERNRECT: Final = 25
|
|
2476
|
+
GETVECTORPENSIZE: Final = 26
|
|
2477
|
+
GETVECTORBRUSHSIZE: Final = 27
|
|
2478
|
+
ENABLEDUPLEX: Final = 28
|
|
2479
|
+
GETSETPAPERBINS: Final = 29
|
|
2480
|
+
GETSETPRINTORIENT: Final = 30
|
|
2481
|
+
ENUMPAPERBINS: Final = 31
|
|
2482
|
+
SETDIBSCALING: Final = 32
|
|
2483
|
+
EPSPRINTING: Final = 33
|
|
2484
|
+
ENUMPAPERMETRICS: Final = 34
|
|
2485
|
+
GETSETPAPERMETRICS: Final = 35
|
|
2486
|
+
POSTSCRIPT_DATA: Final = 37
|
|
2487
|
+
POSTSCRIPT_IGNORE: Final = 38
|
|
2488
|
+
MOUSETRAILS: Final = 39
|
|
2489
|
+
GETDEVICEUNITS: Final = 42
|
|
2490
|
+
GETEXTENDEDTEXTMETRICS: Final = 256
|
|
2491
|
+
GETEXTENTTABLE: Final = 257
|
|
2492
|
+
GETPAIRKERNTABLE: Final = 258
|
|
2493
|
+
GETTRACKKERNTABLE: Final = 259
|
|
2494
|
+
EXTTEXTOUT: Final = 512
|
|
2495
|
+
GETFACENAME: Final = 513
|
|
2496
|
+
DOWNLOADFACE: Final = 514
|
|
2497
|
+
ENABLERELATIVEWIDTHS: Final = 768
|
|
2498
|
+
ENABLEPAIRKERNING: Final = 769
|
|
2499
|
+
SETKERNTRACK: Final = 770
|
|
2500
|
+
SETALLJUSTVALUES: Final = 771
|
|
2501
|
+
SETCHARSET: Final = 772
|
|
2502
|
+
STRETCHBLT: Final = 2048
|
|
2503
|
+
GETSETSCREENPARAMS: Final = 3072
|
|
2504
|
+
BEGIN_PATH: Final = 4096
|
|
2505
|
+
CLIP_TO_PATH: Final = 4097
|
|
2506
|
+
END_PATH: Final = 4098
|
|
2507
|
+
EXT_DEVICE_CAPS: Final = 4099
|
|
2508
|
+
RESTORE_CTM: Final = 4100
|
|
2509
|
+
SAVE_CTM: Final = 4101
|
|
2510
|
+
SET_ARC_DIRECTION: Final = 4102
|
|
2511
|
+
SET_BACKGROUND_COLOR: Final = 4103
|
|
2512
|
+
SET_POLY_MODE: Final = 4104
|
|
2513
|
+
SET_SCREEN_ANGLE: Final = 4105
|
|
2514
|
+
SET_SPREAD: Final = 4106
|
|
2515
|
+
TRANSFORM_CTM: Final = 4107
|
|
2516
|
+
SET_CLIP_BOX: Final = 4108
|
|
2517
|
+
SET_BOUNDS: Final = 4109
|
|
2518
|
+
SET_MIRROR_MODE: Final = 4110
|
|
2519
|
+
OPENCHANNEL: Final = 4110
|
|
2520
|
+
DOWNLOADHEADER: Final = 4111
|
|
2521
|
+
CLOSECHANNEL: Final = 4112
|
|
2522
|
+
POSTSCRIPT_PASSTHROUGH: Final = 4115
|
|
2523
|
+
ENCAPSULATED_POSTSCRIPT: Final = 4116
|
|
2524
|
+
SP_NOTREPORTED: Final = 16384
|
|
2525
|
+
SP_ERROR: Final = -1
|
|
2526
|
+
SP_APPABORT: Final = -2
|
|
2527
|
+
SP_USERABORT: Final = -3
|
|
2528
|
+
SP_OUTOFDISK: Final = -4
|
|
2529
|
+
SP_OUTOFMEMORY: Final = -5
|
|
2530
|
+
PR_JOBSTATUS: Final = 0
|
|
2531
|
+
|
|
2532
|
+
OBJ_PEN: Final = 1
|
|
2533
|
+
OBJ_BRUSH: Final = 2
|
|
2534
|
+
OBJ_DC: Final = 3
|
|
2535
|
+
OBJ_METADC: Final = 4
|
|
2536
|
+
OBJ_PAL: Final = 5
|
|
2537
|
+
OBJ_FONT: Final = 6
|
|
2538
|
+
OBJ_BITMAP: Final = 7
|
|
2539
|
+
OBJ_REGION: Final = 8
|
|
2540
|
+
OBJ_METAFILE: Final = 9
|
|
2541
|
+
OBJ_MEMDC: Final = 10
|
|
2542
|
+
OBJ_EXTPEN: Final = 11
|
|
2543
|
+
OBJ_ENHMETADC: Final = 12
|
|
2544
|
+
OBJ_ENHMETAFILE: Final = 13
|
|
2545
|
+
OBJ_COLORSPACE: Final = 14
|
|
2546
|
+
|
|
2547
|
+
MWT_IDENTITY: Final = 1
|
|
2548
|
+
MWT_LEFTMULTIPLY: Final = 2
|
|
2549
|
+
MWT_RIGHTMULTIPLY: Final = 3
|
|
2550
|
+
MWT_MIN: Final = MWT_IDENTITY
|
|
2551
|
+
MWT_MAX: Final = MWT_RIGHTMULTIPLY
|
|
2552
|
+
BI_RGB: Final = 0
|
|
2553
|
+
BI_RLE8: Final = 1
|
|
2554
|
+
BI_RLE4: Final = 2
|
|
2555
|
+
BI_BITFIELDS: Final = 3
|
|
2556
|
+
TMPF_FIXED_PITCH: Final = 1
|
|
2557
|
+
TMPF_VECTOR: Final = 2
|
|
2558
|
+
TMPF_DEVICE: Final = 8
|
|
2559
|
+
TMPF_TRUETYPE: Final = 4
|
|
2560
|
+
NTM_REGULAR: Final = 64
|
|
2561
|
+
NTM_BOLD: Final = 32
|
|
2562
|
+
NTM_ITALIC: Final = 1
|
|
2563
|
+
LF_FACESIZE: Final = 32
|
|
2564
|
+
LF_FULLFACESIZE: Final = 64
|
|
2565
|
+
OUT_DEFAULT_PRECIS: Final = 0
|
|
2566
|
+
OUT_STRING_PRECIS: Final = 1
|
|
2567
|
+
OUT_CHARACTER_PRECIS: Final = 2
|
|
2568
|
+
OUT_STROKE_PRECIS: Final = 3
|
|
2569
|
+
OUT_TT_PRECIS: Final = 4
|
|
2570
|
+
OUT_DEVICE_PRECIS: Final = 5
|
|
2571
|
+
OUT_RASTER_PRECIS: Final = 6
|
|
2572
|
+
OUT_TT_ONLY_PRECIS: Final = 7
|
|
2573
|
+
OUT_OUTLINE_PRECIS: Final = 8
|
|
2574
|
+
CLIP_DEFAULT_PRECIS: Final = 0
|
|
2575
|
+
CLIP_CHARACTER_PRECIS: Final = 1
|
|
2576
|
+
CLIP_STROKE_PRECIS: Final = 2
|
|
2577
|
+
CLIP_MASK: Final = 15
|
|
2578
|
+
CLIP_LH_ANGLES: Final[int]
|
|
2579
|
+
CLIP_TT_ALWAYS: Final[int]
|
|
2580
|
+
CLIP_EMBEDDED: Final[int]
|
|
2581
|
+
DEFAULT_QUALITY: Final = 0
|
|
2582
|
+
DRAFT_QUALITY: Final = 1
|
|
2583
|
+
PROOF_QUALITY: Final = 2
|
|
2584
|
+
NONANTIALIASED_QUALITY: Final = 3
|
|
2585
|
+
ANTIALIASED_QUALITY: Final = 4
|
|
2586
|
+
CLEARTYPE_QUALITY: Final = 5
|
|
2587
|
+
CLEARTYPE_NATURAL_QUALITY: Final = 6
|
|
2588
|
+
DEFAULT_PITCH: Final = 0
|
|
2589
|
+
FIXED_PITCH: Final = 1
|
|
2590
|
+
VARIABLE_PITCH: Final = 2
|
|
2591
|
+
ANSI_CHARSET: Final = 0
|
|
2592
|
+
DEFAULT_CHARSET: Final = 1
|
|
2593
|
+
SYMBOL_CHARSET: Final = 2
|
|
2594
|
+
SHIFTJIS_CHARSET: Final = 128
|
|
2595
|
+
HANGEUL_CHARSET: Final = 129
|
|
2596
|
+
CHINESEBIG5_CHARSET: Final = 136
|
|
2597
|
+
OEM_CHARSET: Final = 255
|
|
2598
|
+
JOHAB_CHARSET: Final = 130
|
|
2599
|
+
HEBREW_CHARSET: Final = 177
|
|
2600
|
+
ARABIC_CHARSET: Final = 178
|
|
2601
|
+
GREEK_CHARSET: Final = 161
|
|
2602
|
+
TURKISH_CHARSET: Final = 162
|
|
2603
|
+
VIETNAMESE_CHARSET: Final = 163
|
|
2604
|
+
THAI_CHARSET: Final = 222
|
|
2605
|
+
EASTEUROPE_CHARSET: Final = 238
|
|
2606
|
+
RUSSIAN_CHARSET: Final = 204
|
|
2607
|
+
MAC_CHARSET: Final = 77
|
|
2608
|
+
BALTIC_CHARSET: Final = 186
|
|
2609
|
+
FF_DONTCARE: Final[int]
|
|
2610
|
+
FF_ROMAN: Final[int]
|
|
2611
|
+
FF_SWISS: Final[int]
|
|
2612
|
+
FF_MODERN: Final[int]
|
|
2613
|
+
FF_SCRIPT: Final[int]
|
|
2614
|
+
FF_DECORATIVE: Final[int]
|
|
2615
|
+
FW_DONTCARE: Final = 0
|
|
2616
|
+
FW_THIN: Final = 100
|
|
2617
|
+
FW_EXTRALIGHT: Final = 200
|
|
2618
|
+
FW_LIGHT: Final = 300
|
|
2619
|
+
FW_NORMAL: Final = 400
|
|
2620
|
+
FW_MEDIUM: Final = 500
|
|
2621
|
+
FW_SEMIBOLD: Final = 600
|
|
2622
|
+
FW_BOLD: Final = 700
|
|
2623
|
+
FW_EXTRABOLD: Final = 800
|
|
2624
|
+
FW_HEAVY: Final = 900
|
|
2625
|
+
FW_ULTRALIGHT: Final = FW_EXTRALIGHT
|
|
2626
|
+
FW_REGULAR: Final = FW_NORMAL
|
|
2627
|
+
FW_DEMIBOLD: Final = FW_SEMIBOLD
|
|
2628
|
+
FW_ULTRABOLD: Final = FW_EXTRABOLD
|
|
2629
|
+
FW_BLACK: Final = FW_HEAVY
|
|
2630
|
+
|
|
2631
|
+
BS_SOLID: Final = 0
|
|
2632
|
+
BS_NULL: Final = 1
|
|
2633
|
+
BS_HOLLOW: Final = BS_NULL
|
|
2634
|
+
BS_HATCHED: Final = 2
|
|
2635
|
+
BS_PATTERN: Final = 3
|
|
2636
|
+
BS_INDEXED: Final = 4
|
|
2637
|
+
BS_DIBPATTERN: Final = 5
|
|
2638
|
+
BS_DIBPATTERNPT: Final = 6
|
|
2639
|
+
BS_PATTERN8X8: Final = 7
|
|
2640
|
+
BS_DIBPATTERN8X8: Final = 8
|
|
2641
|
+
HS_HORIZONTAL: Final = 0
|
|
2642
|
+
HS_VERTICAL: Final = 1
|
|
2643
|
+
HS_FDIAGONAL: Final = 2
|
|
2644
|
+
HS_BDIAGONAL: Final = 3
|
|
2645
|
+
HS_CROSS: Final = 4
|
|
2646
|
+
HS_DIAGCROSS: Final = 5
|
|
2647
|
+
HS_FDIAGONAL1: Final = 6
|
|
2648
|
+
HS_BDIAGONAL1: Final = 7
|
|
2649
|
+
HS_SOLID: Final = 8
|
|
2650
|
+
HS_DENSE1: Final = 9
|
|
2651
|
+
HS_DENSE2: Final = 10
|
|
2652
|
+
HS_DENSE3: Final = 11
|
|
2653
|
+
HS_DENSE4: Final = 12
|
|
2654
|
+
HS_DENSE5: Final = 13
|
|
2655
|
+
HS_DENSE6: Final = 14
|
|
2656
|
+
HS_DENSE7: Final = 15
|
|
2657
|
+
HS_DENSE8: Final = 16
|
|
2658
|
+
HS_NOSHADE: Final = 17
|
|
2659
|
+
HS_HALFTONE: Final = 18
|
|
2660
|
+
HS_SOLIDCLR: Final = 19
|
|
2661
|
+
HS_DITHEREDCLR: Final = 20
|
|
2662
|
+
HS_SOLIDTEXTCLR: Final = 21
|
|
2663
|
+
HS_DITHEREDTEXTCLR: Final = 22
|
|
2664
|
+
HS_SOLIDBKCLR: Final = 23
|
|
2665
|
+
HS_DITHEREDBKCLR: Final = 24
|
|
2666
|
+
HS_API_MAX: Final = 25
|
|
2667
|
+
PS_SOLID: Final = 0
|
|
2668
|
+
PS_DASH: Final = 1
|
|
2669
|
+
PS_DOT: Final = 2
|
|
2670
|
+
PS_DASHDOT: Final = 3
|
|
2671
|
+
PS_DASHDOTDOT: Final = 4
|
|
2672
|
+
PS_NULL: Final = 5
|
|
2673
|
+
PS_INSIDEFRAME: Final = 6
|
|
2674
|
+
PS_USERSTYLE: Final = 7
|
|
2675
|
+
PS_ALTERNATE: Final = 8
|
|
2676
|
+
PS_STYLE_MASK: Final = 15
|
|
2677
|
+
PS_ENDCAP_ROUND: Final = 0
|
|
2678
|
+
PS_ENDCAP_SQUARE: Final = 256
|
|
2679
|
+
PS_ENDCAP_FLAT: Final = 512
|
|
2680
|
+
PS_ENDCAP_MASK: Final = 3840
|
|
2681
|
+
PS_JOIN_ROUND: Final = 0
|
|
2682
|
+
PS_JOIN_BEVEL: Final = 4096
|
|
2683
|
+
PS_JOIN_MITER: Final = 8192
|
|
2684
|
+
PS_JOIN_MASK: Final = 61440
|
|
2685
|
+
PS_COSMETIC: Final = 0
|
|
2686
|
+
PS_GEOMETRIC: Final = 65536
|
|
2687
|
+
PS_TYPE_MASK: Final = 983040
|
|
2688
|
+
AD_COUNTERCLOCKWISE: Final = 1
|
|
2689
|
+
AD_CLOCKWISE: Final = 2
|
|
2690
|
+
DRIVERVERSION: Final = 0
|
|
2691
|
+
TECHNOLOGY: Final = 2
|
|
2692
|
+
HORZSIZE: Final = 4
|
|
2693
|
+
VERTSIZE: Final = 6
|
|
2694
|
+
HORZRES: Final = 8
|
|
2695
|
+
VERTRES: Final = 10
|
|
2696
|
+
BITSPIXEL: Final = 12
|
|
2697
|
+
PLANES: Final = 14
|
|
2698
|
+
NUMBRUSHES: Final = 16
|
|
2699
|
+
NUMPENS: Final = 18
|
|
2700
|
+
NUMMARKERS: Final = 20
|
|
2701
|
+
NUMFONTS: Final = 22
|
|
2702
|
+
NUMCOLORS: Final = 24
|
|
2703
|
+
PDEVICESIZE: Final = 26
|
|
2704
|
+
CURVECAPS: Final = 28
|
|
2705
|
+
LINECAPS: Final = 30
|
|
2706
|
+
POLYGONALCAPS: Final = 32
|
|
2707
|
+
TEXTCAPS: Final = 34
|
|
2708
|
+
CLIPCAPS: Final = 36
|
|
2709
|
+
RASTERCAPS: Final = 38
|
|
2710
|
+
ASPECTX: Final = 40
|
|
2711
|
+
ASPECTY: Final = 42
|
|
2712
|
+
ASPECTXY: Final = 44
|
|
2713
|
+
LOGPIXELSX: Final = 88
|
|
2714
|
+
LOGPIXELSY: Final = 90
|
|
2715
|
+
SIZEPALETTE: Final = 104
|
|
2716
|
+
NUMRESERVED: Final = 106
|
|
2717
|
+
COLORRES: Final = 108
|
|
2718
|
+
|
|
2719
|
+
PHYSICALWIDTH: Final = 110
|
|
2720
|
+
PHYSICALHEIGHT: Final = 111
|
|
2721
|
+
PHYSICALOFFSETX: Final = 112
|
|
2722
|
+
PHYSICALOFFSETY: Final = 113
|
|
2723
|
+
SCALINGFACTORX: Final = 114
|
|
2724
|
+
SCALINGFACTORY: Final = 115
|
|
2725
|
+
VREFRESH: Final = 116
|
|
2726
|
+
DESKTOPVERTRES: Final = 117
|
|
2727
|
+
DESKTOPHORZRES: Final = 118
|
|
2728
|
+
BLTALIGNMENT: Final = 119
|
|
2729
|
+
SHADEBLENDCAPS: Final = 120
|
|
2730
|
+
COLORMGMTCAPS: Final = 121
|
|
2731
|
+
|
|
2732
|
+
DT_PLOTTER: Final = 0
|
|
2733
|
+
DT_RASDISPLAY: Final = 1
|
|
2734
|
+
DT_RASPRINTER: Final = 2
|
|
2735
|
+
DT_RASCAMERA: Final = 3
|
|
2736
|
+
DT_CHARSTREAM: Final = 4
|
|
2737
|
+
DT_METAFILE: Final = 5
|
|
2738
|
+
DT_DISPFILE: Final = 6
|
|
2739
|
+
CC_NONE: Final = 0
|
|
2740
|
+
CC_CIRCLES: Final = 1
|
|
2741
|
+
CC_PIE: Final = 2
|
|
2742
|
+
CC_CHORD: Final = 4
|
|
2743
|
+
CC_ELLIPSES: Final = 8
|
|
2744
|
+
CC_WIDE: Final = 16
|
|
2745
|
+
CC_STYLED: Final = 32
|
|
2746
|
+
CC_WIDESTYLED: Final = 64
|
|
2747
|
+
CC_INTERIORS: Final = 128
|
|
2748
|
+
CC_ROUNDRECT: Final = 256
|
|
2749
|
+
LC_NONE: Final = 0
|
|
2750
|
+
LC_POLYLINE: Final = 2
|
|
2751
|
+
LC_MARKER: Final = 4
|
|
2752
|
+
LC_POLYMARKER: Final = 8
|
|
2753
|
+
LC_WIDE: Final = 16
|
|
2754
|
+
LC_STYLED: Final = 32
|
|
2755
|
+
LC_WIDESTYLED: Final = 64
|
|
2756
|
+
LC_INTERIORS: Final = 128
|
|
2757
|
+
PC_NONE: Final = 0
|
|
2758
|
+
PC_POLYGON: Final = 1
|
|
2759
|
+
PC_RECTANGLE: Final = 2
|
|
2760
|
+
PC_WINDPOLYGON: Final = 4
|
|
2761
|
+
PC_TRAPEZOID: Final = 4
|
|
2762
|
+
PC_SCANLINE: Final = 8
|
|
2763
|
+
PC_WIDE: Final = 16
|
|
2764
|
+
PC_STYLED: Final = 32
|
|
2765
|
+
PC_WIDESTYLED: Final = 64
|
|
2766
|
+
PC_INTERIORS: Final = 128
|
|
2767
|
+
CP_NONE: Final = 0
|
|
2768
|
+
CP_RECTANGLE: Final = 1
|
|
2769
|
+
CP_REGION: Final = 2
|
|
2770
|
+
TC_OP_CHARACTER: Final = 1
|
|
2771
|
+
TC_OP_STROKE: Final = 2
|
|
2772
|
+
TC_CP_STROKE: Final = 4
|
|
2773
|
+
TC_CR_90: Final = 8
|
|
2774
|
+
TC_CR_ANY: Final = 16
|
|
2775
|
+
TC_SF_X_YINDEP: Final = 32
|
|
2776
|
+
TC_SA_DOUBLE: Final = 64
|
|
2777
|
+
TC_SA_INTEGER: Final = 128
|
|
2778
|
+
TC_SA_CONTIN: Final = 256
|
|
2779
|
+
TC_EA_DOUBLE: Final = 512
|
|
2780
|
+
TC_IA_ABLE: Final = 1024
|
|
2781
|
+
TC_UA_ABLE: Final = 2048
|
|
2782
|
+
TC_SO_ABLE: Final = 4096
|
|
2783
|
+
TC_RA_ABLE: Final = 8192
|
|
2784
|
+
TC_VA_ABLE: Final = 16384
|
|
2785
|
+
TC_RESERVED: Final = 32768
|
|
2786
|
+
TC_SCROLLBLT: Final = 65536
|
|
2787
|
+
RC_BITBLT: Final = 1
|
|
2788
|
+
RC_BANDING: Final = 2
|
|
2789
|
+
RC_SCALING: Final = 4
|
|
2790
|
+
RC_BITMAP64: Final = 8
|
|
2791
|
+
RC_GDI20_OUTPUT: Final = 16
|
|
2792
|
+
RC_GDI20_STATE: Final = 32
|
|
2793
|
+
RC_SAVEBITMAP: Final = 64
|
|
2794
|
+
RC_DI_BITMAP: Final = 128
|
|
2795
|
+
RC_PALETTE: Final = 256
|
|
2796
|
+
RC_DIBTODEV: Final = 512
|
|
2797
|
+
RC_BIGFONT: Final = 1024
|
|
2798
|
+
RC_STRETCHBLT: Final = 2048
|
|
2799
|
+
RC_FLOODFILL: Final = 4096
|
|
2800
|
+
RC_STRETCHDIB: Final = 8192
|
|
2801
|
+
RC_OP_DX_OUTPUT: Final = 16384
|
|
2802
|
+
RC_DEVBITS: Final = 32768
|
|
2803
|
+
DIB_RGB_COLORS: Final = 0
|
|
2804
|
+
DIB_PAL_COLORS: Final = 1
|
|
2805
|
+
DIB_PAL_INDICES: Final = 2
|
|
2806
|
+
DIB_PAL_PHYSINDICES: Final = 2
|
|
2807
|
+
DIB_PAL_LOGINDICES: Final = 4
|
|
2808
|
+
SYSPAL_ERROR: Final = 0
|
|
2809
|
+
SYSPAL_STATIC: Final = 1
|
|
2810
|
+
SYSPAL_NOSTATIC: Final = 2
|
|
2811
|
+
CBM_CREATEDIB: Final = 2
|
|
2812
|
+
CBM_INIT: Final = 4
|
|
2813
|
+
FLOODFILLBORDER: Final = 0
|
|
2814
|
+
FLOODFILLSURFACE: Final = 1
|
|
2815
|
+
CCHFORMNAME: Final = 32
|
|
2816
|
+
|
|
2817
|
+
DM_SPECVERSION: Final = 800
|
|
2818
|
+
DM_ORIENTATION: Final = 1
|
|
2819
|
+
DM_PAPERSIZE: Final = 2
|
|
2820
|
+
DM_PAPERLENGTH: Final = 4
|
|
2821
|
+
DM_PAPERWIDTH: Final = 8
|
|
2822
|
+
DM_SCALE: Final = 16
|
|
2823
|
+
DM_POSITION: Final = 32
|
|
2824
|
+
DM_NUP: Final = 64
|
|
2825
|
+
DM_DISPLAYORIENTATION: Final = 128
|
|
2826
|
+
DM_COPIES: Final = 256
|
|
2827
|
+
DM_DEFAULTSOURCE: Final = 512
|
|
2828
|
+
DM_PRINTQUALITY: Final = 1024
|
|
2829
|
+
DM_COLOR: Final = 2048
|
|
2830
|
+
DM_DUPLEX: Final = 4096
|
|
2831
|
+
DM_YRESOLUTION: Final = 8192
|
|
2832
|
+
DM_TTOPTION: Final = 16384
|
|
2833
|
+
DM_COLLATE: Final = 32768
|
|
2834
|
+
DM_FORMNAME: Final = 65536
|
|
2835
|
+
DM_LOGPIXELS: Final = 131072
|
|
2836
|
+
DM_BITSPERPEL: Final = 262144
|
|
2837
|
+
DM_PELSWIDTH: Final = 524288
|
|
2838
|
+
DM_PELSHEIGHT: Final = 1048576
|
|
2839
|
+
DM_DISPLAYFLAGS: Final = 2097152
|
|
2840
|
+
DM_DISPLAYFREQUENCY: Final = 4194304
|
|
2841
|
+
DM_ICMMETHOD: Final = 8388608
|
|
2842
|
+
DM_ICMINTENT: Final = 16777216
|
|
2843
|
+
DM_MEDIATYPE: Final = 33554432
|
|
2844
|
+
DM_DITHERTYPE: Final = 67108864
|
|
2845
|
+
DM_PANNINGWIDTH: Final = 134217728
|
|
2846
|
+
DM_PANNINGHEIGHT: Final = 268435456
|
|
2847
|
+
DM_DISPLAYFIXEDOUTPUT: Final = 536870912
|
|
2848
|
+
|
|
2849
|
+
DMORIENT_PORTRAIT: Final = 1
|
|
2850
|
+
DMORIENT_LANDSCAPE: Final = 2
|
|
2851
|
+
|
|
2852
|
+
DMDO_DEFAULT: Final = 0
|
|
2853
|
+
DMDO_90: Final = 1
|
|
2854
|
+
DMDO_180: Final = 2
|
|
2855
|
+
DMDO_270: Final = 3
|
|
2856
|
+
|
|
2857
|
+
DMDFO_DEFAULT: Final = 0
|
|
2858
|
+
DMDFO_STRETCH: Final = 1
|
|
2859
|
+
DMDFO_CENTER: Final = 2
|
|
2860
|
+
|
|
2861
|
+
DMPAPER_LETTER: Final = 1
|
|
2862
|
+
DMPAPER_LETTERSMALL: Final = 2
|
|
2863
|
+
DMPAPER_TABLOID: Final = 3
|
|
2864
|
+
DMPAPER_LEDGER: Final = 4
|
|
2865
|
+
DMPAPER_LEGAL: Final = 5
|
|
2866
|
+
DMPAPER_STATEMENT: Final = 6
|
|
2867
|
+
DMPAPER_EXECUTIVE: Final = 7
|
|
2868
|
+
DMPAPER_A3: Final = 8
|
|
2869
|
+
DMPAPER_A4: Final = 9
|
|
2870
|
+
DMPAPER_A4SMALL: Final = 10
|
|
2871
|
+
DMPAPER_A5: Final = 11
|
|
2872
|
+
DMPAPER_B4: Final = 12
|
|
2873
|
+
DMPAPER_B5: Final = 13
|
|
2874
|
+
DMPAPER_FOLIO: Final = 14
|
|
2875
|
+
DMPAPER_QUARTO: Final = 15
|
|
2876
|
+
DMPAPER_10X14: Final = 16
|
|
2877
|
+
DMPAPER_11X17: Final = 17
|
|
2878
|
+
DMPAPER_NOTE: Final = 18
|
|
2879
|
+
DMPAPER_ENV_9: Final = 19
|
|
2880
|
+
DMPAPER_ENV_10: Final = 20
|
|
2881
|
+
DMPAPER_ENV_11: Final = 21
|
|
2882
|
+
DMPAPER_ENV_12: Final = 22
|
|
2883
|
+
DMPAPER_ENV_14: Final = 23
|
|
2884
|
+
DMPAPER_CSHEET: Final = 24
|
|
2885
|
+
DMPAPER_DSHEET: Final = 25
|
|
2886
|
+
DMPAPER_ESHEET: Final = 26
|
|
2887
|
+
DMPAPER_ENV_DL: Final = 27
|
|
2888
|
+
DMPAPER_ENV_C5: Final = 28
|
|
2889
|
+
DMPAPER_ENV_C3: Final = 29
|
|
2890
|
+
DMPAPER_ENV_C4: Final = 30
|
|
2891
|
+
DMPAPER_ENV_C6: Final = 31
|
|
2892
|
+
DMPAPER_ENV_C65: Final = 32
|
|
2893
|
+
DMPAPER_ENV_B4: Final = 33
|
|
2894
|
+
DMPAPER_ENV_B5: Final = 34
|
|
2895
|
+
DMPAPER_ENV_B6: Final = 35
|
|
2896
|
+
DMPAPER_ENV_ITALY: Final = 36
|
|
2897
|
+
DMPAPER_ENV_MONARCH: Final = 37
|
|
2898
|
+
DMPAPER_ENV_PERSONAL: Final = 38
|
|
2899
|
+
DMPAPER_FANFOLD_US: Final = 39
|
|
2900
|
+
DMPAPER_FANFOLD_STD_GERMAN: Final = 40
|
|
2901
|
+
DMPAPER_FANFOLD_LGL_GERMAN: Final = 41
|
|
2902
|
+
DMPAPER_ISO_B4: Final = 42
|
|
2903
|
+
DMPAPER_JAPANESE_POSTCARD: Final = 43
|
|
2904
|
+
DMPAPER_9X11: Final = 44
|
|
2905
|
+
DMPAPER_10X11: Final = 45
|
|
2906
|
+
DMPAPER_15X11: Final = 46
|
|
2907
|
+
DMPAPER_ENV_INVITE: Final = 47
|
|
2908
|
+
DMPAPER_RESERVED_48: Final = 48
|
|
2909
|
+
DMPAPER_RESERVED_49: Final = 49
|
|
2910
|
+
DMPAPER_LETTER_EXTRA: Final = 50
|
|
2911
|
+
DMPAPER_LEGAL_EXTRA: Final = 51
|
|
2912
|
+
DMPAPER_TABLOID_EXTRA: Final = 52
|
|
2913
|
+
DMPAPER_A4_EXTRA: Final = 53
|
|
2914
|
+
DMPAPER_LETTER_TRANSVERSE: Final = 54
|
|
2915
|
+
DMPAPER_A4_TRANSVERSE: Final = 55
|
|
2916
|
+
DMPAPER_LETTER_EXTRA_TRANSVERSE: Final = 56
|
|
2917
|
+
DMPAPER_A_PLUS: Final = 57
|
|
2918
|
+
DMPAPER_B_PLUS: Final = 58
|
|
2919
|
+
DMPAPER_LETTER_PLUS: Final = 59
|
|
2920
|
+
DMPAPER_A4_PLUS: Final = 60
|
|
2921
|
+
DMPAPER_A5_TRANSVERSE: Final = 61
|
|
2922
|
+
DMPAPER_B5_TRANSVERSE: Final = 62
|
|
2923
|
+
DMPAPER_A3_EXTRA: Final = 63
|
|
2924
|
+
DMPAPER_A5_EXTRA: Final = 64
|
|
2925
|
+
DMPAPER_B5_EXTRA: Final = 65
|
|
2926
|
+
DMPAPER_A2: Final = 66
|
|
2927
|
+
DMPAPER_A3_TRANSVERSE: Final = 67
|
|
2928
|
+
DMPAPER_A3_EXTRA_TRANSVERSE: Final = 68
|
|
2929
|
+
DMPAPER_DBL_JAPANESE_POSTCARD: Final = 69
|
|
2930
|
+
DMPAPER_A6: Final = 70
|
|
2931
|
+
DMPAPER_JENV_KAKU2: Final = 71
|
|
2932
|
+
DMPAPER_JENV_KAKU3: Final = 72
|
|
2933
|
+
DMPAPER_JENV_CHOU3: Final = 73
|
|
2934
|
+
DMPAPER_JENV_CHOU4: Final = 74
|
|
2935
|
+
DMPAPER_LETTER_ROTATED: Final = 75
|
|
2936
|
+
DMPAPER_A3_ROTATED: Final = 76
|
|
2937
|
+
DMPAPER_A4_ROTATED: Final = 77
|
|
2938
|
+
DMPAPER_A5_ROTATED: Final = 78
|
|
2939
|
+
DMPAPER_B4_JIS_ROTATED: Final = 79
|
|
2940
|
+
DMPAPER_B5_JIS_ROTATED: Final = 80
|
|
2941
|
+
DMPAPER_JAPANESE_POSTCARD_ROTATED: Final = 81
|
|
2942
|
+
DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED: Final = 82
|
|
2943
|
+
DMPAPER_A6_ROTATED: Final = 83
|
|
2944
|
+
DMPAPER_JENV_KAKU2_ROTATED: Final = 84
|
|
2945
|
+
DMPAPER_JENV_KAKU3_ROTATED: Final = 85
|
|
2946
|
+
DMPAPER_JENV_CHOU3_ROTATED: Final = 86
|
|
2947
|
+
DMPAPER_JENV_CHOU4_ROTATED: Final = 87
|
|
2948
|
+
DMPAPER_B6_JIS: Final = 88
|
|
2949
|
+
DMPAPER_B6_JIS_ROTATED: Final = 89
|
|
2950
|
+
DMPAPER_12X11: Final = 90
|
|
2951
|
+
DMPAPER_JENV_YOU4: Final = 91
|
|
2952
|
+
DMPAPER_JENV_YOU4_ROTATED: Final = 92
|
|
2953
|
+
DMPAPER_P16K: Final = 93
|
|
2954
|
+
DMPAPER_P32K: Final = 94
|
|
2955
|
+
DMPAPER_P32KBIG: Final = 95
|
|
2956
|
+
DMPAPER_PENV_1: Final = 96
|
|
2957
|
+
DMPAPER_PENV_2: Final = 97
|
|
2958
|
+
DMPAPER_PENV_3: Final = 98
|
|
2959
|
+
DMPAPER_PENV_4: Final = 99
|
|
2960
|
+
DMPAPER_PENV_5: Final = 100
|
|
2961
|
+
DMPAPER_PENV_6: Final = 101
|
|
2962
|
+
DMPAPER_PENV_7: Final = 102
|
|
2963
|
+
DMPAPER_PENV_8: Final = 103
|
|
2964
|
+
DMPAPER_PENV_9: Final = 104
|
|
2965
|
+
DMPAPER_PENV_10: Final = 105
|
|
2966
|
+
DMPAPER_P16K_ROTATED: Final = 106
|
|
2967
|
+
DMPAPER_P32K_ROTATED: Final = 107
|
|
2968
|
+
DMPAPER_P32KBIG_ROTATED: Final = 108
|
|
2969
|
+
DMPAPER_PENV_1_ROTATED: Final = 109
|
|
2970
|
+
DMPAPER_PENV_2_ROTATED: Final = 110
|
|
2971
|
+
DMPAPER_PENV_3_ROTATED: Final = 111
|
|
2972
|
+
DMPAPER_PENV_4_ROTATED: Final = 112
|
|
2973
|
+
DMPAPER_PENV_5_ROTATED: Final = 113
|
|
2974
|
+
DMPAPER_PENV_6_ROTATED: Final = 114
|
|
2975
|
+
DMPAPER_PENV_7_ROTATED: Final = 115
|
|
2976
|
+
DMPAPER_PENV_8_ROTATED: Final = 116
|
|
2977
|
+
DMPAPER_PENV_9_ROTATED: Final = 117
|
|
2978
|
+
DMPAPER_PENV_10_ROTATED: Final = 118
|
|
2979
|
+
DMPAPER_LAST: Final = DMPAPER_PENV_10_ROTATED
|
|
2980
|
+
DMPAPER_USER: Final = 256
|
|
2981
|
+
|
|
2982
|
+
DMBIN_UPPER: Final = 1
|
|
2983
|
+
DMBIN_ONLYONE: Final = 1
|
|
2984
|
+
DMBIN_LOWER: Final = 2
|
|
2985
|
+
DMBIN_MIDDLE: Final = 3
|
|
2986
|
+
DMBIN_MANUAL: Final = 4
|
|
2987
|
+
DMBIN_ENVELOPE: Final = 5
|
|
2988
|
+
DMBIN_ENVMANUAL: Final = 6
|
|
2989
|
+
DMBIN_AUTO: Final = 7
|
|
2990
|
+
DMBIN_TRACTOR: Final = 8
|
|
2991
|
+
DMBIN_SMALLFMT: Final = 9
|
|
2992
|
+
DMBIN_LARGEFMT: Final = 10
|
|
2993
|
+
DMBIN_LARGECAPACITY: Final = 11
|
|
2994
|
+
DMBIN_CASSETTE: Final = 14
|
|
2995
|
+
DMBIN_FORMSOURCE: Final = 15
|
|
2996
|
+
DMBIN_LAST: Final = DMBIN_FORMSOURCE
|
|
2997
|
+
DMBIN_USER: Final = 256
|
|
2998
|
+
|
|
2999
|
+
DMRES_DRAFT: Final = -1
|
|
3000
|
+
DMRES_LOW: Final = -2
|
|
3001
|
+
DMRES_MEDIUM: Final = -3
|
|
3002
|
+
DMRES_HIGH: Final = -4
|
|
3003
|
+
|
|
3004
|
+
DMCOLOR_MONOCHROME: Final = 1
|
|
3005
|
+
DMCOLOR_COLOR: Final = 2
|
|
3006
|
+
|
|
3007
|
+
DMDUP_SIMPLEX: Final = 1
|
|
3008
|
+
DMDUP_VERTICAL: Final = 2
|
|
3009
|
+
DMDUP_HORIZONTAL: Final = 3
|
|
3010
|
+
|
|
3011
|
+
DMTT_BITMAP: Final = 1
|
|
3012
|
+
DMTT_DOWNLOAD: Final = 2
|
|
3013
|
+
DMTT_SUBDEV: Final = 3
|
|
3014
|
+
DMTT_DOWNLOAD_OUTLINE: Final = 4
|
|
3015
|
+
|
|
3016
|
+
DMCOLLATE_FALSE: Final = 0
|
|
3017
|
+
DMCOLLATE_TRUE: Final = 1
|
|
3018
|
+
|
|
3019
|
+
DM_GRAYSCALE: Final = 1
|
|
3020
|
+
DM_INTERLACED: Final = 2
|
|
3021
|
+
|
|
3022
|
+
DMICMMETHOD_NONE: Final = 1
|
|
3023
|
+
DMICMMETHOD_SYSTEM: Final = 2
|
|
3024
|
+
DMICMMETHOD_DRIVER: Final = 3
|
|
3025
|
+
DMICMMETHOD_DEVICE: Final = 4
|
|
3026
|
+
DMICMMETHOD_USER: Final = 256
|
|
3027
|
+
|
|
3028
|
+
DMICM_SATURATE: Final = 1
|
|
3029
|
+
DMICM_CONTRAST: Final = 2
|
|
3030
|
+
DMICM_COLORIMETRIC: Final = 3
|
|
3031
|
+
DMICM_ABS_COLORIMETRIC: Final = 4
|
|
3032
|
+
DMICM_USER: Final = 256
|
|
3033
|
+
|
|
3034
|
+
DMMEDIA_STANDARD: Final = 1
|
|
3035
|
+
DMMEDIA_TRANSPARENCY: Final = 2
|
|
3036
|
+
DMMEDIA_GLOSSY: Final = 3
|
|
3037
|
+
DMMEDIA_USER: Final = 256
|
|
3038
|
+
|
|
3039
|
+
DMDITHER_NONE: Final = 1
|
|
3040
|
+
DMDITHER_COARSE: Final = 2
|
|
3041
|
+
DMDITHER_FINE: Final = 3
|
|
3042
|
+
DMDITHER_LINEART: Final = 4
|
|
3043
|
+
DMDITHER_ERRORDIFFUSION: Final = 5
|
|
3044
|
+
DMDITHER_RESERVED6: Final = 6
|
|
3045
|
+
DMDITHER_RESERVED7: Final = 7
|
|
3046
|
+
DMDITHER_RESERVED8: Final = 8
|
|
3047
|
+
DMDITHER_RESERVED9: Final = 9
|
|
3048
|
+
DMDITHER_GRAYSCALE: Final = 10
|
|
3049
|
+
DMDITHER_USER: Final = 256
|
|
3050
|
+
|
|
3051
|
+
DMNUP_SYSTEM: Final = 1
|
|
3052
|
+
DMNUP_ONEUP: Final = 2
|
|
3053
|
+
|
|
3054
|
+
FEATURESETTING_NUP: Final = 0
|
|
3055
|
+
FEATURESETTING_OUTPUT: Final = 1
|
|
3056
|
+
FEATURESETTING_PSLEVEL: Final = 2
|
|
3057
|
+
FEATURESETTING_CUSTPAPER: Final = 3
|
|
3058
|
+
FEATURESETTING_MIRROR: Final = 4
|
|
3059
|
+
FEATURESETTING_NEGATIVE: Final = 5
|
|
3060
|
+
FEATURESETTING_PROTOCOL: Final = 6
|
|
3061
|
+
FEATURESETTING_PRIVATE_BEGIN: Final = 0x1000
|
|
3062
|
+
FEATURESETTING_PRIVATE_END: Final = 0x1FFF
|
|
3063
|
+
|
|
3064
|
+
RDH_RECTANGLES: Final = 1
|
|
3065
|
+
GGO_METRICS: Final = 0
|
|
3066
|
+
GGO_BITMAP: Final = 1
|
|
3067
|
+
GGO_NATIVE: Final = 2
|
|
3068
|
+
TT_POLYGON_TYPE: Final = 24
|
|
3069
|
+
TT_PRIM_LINE: Final = 1
|
|
3070
|
+
TT_PRIM_QSPLINE: Final = 2
|
|
3071
|
+
TT_AVAILABLE: Final = 1
|
|
3072
|
+
TT_ENABLED: Final = 2
|
|
3073
|
+
DM_UPDATE: Final = 1
|
|
3074
|
+
DM_COPY: Final = 2
|
|
3075
|
+
DM_PROMPT: Final = 4
|
|
3076
|
+
DM_MODIFY: Final = 8
|
|
3077
|
+
DM_IN_BUFFER: Final = DM_MODIFY
|
|
3078
|
+
DM_IN_PROMPT: Final = DM_PROMPT
|
|
3079
|
+
DM_OUT_BUFFER: Final = DM_COPY
|
|
3080
|
+
DM_OUT_DEFAULT: Final = DM_UPDATE
|
|
3081
|
+
|
|
3082
|
+
DISPLAY_DEVICE_ATTACHED_TO_DESKTOP: Final = 1
|
|
3083
|
+
DISPLAY_DEVICE_MULTI_DRIVER: Final = 2
|
|
3084
|
+
DISPLAY_DEVICE_PRIMARY_DEVICE: Final = 4
|
|
3085
|
+
DISPLAY_DEVICE_MIRRORING_DRIVER: Final = 8
|
|
3086
|
+
DISPLAY_DEVICE_VGA_COMPATIBLE: Final = 16
|
|
3087
|
+
DISPLAY_DEVICE_REMOVABLE: Final = 32
|
|
3088
|
+
DISPLAY_DEVICE_MODESPRUNED: Final = 134217728
|
|
3089
|
+
DISPLAY_DEVICE_REMOTE: Final = 67108864
|
|
3090
|
+
DISPLAY_DEVICE_DISCONNECT: Final = 33554432
|
|
3091
|
+
|
|
3092
|
+
DC_FIELDS: Final = 1
|
|
3093
|
+
DC_PAPERS: Final = 2
|
|
3094
|
+
DC_PAPERSIZE: Final = 3
|
|
3095
|
+
DC_MINEXTENT: Final = 4
|
|
3096
|
+
DC_MAXEXTENT: Final = 5
|
|
3097
|
+
DC_BINS: Final = 6
|
|
3098
|
+
DC_DUPLEX: Final = 7
|
|
3099
|
+
DC_SIZE: Final = 8
|
|
3100
|
+
DC_EXTRA: Final = 9
|
|
3101
|
+
DC_VERSION: Final = 10
|
|
3102
|
+
DC_DRIVER: Final = 11
|
|
3103
|
+
DC_BINNAMES: Final = 12
|
|
3104
|
+
DC_ENUMRESOLUTIONS: Final = 13
|
|
3105
|
+
DC_FILEDEPENDENCIES: Final = 14
|
|
3106
|
+
DC_TRUETYPE: Final = 15
|
|
3107
|
+
DC_PAPERNAMES: Final = 16
|
|
3108
|
+
DC_ORIENTATION: Final = 17
|
|
3109
|
+
DC_COPIES: Final = 18
|
|
3110
|
+
DC_BINADJUST: Final = 19
|
|
3111
|
+
DC_EMF_COMPLIANT: Final = 20
|
|
3112
|
+
DC_DATATYPE_PRODUCED: Final = 21
|
|
3113
|
+
DC_COLLATE: Final = 22
|
|
3114
|
+
DC_MANUFACTURER: Final = 23
|
|
3115
|
+
DC_MODEL: Final = 24
|
|
3116
|
+
DC_PERSONALITY: Final = 25
|
|
3117
|
+
DC_PRINTRATE: Final = 26
|
|
3118
|
+
DC_PRINTRATEUNIT: Final = 27
|
|
3119
|
+
DC_PRINTERMEM: Final = 28
|
|
3120
|
+
DC_MEDIAREADY: Final = 29
|
|
3121
|
+
DC_STAPLE: Final = 30
|
|
3122
|
+
DC_PRINTRATEPPM: Final = 31
|
|
3123
|
+
DC_COLORDEVICE: Final = 32
|
|
3124
|
+
DC_NUP: Final = 33
|
|
3125
|
+
DC_MEDIATYPENAMES: Final = 34
|
|
3126
|
+
DC_MEDIATYPES: Final = 35
|
|
3127
|
+
|
|
3128
|
+
PRINTRATEUNIT_PPM: Final = 1
|
|
3129
|
+
PRINTRATEUNIT_CPS: Final = 2
|
|
3130
|
+
PRINTRATEUNIT_LPM: Final = 3
|
|
3131
|
+
PRINTRATEUNIT_IPM: Final = 4
|
|
3132
|
+
|
|
3133
|
+
DCTT_BITMAP: Final = 1
|
|
3134
|
+
DCTT_DOWNLOAD: Final = 2
|
|
3135
|
+
DCTT_SUBDEV: Final = 4
|
|
3136
|
+
DCTT_DOWNLOAD_OUTLINE: Final = 8
|
|
3137
|
+
|
|
3138
|
+
DCBA_FACEUPNONE: Final = 0
|
|
3139
|
+
DCBA_FACEUPCENTER: Final = 1
|
|
3140
|
+
DCBA_FACEUPLEFT: Final = 2
|
|
3141
|
+
DCBA_FACEUPRIGHT: Final = 3
|
|
3142
|
+
DCBA_FACEDOWNNONE: Final = 256
|
|
3143
|
+
DCBA_FACEDOWNCENTER: Final = 257
|
|
3144
|
+
DCBA_FACEDOWNLEFT: Final = 258
|
|
3145
|
+
DCBA_FACEDOWNRIGHT: Final = 259
|
|
3146
|
+
|
|
3147
|
+
CA_NEGATIVE: Final = 1
|
|
3148
|
+
CA_LOG_FILTER: Final = 2
|
|
3149
|
+
ILLUMINANT_DEVICE_DEFAULT: Final = 0
|
|
3150
|
+
ILLUMINANT_A: Final = 1
|
|
3151
|
+
ILLUMINANT_B: Final = 2
|
|
3152
|
+
ILLUMINANT_C: Final = 3
|
|
3153
|
+
ILLUMINANT_D50: Final = 4
|
|
3154
|
+
ILLUMINANT_D55: Final = 5
|
|
3155
|
+
ILLUMINANT_D65: Final = 6
|
|
3156
|
+
ILLUMINANT_D75: Final = 7
|
|
3157
|
+
ILLUMINANT_F2: Final = 8
|
|
3158
|
+
ILLUMINANT_MAX_INDEX: Final = ILLUMINANT_F2
|
|
3159
|
+
ILLUMINANT_TUNGSTEN: Final = ILLUMINANT_A
|
|
3160
|
+
ILLUMINANT_DAYLIGHT: Final = ILLUMINANT_C
|
|
3161
|
+
ILLUMINANT_FLUORESCENT: Final = ILLUMINANT_F2
|
|
3162
|
+
ILLUMINANT_NTSC: Final = ILLUMINANT_C
|
|
3163
|
+
|
|
3164
|
+
FONTMAPPER_MAX: Final = 10
|
|
3165
|
+
ENHMETA_SIGNATURE: Final = 1179469088
|
|
3166
|
+
ENHMETA_STOCK_OBJECT: Final = -2147483648
|
|
3167
|
+
EMR_HEADER: Final = 1
|
|
3168
|
+
EMR_POLYBEZIER: Final = 2
|
|
3169
|
+
EMR_POLYGON: Final = 3
|
|
3170
|
+
EMR_POLYLINE: Final = 4
|
|
3171
|
+
EMR_POLYBEZIERTO: Final = 5
|
|
3172
|
+
EMR_POLYLINETO: Final = 6
|
|
3173
|
+
EMR_POLYPOLYLINE: Final = 7
|
|
3174
|
+
EMR_POLYPOLYGON: Final = 8
|
|
3175
|
+
EMR_SETWINDOWEXTEX: Final = 9
|
|
3176
|
+
EMR_SETWINDOWORGEX: Final = 10
|
|
3177
|
+
EMR_SETVIEWPORTEXTEX: Final = 11
|
|
3178
|
+
EMR_SETVIEWPORTORGEX: Final = 12
|
|
3179
|
+
EMR_SETBRUSHORGEX: Final = 13
|
|
3180
|
+
EMR_EOF: Final = 14
|
|
3181
|
+
EMR_SETPIXELV: Final = 15
|
|
3182
|
+
EMR_SETMAPPERFLAGS: Final = 16
|
|
3183
|
+
EMR_SETMAPMODE: Final = 17
|
|
3184
|
+
EMR_SETBKMODE: Final = 18
|
|
3185
|
+
EMR_SETPOLYFILLMODE: Final = 19
|
|
3186
|
+
EMR_SETROP2: Final = 20
|
|
3187
|
+
EMR_SETSTRETCHBLTMODE: Final = 21
|
|
3188
|
+
EMR_SETTEXTALIGN: Final = 22
|
|
3189
|
+
EMR_SETCOLORADJUSTMENT: Final = 23
|
|
3190
|
+
EMR_SETTEXTCOLOR: Final = 24
|
|
3191
|
+
EMR_SETBKCOLOR: Final = 25
|
|
3192
|
+
EMR_OFFSETCLIPRGN: Final = 26
|
|
3193
|
+
EMR_MOVETOEX: Final = 27
|
|
3194
|
+
EMR_SETMETARGN: Final = 28
|
|
3195
|
+
EMR_EXCLUDECLIPRECT: Final = 29
|
|
3196
|
+
EMR_INTERSECTCLIPRECT: Final = 30
|
|
3197
|
+
EMR_SCALEVIEWPORTEXTEX: Final = 31
|
|
3198
|
+
EMR_SCALEWINDOWEXTEX: Final = 32
|
|
3199
|
+
EMR_SAVEDC: Final = 33
|
|
3200
|
+
EMR_RESTOREDC: Final = 34
|
|
3201
|
+
EMR_SETWORLDTRANSFORM: Final = 35
|
|
3202
|
+
EMR_MODIFYWORLDTRANSFORM: Final = 36
|
|
3203
|
+
EMR_SELECTOBJECT: Final = 37
|
|
3204
|
+
EMR_CREATEPEN: Final = 38
|
|
3205
|
+
EMR_CREATEBRUSHINDIRECT: Final = 39
|
|
3206
|
+
EMR_DELETEOBJECT: Final = 40
|
|
3207
|
+
EMR_ANGLEARC: Final = 41
|
|
3208
|
+
EMR_ELLIPSE: Final = 42
|
|
3209
|
+
EMR_RECTANGLE: Final = 43
|
|
3210
|
+
EMR_ROUNDRECT: Final = 44
|
|
3211
|
+
EMR_ARC: Final = 45
|
|
3212
|
+
EMR_CHORD: Final = 46
|
|
3213
|
+
EMR_PIE: Final = 47
|
|
3214
|
+
EMR_SELECTPALETTE: Final = 48
|
|
3215
|
+
EMR_CREATEPALETTE: Final = 49
|
|
3216
|
+
EMR_SETPALETTEENTRIES: Final = 50
|
|
3217
|
+
EMR_RESIZEPALETTE: Final = 51
|
|
3218
|
+
EMR_REALIZEPALETTE: Final = 52
|
|
3219
|
+
EMR_EXTFLOODFILL: Final = 53
|
|
3220
|
+
EMR_LINETO: Final = 54
|
|
3221
|
+
EMR_ARCTO: Final = 55
|
|
3222
|
+
EMR_POLYDRAW: Final = 56
|
|
3223
|
+
EMR_SETARCDIRECTION: Final = 57
|
|
3224
|
+
EMR_SETMITERLIMIT: Final = 58
|
|
3225
|
+
EMR_BEGINPATH: Final = 59
|
|
3226
|
+
EMR_ENDPATH: Final = 60
|
|
3227
|
+
EMR_CLOSEFIGURE: Final = 61
|
|
3228
|
+
EMR_FILLPATH: Final = 62
|
|
3229
|
+
EMR_STROKEANDFILLPATH: Final = 63
|
|
3230
|
+
EMR_STROKEPATH: Final = 64
|
|
3231
|
+
EMR_FLATTENPATH: Final = 65
|
|
3232
|
+
EMR_WIDENPATH: Final = 66
|
|
3233
|
+
EMR_SELECTCLIPPATH: Final = 67
|
|
3234
|
+
EMR_ABORTPATH: Final = 68
|
|
3235
|
+
EMR_GDICOMMENT: Final = 70
|
|
3236
|
+
EMR_FILLRGN: Final = 71
|
|
3237
|
+
EMR_FRAMERGN: Final = 72
|
|
3238
|
+
EMR_INVERTRGN: Final = 73
|
|
3239
|
+
EMR_PAINTRGN: Final = 74
|
|
3240
|
+
EMR_EXTSELECTCLIPRGN: Final = 75
|
|
3241
|
+
EMR_BITBLT: Final = 76
|
|
3242
|
+
EMR_STRETCHBLT: Final = 77
|
|
3243
|
+
EMR_MASKBLT: Final = 78
|
|
3244
|
+
EMR_PLGBLT: Final = 79
|
|
3245
|
+
EMR_SETDIBITSTODEVICE: Final = 80
|
|
3246
|
+
EMR_STRETCHDIBITS: Final = 81
|
|
3247
|
+
EMR_EXTCREATEFONTINDIRECTW: Final = 82
|
|
3248
|
+
EMR_EXTTEXTOUTA: Final = 83
|
|
3249
|
+
EMR_EXTTEXTOUTW: Final = 84
|
|
3250
|
+
EMR_POLYBEZIER16: Final = 85
|
|
3251
|
+
EMR_POLYGON16: Final = 86
|
|
3252
|
+
EMR_POLYLINE16: Final = 87
|
|
3253
|
+
EMR_POLYBEZIERTO16: Final = 88
|
|
3254
|
+
EMR_POLYLINETO16: Final = 89
|
|
3255
|
+
EMR_POLYPOLYLINE16: Final = 90
|
|
3256
|
+
EMR_POLYPOLYGON16: Final = 91
|
|
3257
|
+
EMR_POLYDRAW16: Final = 92
|
|
3258
|
+
EMR_CREATEMONOBRUSH: Final = 93
|
|
3259
|
+
EMR_CREATEDIBPATTERNBRUSHPT: Final = 94
|
|
3260
|
+
EMR_EXTCREATEPEN: Final = 95
|
|
3261
|
+
EMR_POLYTEXTOUTA: Final = 96
|
|
3262
|
+
EMR_POLYTEXTOUTW: Final = 97
|
|
3263
|
+
EMR_MIN: Final = 1
|
|
3264
|
+
EMR_MAX: Final = 97
|
|
3265
|
+
|
|
3266
|
+
PANOSE_COUNT: Final = 10
|
|
3267
|
+
PAN_FAMILYTYPE_INDEX: Final = 0
|
|
3268
|
+
PAN_SERIFSTYLE_INDEX: Final = 1
|
|
3269
|
+
PAN_WEIGHT_INDEX: Final = 2
|
|
3270
|
+
PAN_PROPORTION_INDEX: Final = 3
|
|
3271
|
+
PAN_CONTRAST_INDEX: Final = 4
|
|
3272
|
+
PAN_STROKEVARIATION_INDEX: Final = 5
|
|
3273
|
+
PAN_ARMSTYLE_INDEX: Final = 6
|
|
3274
|
+
PAN_LETTERFORM_INDEX: Final = 7
|
|
3275
|
+
PAN_MIDLINE_INDEX: Final = 8
|
|
3276
|
+
PAN_XHEIGHT_INDEX: Final = 9
|
|
3277
|
+
PAN_CULTURE_LATIN: Final = 0
|
|
3278
|
+
PAN_ANY: Final = 0
|
|
3279
|
+
PAN_NO_FIT: Final = 1
|
|
3280
|
+
PAN_FAMILY_TEXT_DISPLAY: Final = 2
|
|
3281
|
+
PAN_FAMILY_SCRIPT: Final = 3
|
|
3282
|
+
PAN_FAMILY_DECORATIVE: Final = 4
|
|
3283
|
+
PAN_FAMILY_PICTORIAL: Final = 5
|
|
3284
|
+
PAN_SERIF_COVE: Final = 2
|
|
3285
|
+
PAN_SERIF_OBTUSE_COVE: Final = 3
|
|
3286
|
+
PAN_SERIF_SQUARE_COVE: Final = 4
|
|
3287
|
+
PAN_SERIF_OBTUSE_SQUARE_COVE: Final = 5
|
|
3288
|
+
PAN_SERIF_SQUARE: Final = 6
|
|
3289
|
+
PAN_SERIF_THIN: Final = 7
|
|
3290
|
+
PAN_SERIF_BONE: Final = 8
|
|
3291
|
+
PAN_SERIF_EXAGGERATED: Final = 9
|
|
3292
|
+
PAN_SERIF_TRIANGLE: Final = 10
|
|
3293
|
+
PAN_SERIF_NORMAL_SANS: Final = 11
|
|
3294
|
+
PAN_SERIF_OBTUSE_SANS: Final = 12
|
|
3295
|
+
PAN_SERIF_PERP_SANS: Final = 13
|
|
3296
|
+
PAN_SERIF_FLARED: Final = 14
|
|
3297
|
+
PAN_SERIF_ROUNDED: Final = 15
|
|
3298
|
+
PAN_WEIGHT_VERY_LIGHT: Final = 2
|
|
3299
|
+
PAN_WEIGHT_LIGHT: Final = 3
|
|
3300
|
+
PAN_WEIGHT_THIN: Final = 4
|
|
3301
|
+
PAN_WEIGHT_BOOK: Final = 5
|
|
3302
|
+
PAN_WEIGHT_MEDIUM: Final = 6
|
|
3303
|
+
PAN_WEIGHT_DEMI: Final = 7
|
|
3304
|
+
PAN_WEIGHT_BOLD: Final = 8
|
|
3305
|
+
PAN_WEIGHT_HEAVY: Final = 9
|
|
3306
|
+
PAN_WEIGHT_BLACK: Final = 10
|
|
3307
|
+
PAN_WEIGHT_NORD: Final = 11
|
|
3308
|
+
PAN_PROP_OLD_STYLE: Final = 2
|
|
3309
|
+
PAN_PROP_MODERN: Final = 3
|
|
3310
|
+
PAN_PROP_EVEN_WIDTH: Final = 4
|
|
3311
|
+
PAN_PROP_EXPANDED: Final = 5
|
|
3312
|
+
PAN_PROP_CONDENSED: Final = 6
|
|
3313
|
+
PAN_PROP_VERY_EXPANDED: Final = 7
|
|
3314
|
+
PAN_PROP_VERY_CONDENSED: Final = 8
|
|
3315
|
+
PAN_PROP_MONOSPACED: Final = 9
|
|
3316
|
+
PAN_CONTRAST_NONE: Final = 2
|
|
3317
|
+
PAN_CONTRAST_VERY_LOW: Final = 3
|
|
3318
|
+
PAN_CONTRAST_LOW: Final = 4
|
|
3319
|
+
PAN_CONTRAST_MEDIUM_LOW: Final = 5
|
|
3320
|
+
PAN_CONTRAST_MEDIUM: Final = 6
|
|
3321
|
+
PAN_CONTRAST_MEDIUM_HIGH: Final = 7
|
|
3322
|
+
PAN_CONTRAST_HIGH: Final = 8
|
|
3323
|
+
PAN_CONTRAST_VERY_HIGH: Final = 9
|
|
3324
|
+
PAN_STROKE_GRADUAL_DIAG: Final = 2
|
|
3325
|
+
PAN_STROKE_GRADUAL_TRAN: Final = 3
|
|
3326
|
+
PAN_STROKE_GRADUAL_VERT: Final = 4
|
|
3327
|
+
PAN_STROKE_GRADUAL_HORZ: Final = 5
|
|
3328
|
+
PAN_STROKE_RAPID_VERT: Final = 6
|
|
3329
|
+
PAN_STROKE_RAPID_HORZ: Final = 7
|
|
3330
|
+
PAN_STROKE_INSTANT_VERT: Final = 8
|
|
3331
|
+
PAN_STRAIGHT_ARMS_HORZ: Final = 2
|
|
3332
|
+
PAN_STRAIGHT_ARMS_WEDGE: Final = 3
|
|
3333
|
+
PAN_STRAIGHT_ARMS_VERT: Final = 4
|
|
3334
|
+
PAN_STRAIGHT_ARMS_SINGLE_SERIF: Final = 5
|
|
3335
|
+
PAN_STRAIGHT_ARMS_DOUBLE_SERIF: Final = 6
|
|
3336
|
+
PAN_BENT_ARMS_HORZ: Final = 7
|
|
3337
|
+
PAN_BENT_ARMS_WEDGE: Final = 8
|
|
3338
|
+
PAN_BENT_ARMS_VERT: Final = 9
|
|
3339
|
+
PAN_BENT_ARMS_SINGLE_SERIF: Final = 10
|
|
3340
|
+
PAN_BENT_ARMS_DOUBLE_SERIF: Final = 11
|
|
3341
|
+
PAN_LETT_NORMAL_CONTACT: Final = 2
|
|
3342
|
+
PAN_LETT_NORMAL_WEIGHTED: Final = 3
|
|
3343
|
+
PAN_LETT_NORMAL_BOXED: Final = 4
|
|
3344
|
+
PAN_LETT_NORMAL_FLATTENED: Final = 5
|
|
3345
|
+
PAN_LETT_NORMAL_ROUNDED: Final = 6
|
|
3346
|
+
PAN_LETT_NORMAL_OFF_CENTER: Final = 7
|
|
3347
|
+
PAN_LETT_NORMAL_SQUARE: Final = 8
|
|
3348
|
+
PAN_LETT_OBLIQUE_CONTACT: Final = 9
|
|
3349
|
+
PAN_LETT_OBLIQUE_WEIGHTED: Final = 10
|
|
3350
|
+
PAN_LETT_OBLIQUE_BOXED: Final = 11
|
|
3351
|
+
PAN_LETT_OBLIQUE_FLATTENED: Final = 12
|
|
3352
|
+
PAN_LETT_OBLIQUE_ROUNDED: Final = 13
|
|
3353
|
+
PAN_LETT_OBLIQUE_OFF_CENTER: Final = 14
|
|
3354
|
+
PAN_LETT_OBLIQUE_SQUARE: Final = 15
|
|
3355
|
+
PAN_MIDLINE_STANDARD_TRIMMED: Final = 2
|
|
3356
|
+
PAN_MIDLINE_STANDARD_POINTED: Final = 3
|
|
3357
|
+
PAN_MIDLINE_STANDARD_SERIFED: Final = 4
|
|
3358
|
+
PAN_MIDLINE_HIGH_TRIMMED: Final = 5
|
|
3359
|
+
PAN_MIDLINE_HIGH_POINTED: Final = 6
|
|
3360
|
+
PAN_MIDLINE_HIGH_SERIFED: Final = 7
|
|
3361
|
+
PAN_MIDLINE_CONSTANT_TRIMMED: Final = 8
|
|
3362
|
+
PAN_MIDLINE_CONSTANT_POINTED: Final = 9
|
|
3363
|
+
PAN_MIDLINE_CONSTANT_SERIFED: Final = 10
|
|
3364
|
+
PAN_MIDLINE_LOW_TRIMMED: Final = 11
|
|
3365
|
+
PAN_MIDLINE_LOW_POINTED: Final = 12
|
|
3366
|
+
PAN_MIDLINE_LOW_SERIFED: Final = 13
|
|
3367
|
+
PAN_XHEIGHT_CONSTANT_SMALL: Final = 2
|
|
3368
|
+
PAN_XHEIGHT_CONSTANT_STD: Final = 3
|
|
3369
|
+
PAN_XHEIGHT_CONSTANT_LARGE: Final = 4
|
|
3370
|
+
PAN_XHEIGHT_DUCKING_SMALL: Final = 5
|
|
3371
|
+
PAN_XHEIGHT_DUCKING_STD: Final = 6
|
|
3372
|
+
PAN_XHEIGHT_DUCKING_LARGE: Final = 7
|
|
3373
|
+
ELF_VENDOR_SIZE: Final = 4
|
|
3374
|
+
ELF_VERSION: Final = 0
|
|
3375
|
+
ELF_CULTURE_LATIN: Final = 0
|
|
3376
|
+
RASTER_FONTTYPE: Final = 1
|
|
3377
|
+
DEVICE_FONTTYPE: Final = 2
|
|
3378
|
+
TRUETYPE_FONTTYPE: Final = 4
|
|
3379
|
+
|
|
3380
|
+
def PALETTEINDEX(i: int) -> int: ...
|
|
3381
|
+
|
|
3382
|
+
PC_RESERVED: Final = 1
|
|
3383
|
+
PC_EXPLICIT: Final = 2
|
|
3384
|
+
PC_NOCOLLAPSE: Final = 4
|
|
3385
|
+
|
|
3386
|
+
def GetRValue(rgb: int) -> int: ...
|
|
3387
|
+
def GetGValue(rgb: int) -> int: ...
|
|
3388
|
+
def GetBValue(rgb: int) -> int: ...
|
|
3389
|
+
|
|
3390
|
+
TRANSPARENT: Final = 1
|
|
3391
|
+
OPAQUE: Final = 2
|
|
3392
|
+
BKMODE_LAST: Final = 2
|
|
3393
|
+
GM_COMPATIBLE: Final = 1
|
|
3394
|
+
GM_ADVANCED: Final = 2
|
|
3395
|
+
GM_LAST: Final = 2
|
|
3396
|
+
PT_CLOSEFIGURE: Final = 1
|
|
3397
|
+
PT_LINETO: Final = 2
|
|
3398
|
+
PT_BEZIERTO: Final = 4
|
|
3399
|
+
PT_MOVETO: Final = 6
|
|
3400
|
+
MM_TEXT: Final = 1
|
|
3401
|
+
MM_LOMETRIC: Final = 2
|
|
3402
|
+
MM_HIMETRIC: Final = 3
|
|
3403
|
+
MM_LOENGLISH: Final = 4
|
|
3404
|
+
MM_HIENGLISH: Final = 5
|
|
3405
|
+
MM_TWIPS: Final = 6
|
|
3406
|
+
MM_ISOTROPIC: Final = 7
|
|
3407
|
+
MM_ANISOTROPIC: Final = 8
|
|
3408
|
+
MM_MIN: Final = MM_TEXT
|
|
3409
|
+
MM_MAX: Final = MM_ANISOTROPIC
|
|
3410
|
+
MM_MAX_FIXEDSCALE: Final = MM_TWIPS
|
|
3411
|
+
ABSOLUTE: Final = 1
|
|
3412
|
+
RELATIVE: Final = 2
|
|
3413
|
+
WHITE_BRUSH: Final = 0
|
|
3414
|
+
LTGRAY_BRUSH: Final = 1
|
|
3415
|
+
GRAY_BRUSH: Final = 2
|
|
3416
|
+
DKGRAY_BRUSH: Final = 3
|
|
3417
|
+
BLACK_BRUSH: Final = 4
|
|
3418
|
+
NULL_BRUSH: Final = 5
|
|
3419
|
+
HOLLOW_BRUSH: Final = NULL_BRUSH
|
|
3420
|
+
WHITE_PEN: Final = 6
|
|
3421
|
+
BLACK_PEN: Final = 7
|
|
3422
|
+
NULL_PEN: Final = 8
|
|
3423
|
+
OEM_FIXED_FONT: Final = 10
|
|
3424
|
+
ANSI_FIXED_FONT: Final = 11
|
|
3425
|
+
ANSI_VAR_FONT: Final = 12
|
|
3426
|
+
SYSTEM_FONT: Final = 13
|
|
3427
|
+
DEVICE_DEFAULT_FONT: Final = 14
|
|
3428
|
+
DEFAULT_PALETTE: Final = 15
|
|
3429
|
+
SYSTEM_FIXED_FONT: Final = 16
|
|
3430
|
+
STOCK_LAST: Final = 16
|
|
3431
|
+
CLR_INVALID: Final = -1
|
|
3432
|
+
|
|
3433
|
+
DC_BRUSH: Final = 18
|
|
3434
|
+
DC_PEN: Final = 19
|
|
3435
|
+
|
|
3436
|
+
STATUS_WAIT_0: Final = 0
|
|
3437
|
+
STATUS_ABANDONED_WAIT_0: Final = 128
|
|
3438
|
+
STATUS_USER_APC: Final = 192
|
|
3439
|
+
STATUS_TIMEOUT: Final = 258
|
|
3440
|
+
STATUS_PENDING: Final = 259
|
|
3441
|
+
STATUS_SEGMENT_NOTIFICATION: Final = 1073741829
|
|
3442
|
+
STATUS_GUARD_PAGE_VIOLATION: Final = -2147483647
|
|
3443
|
+
STATUS_DATATYPE_MISALIGNMENT: Final = -2147483646
|
|
3444
|
+
STATUS_BREAKPOINT: Final = -2147483645
|
|
3445
|
+
STATUS_SINGLE_STEP: Final = -2147483644
|
|
3446
|
+
STATUS_ACCESS_VIOLATION: Final = -1073741819
|
|
3447
|
+
STATUS_IN_PAGE_ERROR: Final = -1073741818
|
|
3448
|
+
STATUS_INVALID_HANDLE: Final = -1073741816
|
|
3449
|
+
STATUS_NO_MEMORY: Final = -1073741801
|
|
3450
|
+
STATUS_ILLEGAL_INSTRUCTION: Final = -1073741795
|
|
3451
|
+
STATUS_NONCONTINUABLE_EXCEPTION: Final = -1073741787
|
|
3452
|
+
STATUS_INVALID_DISPOSITION: Final = -1073741786
|
|
3453
|
+
STATUS_ARRAY_BOUNDS_EXCEEDED: Final = -1073741684
|
|
3454
|
+
STATUS_FLOAT_DENORMAL_OPERAND: Final = -1073741683
|
|
3455
|
+
STATUS_FLOAT_DIVIDE_BY_ZERO: Final = -1073741682
|
|
3456
|
+
STATUS_FLOAT_INEXACT_RESULT: Final = -1073741681
|
|
3457
|
+
STATUS_FLOAT_INVALID_OPERATION: Final = -1073741680
|
|
3458
|
+
STATUS_FLOAT_OVERFLOW: Final = -1073741679
|
|
3459
|
+
STATUS_FLOAT_STACK_CHECK: Final = -1073741678
|
|
3460
|
+
STATUS_FLOAT_UNDERFLOW: Final = -1073741677
|
|
3461
|
+
STATUS_INTEGER_DIVIDE_BY_ZERO: Final = -1073741676
|
|
3462
|
+
STATUS_INTEGER_OVERFLOW: Final = -1073741675
|
|
3463
|
+
STATUS_PRIVILEGED_INSTRUCTION: Final = -1073741674
|
|
3464
|
+
STATUS_STACK_OVERFLOW: Final = -1073741571
|
|
3465
|
+
STATUS_CONTROL_C_EXIT: Final = -1073741510
|
|
3466
|
+
|
|
3467
|
+
WAIT_FAILED: Final = -1
|
|
3468
|
+
WAIT_OBJECT_0: Final[int]
|
|
3469
|
+
|
|
3470
|
+
WAIT_ABANDONED: Final[int]
|
|
3471
|
+
WAIT_ABANDONED_0: Final[int]
|
|
3472
|
+
|
|
3473
|
+
WAIT_TIMEOUT: Final = STATUS_TIMEOUT
|
|
3474
|
+
WAIT_IO_COMPLETION: Final = STATUS_USER_APC
|
|
3475
|
+
STILL_ACTIVE: Final = STATUS_PENDING
|
|
3476
|
+
EXCEPTION_ACCESS_VIOLATION: Final = STATUS_ACCESS_VIOLATION
|
|
3477
|
+
EXCEPTION_DATATYPE_MISALIGNMENT: Final = STATUS_DATATYPE_MISALIGNMENT
|
|
3478
|
+
EXCEPTION_BREAKPOINT: Final = STATUS_BREAKPOINT
|
|
3479
|
+
EXCEPTION_SINGLE_STEP: Final = STATUS_SINGLE_STEP
|
|
3480
|
+
EXCEPTION_ARRAY_BOUNDS_EXCEEDED: Final = STATUS_ARRAY_BOUNDS_EXCEEDED
|
|
3481
|
+
EXCEPTION_FLT_DENORMAL_OPERAND: Final = STATUS_FLOAT_DENORMAL_OPERAND
|
|
3482
|
+
EXCEPTION_FLT_DIVIDE_BY_ZERO: Final = STATUS_FLOAT_DIVIDE_BY_ZERO
|
|
3483
|
+
EXCEPTION_FLT_INEXACT_RESULT: Final = STATUS_FLOAT_INEXACT_RESULT
|
|
3484
|
+
EXCEPTION_FLT_INVALID_OPERATION: Final = STATUS_FLOAT_INVALID_OPERATION
|
|
3485
|
+
EXCEPTION_FLT_OVERFLOW: Final = STATUS_FLOAT_OVERFLOW
|
|
3486
|
+
EXCEPTION_FLT_STACK_CHECK: Final = STATUS_FLOAT_STACK_CHECK
|
|
3487
|
+
EXCEPTION_FLT_UNDERFLOW: Final = STATUS_FLOAT_UNDERFLOW
|
|
3488
|
+
EXCEPTION_INT_DIVIDE_BY_ZERO: Final = STATUS_INTEGER_DIVIDE_BY_ZERO
|
|
3489
|
+
EXCEPTION_INT_OVERFLOW: Final = STATUS_INTEGER_OVERFLOW
|
|
3490
|
+
EXCEPTION_PRIV_INSTRUCTION: Final = STATUS_PRIVILEGED_INSTRUCTION
|
|
3491
|
+
EXCEPTION_IN_PAGE_ERROR: Final = STATUS_IN_PAGE_ERROR
|
|
3492
|
+
EXCEPTION_ILLEGAL_INSTRUCTION: Final = STATUS_ILLEGAL_INSTRUCTION
|
|
3493
|
+
EXCEPTION_NONCONTINUABLE_EXCEPTION: Final = STATUS_NONCONTINUABLE_EXCEPTION
|
|
3494
|
+
EXCEPTION_STACK_OVERFLOW: Final = STATUS_STACK_OVERFLOW
|
|
3495
|
+
EXCEPTION_INVALID_DISPOSITION: Final = STATUS_INVALID_DISPOSITION
|
|
3496
|
+
EXCEPTION_GUARD_PAGE: Final = STATUS_GUARD_PAGE_VIOLATION
|
|
3497
|
+
EXCEPTION_INVALID_HANDLE: Final = STATUS_INVALID_HANDLE
|
|
3498
|
+
CONTROL_C_EXIT: Final = STATUS_CONTROL_C_EXIT
|
|
3499
|
+
|
|
3500
|
+
SPI_GETBEEP: Final = 1
|
|
3501
|
+
SPI_SETBEEP: Final = 2
|
|
3502
|
+
SPI_GETMOUSE: Final = 3
|
|
3503
|
+
SPI_SETMOUSE: Final = 4
|
|
3504
|
+
SPI_GETBORDER: Final = 5
|
|
3505
|
+
SPI_SETBORDER: Final = 6
|
|
3506
|
+
SPI_GETKEYBOARDSPEED: Final = 10
|
|
3507
|
+
SPI_SETKEYBOARDSPEED: Final = 11
|
|
3508
|
+
SPI_LANGDRIVER: Final = 12
|
|
3509
|
+
SPI_ICONHORIZONTALSPACING: Final = 13
|
|
3510
|
+
SPI_GETSCREENSAVETIMEOUT: Final = 14
|
|
3511
|
+
SPI_SETSCREENSAVETIMEOUT: Final = 15
|
|
3512
|
+
SPI_GETSCREENSAVEACTIVE: Final = 16
|
|
3513
|
+
SPI_SETSCREENSAVEACTIVE: Final = 17
|
|
3514
|
+
SPI_GETGRIDGRANULARITY: Final = 18
|
|
3515
|
+
SPI_SETGRIDGRANULARITY: Final = 19
|
|
3516
|
+
SPI_SETDESKWALLPAPER: Final = 20
|
|
3517
|
+
SPI_SETDESKPATTERN: Final = 21
|
|
3518
|
+
SPI_GETKEYBOARDDELAY: Final = 22
|
|
3519
|
+
SPI_SETKEYBOARDDELAY: Final = 23
|
|
3520
|
+
SPI_ICONVERTICALSPACING: Final = 24
|
|
3521
|
+
SPI_GETICONTITLEWRAP: Final = 25
|
|
3522
|
+
SPI_SETICONTITLEWRAP: Final = 26
|
|
3523
|
+
SPI_GETMENUDROPALIGNMENT: Final = 27
|
|
3524
|
+
SPI_SETMENUDROPALIGNMENT: Final = 28
|
|
3525
|
+
SPI_SETDOUBLECLKWIDTH: Final = 29
|
|
3526
|
+
SPI_SETDOUBLECLKHEIGHT: Final = 30
|
|
3527
|
+
SPI_GETICONTITLELOGFONT: Final = 31
|
|
3528
|
+
SPI_SETDOUBLECLICKTIME: Final = 32
|
|
3529
|
+
SPI_SETMOUSEBUTTONSWAP: Final = 33
|
|
3530
|
+
SPI_SETICONTITLELOGFONT: Final = 34
|
|
3531
|
+
SPI_GETFASTTASKSWITCH: Final = 35
|
|
3532
|
+
SPI_SETFASTTASKSWITCH: Final = 36
|
|
3533
|
+
SPI_SETDRAGFULLWINDOWS: Final = 37
|
|
3534
|
+
SPI_GETDRAGFULLWINDOWS: Final = 38
|
|
3535
|
+
SPI_GETNONCLIENTMETRICS: Final = 41
|
|
3536
|
+
SPI_SETNONCLIENTMETRICS: Final = 42
|
|
3537
|
+
SPI_GETMINIMIZEDMETRICS: Final = 43
|
|
3538
|
+
SPI_SETMINIMIZEDMETRICS: Final = 44
|
|
3539
|
+
SPI_GETICONMETRICS: Final = 45
|
|
3540
|
+
SPI_SETICONMETRICS: Final = 46
|
|
3541
|
+
SPI_SETWORKAREA: Final = 47
|
|
3542
|
+
SPI_GETWORKAREA: Final = 48
|
|
3543
|
+
SPI_SETPENWINDOWS: Final = 49
|
|
3544
|
+
SPI_GETFILTERKEYS: Final = 50
|
|
3545
|
+
SPI_SETFILTERKEYS: Final = 51
|
|
3546
|
+
SPI_GETTOGGLEKEYS: Final = 52
|
|
3547
|
+
SPI_SETTOGGLEKEYS: Final = 53
|
|
3548
|
+
SPI_GETMOUSEKEYS: Final = 54
|
|
3549
|
+
SPI_SETMOUSEKEYS: Final = 55
|
|
3550
|
+
SPI_GETSHOWSOUNDS: Final = 56
|
|
3551
|
+
SPI_SETSHOWSOUNDS: Final = 57
|
|
3552
|
+
SPI_GETSTICKYKEYS: Final = 58
|
|
3553
|
+
SPI_SETSTICKYKEYS: Final = 59
|
|
3554
|
+
SPI_GETACCESSTIMEOUT: Final = 60
|
|
3555
|
+
SPI_SETACCESSTIMEOUT: Final = 61
|
|
3556
|
+
SPI_GETSERIALKEYS: Final = 62
|
|
3557
|
+
SPI_SETSERIALKEYS: Final = 63
|
|
3558
|
+
SPI_GETSOUNDSENTRY: Final = 64
|
|
3559
|
+
SPI_SETSOUNDSENTRY: Final = 65
|
|
3560
|
+
SPI_GETHIGHCONTRAST: Final = 66
|
|
3561
|
+
SPI_SETHIGHCONTRAST: Final = 67
|
|
3562
|
+
SPI_GETKEYBOARDPREF: Final = 68
|
|
3563
|
+
SPI_SETKEYBOARDPREF: Final = 69
|
|
3564
|
+
SPI_GETSCREENREADER: Final = 70
|
|
3565
|
+
SPI_SETSCREENREADER: Final = 71
|
|
3566
|
+
SPI_GETANIMATION: Final = 72
|
|
3567
|
+
SPI_SETANIMATION: Final = 73
|
|
3568
|
+
SPI_GETFONTSMOOTHING: Final = 74
|
|
3569
|
+
SPI_SETFONTSMOOTHING: Final = 75
|
|
3570
|
+
SPI_SETDRAGWIDTH: Final = 76
|
|
3571
|
+
SPI_SETDRAGHEIGHT: Final = 77
|
|
3572
|
+
SPI_SETHANDHELD: Final = 78
|
|
3573
|
+
SPI_GETLOWPOWERTIMEOUT: Final = 79
|
|
3574
|
+
SPI_GETPOWEROFFTIMEOUT: Final = 80
|
|
3575
|
+
SPI_SETLOWPOWERTIMEOUT: Final = 81
|
|
3576
|
+
SPI_SETPOWEROFFTIMEOUT: Final = 82
|
|
3577
|
+
SPI_GETLOWPOWERACTIVE: Final = 83
|
|
3578
|
+
SPI_GETPOWEROFFACTIVE: Final = 84
|
|
3579
|
+
SPI_SETLOWPOWERACTIVE: Final = 85
|
|
3580
|
+
SPI_SETPOWEROFFACTIVE: Final = 86
|
|
3581
|
+
SPI_SETCURSORS: Final = 87
|
|
3582
|
+
SPI_SETICONS: Final = 88
|
|
3583
|
+
SPI_GETDEFAULTINPUTLANG: Final = 89
|
|
3584
|
+
SPI_SETDEFAULTINPUTLANG: Final = 90
|
|
3585
|
+
SPI_SETLANGTOGGLE: Final = 91
|
|
3586
|
+
SPI_GETWINDOWSEXTENSION: Final = 92
|
|
3587
|
+
SPI_SETMOUSETRAILS: Final = 93
|
|
3588
|
+
SPI_GETMOUSETRAILS: Final = 94
|
|
3589
|
+
SPI_GETSNAPTODEFBUTTON: Final = 95
|
|
3590
|
+
SPI_SETSNAPTODEFBUTTON: Final = 96
|
|
3591
|
+
SPI_SETSCREENSAVERRUNNING: Final = 97
|
|
3592
|
+
SPI_SCREENSAVERRUNNING: Final = SPI_SETSCREENSAVERRUNNING
|
|
3593
|
+
SPI_GETMOUSEHOVERWIDTH: Final = 98
|
|
3594
|
+
SPI_SETMOUSEHOVERWIDTH: Final = 99
|
|
3595
|
+
SPI_GETMOUSEHOVERHEIGHT: Final = 100
|
|
3596
|
+
SPI_SETMOUSEHOVERHEIGHT: Final = 101
|
|
3597
|
+
SPI_GETMOUSEHOVERTIME: Final = 102
|
|
3598
|
+
SPI_SETMOUSEHOVERTIME: Final = 103
|
|
3599
|
+
SPI_GETWHEELSCROLLLINES: Final = 104
|
|
3600
|
+
SPI_SETWHEELSCROLLLINES: Final = 105
|
|
3601
|
+
SPI_GETMENUSHOWDELAY: Final = 106
|
|
3602
|
+
SPI_SETMENUSHOWDELAY: Final = 107
|
|
3603
|
+
|
|
3604
|
+
SPI_GETSHOWIMEUI: Final = 110
|
|
3605
|
+
SPI_SETSHOWIMEUI: Final = 111
|
|
3606
|
+
SPI_GETMOUSESPEED: Final = 112
|
|
3607
|
+
SPI_SETMOUSESPEED: Final = 113
|
|
3608
|
+
SPI_GETSCREENSAVERRUNNING: Final = 114
|
|
3609
|
+
SPI_GETDESKWALLPAPER: Final = 115
|
|
3610
|
+
|
|
3611
|
+
SPI_GETACTIVEWINDOWTRACKING: Final = 4096
|
|
3612
|
+
SPI_SETACTIVEWINDOWTRACKING: Final = 4097
|
|
3613
|
+
SPI_GETMENUANIMATION: Final = 4098
|
|
3614
|
+
SPI_SETMENUANIMATION: Final = 4099
|
|
3615
|
+
SPI_GETCOMBOBOXANIMATION: Final = 4100
|
|
3616
|
+
SPI_SETCOMBOBOXANIMATION: Final = 4101
|
|
3617
|
+
SPI_GETLISTBOXSMOOTHSCROLLING: Final = 4102
|
|
3618
|
+
SPI_SETLISTBOXSMOOTHSCROLLING: Final = 4103
|
|
3619
|
+
SPI_GETGRADIENTCAPTIONS: Final = 4104
|
|
3620
|
+
SPI_SETGRADIENTCAPTIONS: Final = 4105
|
|
3621
|
+
SPI_GETKEYBOARDCUES: Final = 4106
|
|
3622
|
+
SPI_SETKEYBOARDCUES: Final = 4107
|
|
3623
|
+
SPI_GETMENUUNDERLINES: Final = 4106
|
|
3624
|
+
SPI_SETMENUUNDERLINES: Final = 4107
|
|
3625
|
+
SPI_GETACTIVEWNDTRKZORDER: Final = 4108
|
|
3626
|
+
SPI_SETACTIVEWNDTRKZORDER: Final = 4109
|
|
3627
|
+
SPI_GETHOTTRACKING: Final = 4110
|
|
3628
|
+
SPI_SETHOTTRACKING: Final = 4111
|
|
3629
|
+
|
|
3630
|
+
SPI_GETMENUFADE: Final = 4114
|
|
3631
|
+
SPI_SETMENUFADE: Final = 4115
|
|
3632
|
+
SPI_GETSELECTIONFADE: Final = 4116
|
|
3633
|
+
SPI_SETSELECTIONFADE: Final = 4117
|
|
3634
|
+
SPI_GETTOOLTIPANIMATION: Final = 4118
|
|
3635
|
+
SPI_SETTOOLTIPANIMATION: Final = 4119
|
|
3636
|
+
SPI_GETTOOLTIPFADE: Final = 4120
|
|
3637
|
+
SPI_SETTOOLTIPFADE: Final = 4121
|
|
3638
|
+
SPI_GETCURSORSHADOW: Final = 4122
|
|
3639
|
+
SPI_SETCURSORSHADOW: Final = 4123
|
|
3640
|
+
SPI_GETMOUSESONAR: Final = 4124
|
|
3641
|
+
SPI_SETMOUSESONAR: Final = 4125
|
|
3642
|
+
SPI_GETMOUSECLICKLOCK: Final = 4126
|
|
3643
|
+
SPI_SETMOUSECLICKLOCK: Final = 4127
|
|
3644
|
+
SPI_GETMOUSEVANISH: Final = 4128
|
|
3645
|
+
SPI_SETMOUSEVANISH: Final = 4129
|
|
3646
|
+
SPI_GETFLATMENU: Final = 4130
|
|
3647
|
+
SPI_SETFLATMENU: Final = 4131
|
|
3648
|
+
SPI_GETDROPSHADOW: Final = 4132
|
|
3649
|
+
SPI_SETDROPSHADOW: Final = 4133
|
|
3650
|
+
SPI_GETBLOCKSENDINPUTRESETS: Final = 4134
|
|
3651
|
+
SPI_SETBLOCKSENDINPUTRESETS: Final = 4135
|
|
3652
|
+
SPI_GETUIEFFECTS: Final = 4158
|
|
3653
|
+
SPI_SETUIEFFECTS: Final = 4159
|
|
3654
|
+
|
|
3655
|
+
SPI_GETFOREGROUNDLOCKTIMEOUT: Final = 8192
|
|
3656
|
+
SPI_SETFOREGROUNDLOCKTIMEOUT: Final = 8193
|
|
3657
|
+
SPI_GETACTIVEWNDTRKTIMEOUT: Final = 8194
|
|
3658
|
+
SPI_SETACTIVEWNDTRKTIMEOUT: Final = 8195
|
|
3659
|
+
SPI_GETFOREGROUNDFLASHCOUNT: Final = 8196
|
|
3660
|
+
SPI_SETFOREGROUNDFLASHCOUNT: Final = 8197
|
|
3661
|
+
SPI_GETCARETWIDTH: Final = 8198
|
|
3662
|
+
SPI_SETCARETWIDTH: Final = 8199
|
|
3663
|
+
SPI_GETMOUSECLICKLOCKTIME: Final = 8200
|
|
3664
|
+
SPI_SETMOUSECLICKLOCKTIME: Final = 8201
|
|
3665
|
+
SPI_GETFONTSMOOTHINGTYPE: Final = 8202
|
|
3666
|
+
SPI_SETFONTSMOOTHINGTYPE: Final = 8203
|
|
3667
|
+
SPI_GETFONTSMOOTHINGCONTRAST: Final = 8204
|
|
3668
|
+
SPI_SETFONTSMOOTHINGCONTRAST: Final = 8205
|
|
3669
|
+
SPI_GETFOCUSBORDERWIDTH: Final = 8206
|
|
3670
|
+
SPI_SETFOCUSBORDERWIDTH: Final = 8207
|
|
3671
|
+
SPI_GETFOCUSBORDERHEIGHT: Final = 8208
|
|
3672
|
+
SPI_SETFOCUSBORDERHEIGHT: Final = 8209
|
|
3673
|
+
SPI_GETFONTSMOOTHINGORIENTATION: Final = 8210
|
|
3674
|
+
SPI_SETFONTSMOOTHINGORIENTATION: Final = 8211
|
|
3675
|
+
|
|
3676
|
+
SPIF_UPDATEINIFILE: Final = 1
|
|
3677
|
+
SPIF_SENDWININICHANGE: Final = 2
|
|
3678
|
+
SPIF_SENDCHANGE: Final = SPIF_SENDWININICHANGE
|
|
3679
|
+
|
|
3680
|
+
FE_FONTSMOOTHINGSTANDARD: Final = 1
|
|
3681
|
+
FE_FONTSMOOTHINGCLEARTYPE: Final = 2
|
|
3682
|
+
FE_FONTSMOOTHINGDOCKING: Final = 32768
|
|
3683
|
+
|
|
3684
|
+
METRICS_USEDEFAULT: Final = -1
|
|
3685
|
+
ARW_BOTTOMLEFT: Final = 0
|
|
3686
|
+
ARW_BOTTOMRIGHT: Final = 1
|
|
3687
|
+
ARW_TOPLEFT: Final = 2
|
|
3688
|
+
ARW_TOPRIGHT: Final = 3
|
|
3689
|
+
ARW_STARTMASK: Final = 3
|
|
3690
|
+
ARW_STARTRIGHT: Final = 1
|
|
3691
|
+
ARW_STARTTOP: Final = 2
|
|
3692
|
+
ARW_LEFT: Final = 0
|
|
3693
|
+
ARW_RIGHT: Final = 0
|
|
3694
|
+
ARW_UP: Final = 4
|
|
3695
|
+
ARW_DOWN: Final = 4
|
|
3696
|
+
ARW_HIDE: Final = 8
|
|
3697
|
+
|
|
3698
|
+
SERKF_SERIALKEYSON: Final = 1
|
|
3699
|
+
SERKF_AVAILABLE: Final = 2
|
|
3700
|
+
SERKF_INDICATOR: Final = 4
|
|
3701
|
+
HCF_HIGHCONTRASTON: Final = 1
|
|
3702
|
+
HCF_AVAILABLE: Final = 2
|
|
3703
|
+
HCF_HOTKEYACTIVE: Final = 4
|
|
3704
|
+
HCF_CONFIRMHOTKEY: Final = 8
|
|
3705
|
+
HCF_HOTKEYSOUND: Final = 16
|
|
3706
|
+
HCF_INDICATOR: Final = 32
|
|
3707
|
+
HCF_HOTKEYAVAILABLE: Final = 64
|
|
3708
|
+
CDS_UPDATEREGISTRY: Final = 1
|
|
3709
|
+
CDS_TEST: Final = 2
|
|
3710
|
+
CDS_FULLSCREEN: Final = 4
|
|
3711
|
+
CDS_GLOBAL: Final = 8
|
|
3712
|
+
CDS_SET_PRIMARY: Final = 16
|
|
3713
|
+
CDS_RESET: Final = 1073741824
|
|
3714
|
+
CDS_SETRECT: Final = 536870912
|
|
3715
|
+
CDS_NORESET: Final = 268435456
|
|
3716
|
+
|
|
3717
|
+
DISP_CHANGE_SUCCESSFUL: Final = 0
|
|
3718
|
+
DISP_CHANGE_RESTART: Final = 1
|
|
3719
|
+
DISP_CHANGE_FAILED: Final = -1
|
|
3720
|
+
DISP_CHANGE_BADMODE: Final = -2
|
|
3721
|
+
DISP_CHANGE_NOTUPDATED: Final = -3
|
|
3722
|
+
DISP_CHANGE_BADFLAGS: Final = -4
|
|
3723
|
+
DISP_CHANGE_BADPARAM: Final = -5
|
|
3724
|
+
DISP_CHANGE_BADDUALVIEW: Final = -6
|
|
3725
|
+
|
|
3726
|
+
ENUM_CURRENT_SETTINGS: Final = -1
|
|
3727
|
+
ENUM_REGISTRY_SETTINGS: Final = -2
|
|
3728
|
+
FKF_FILTERKEYSON: Final = 1
|
|
3729
|
+
FKF_AVAILABLE: Final = 2
|
|
3730
|
+
FKF_HOTKEYACTIVE: Final = 4
|
|
3731
|
+
FKF_CONFIRMHOTKEY: Final = 8
|
|
3732
|
+
FKF_HOTKEYSOUND: Final = 16
|
|
3733
|
+
FKF_INDICATOR: Final = 32
|
|
3734
|
+
FKF_CLICKON: Final = 64
|
|
3735
|
+
SKF_STICKYKEYSON: Final = 1
|
|
3736
|
+
SKF_AVAILABLE: Final = 2
|
|
3737
|
+
SKF_HOTKEYACTIVE: Final = 4
|
|
3738
|
+
SKF_CONFIRMHOTKEY: Final = 8
|
|
3739
|
+
SKF_HOTKEYSOUND: Final = 16
|
|
3740
|
+
SKF_INDICATOR: Final = 32
|
|
3741
|
+
SKF_AUDIBLEFEEDBACK: Final = 64
|
|
3742
|
+
SKF_TRISTATE: Final = 128
|
|
3743
|
+
SKF_TWOKEYSOFF: Final = 256
|
|
3744
|
+
SKF_LALTLATCHED: Final = 268435456
|
|
3745
|
+
SKF_LCTLLATCHED: Final = 67108864
|
|
3746
|
+
SKF_LSHIFTLATCHED: Final = 16777216
|
|
3747
|
+
SKF_RALTLATCHED: Final = 536870912
|
|
3748
|
+
SKF_RCTLLATCHED: Final = 134217728
|
|
3749
|
+
SKF_RSHIFTLATCHED: Final = 33554432
|
|
3750
|
+
SKF_LWINLATCHED: Final = 1073741824
|
|
3751
|
+
SKF_RWINLATCHED: Final = -2147483648
|
|
3752
|
+
SKF_LALTLOCKED: Final = 1048576
|
|
3753
|
+
SKF_LCTLLOCKED: Final = 262144
|
|
3754
|
+
SKF_LSHIFTLOCKED: Final = 65536
|
|
3755
|
+
SKF_RALTLOCKED: Final = 2097152
|
|
3756
|
+
SKF_RCTLLOCKED: Final = 524288
|
|
3757
|
+
SKF_RSHIFTLOCKED: Final = 131072
|
|
3758
|
+
SKF_LWINLOCKED: Final = 4194304
|
|
3759
|
+
SKF_RWINLOCKED: Final = 8388608
|
|
3760
|
+
MKF_MOUSEKEYSON: Final = 1
|
|
3761
|
+
MKF_AVAILABLE: Final = 2
|
|
3762
|
+
MKF_HOTKEYACTIVE: Final = 4
|
|
3763
|
+
MKF_CONFIRMHOTKEY: Final = 8
|
|
3764
|
+
MKF_HOTKEYSOUND: Final = 16
|
|
3765
|
+
MKF_INDICATOR: Final = 32
|
|
3766
|
+
MKF_MODIFIERS: Final = 64
|
|
3767
|
+
MKF_REPLACENUMBERS: Final = 128
|
|
3768
|
+
MKF_LEFTBUTTONSEL: Final = 268435456
|
|
3769
|
+
MKF_RIGHTBUTTONSEL: Final = 536870912
|
|
3770
|
+
MKF_LEFTBUTTONDOWN: Final = 16777216
|
|
3771
|
+
MKF_RIGHTBUTTONDOWN: Final = 33554432
|
|
3772
|
+
MKF_MOUSEMODE: Final = -2147483648
|
|
3773
|
+
ATF_TIMEOUTON: Final = 1
|
|
3774
|
+
ATF_ONOFFFEEDBACK: Final = 2
|
|
3775
|
+
SSGF_NONE: Final = 0
|
|
3776
|
+
SSGF_DISPLAY: Final = 3
|
|
3777
|
+
SSTF_NONE: Final = 0
|
|
3778
|
+
SSTF_CHARS: Final = 1
|
|
3779
|
+
SSTF_BORDER: Final = 2
|
|
3780
|
+
SSTF_DISPLAY: Final = 3
|
|
3781
|
+
SSWF_NONE: Final = 0
|
|
3782
|
+
SSWF_TITLE: Final = 1
|
|
3783
|
+
SSWF_WINDOW: Final = 2
|
|
3784
|
+
SSWF_DISPLAY: Final = 3
|
|
3785
|
+
SSWF_CUSTOM: Final = 4
|
|
3786
|
+
SSF_SOUNDSENTRYON: Final = 1
|
|
3787
|
+
SSF_AVAILABLE: Final = 2
|
|
3788
|
+
SSF_INDICATOR: Final = 4
|
|
3789
|
+
TKF_TOGGLEKEYSON: Final = 1
|
|
3790
|
+
TKF_AVAILABLE: Final = 2
|
|
3791
|
+
TKF_HOTKEYACTIVE: Final = 4
|
|
3792
|
+
TKF_CONFIRMHOTKEY: Final = 8
|
|
3793
|
+
TKF_HOTKEYSOUND: Final = 16
|
|
3794
|
+
TKF_INDICATOR: Final = 32
|
|
3795
|
+
SLE_ERROR: Final = 1
|
|
3796
|
+
SLE_MINORERROR: Final = 2
|
|
3797
|
+
SLE_WARNING: Final = 3
|
|
3798
|
+
MONITOR_DEFAULTTONULL: Final = 0
|
|
3799
|
+
MONITOR_DEFAULTTOPRIMARY: Final = 1
|
|
3800
|
+
MONITOR_DEFAULTTONEAREST: Final = 2
|
|
3801
|
+
MONITORINFOF_PRIMARY: Final = 1
|
|
3802
|
+
CCHDEVICENAME: Final = 32
|
|
3803
|
+
CHILDID_SELF: Final = 0
|
|
3804
|
+
INDEXID_OBJECT: Final = 0
|
|
3805
|
+
INDEXID_CONTAINER: Final = 0
|
|
3806
|
+
OBJID_WINDOW: Final = 0
|
|
3807
|
+
OBJID_SYSMENU: Final = -1
|
|
3808
|
+
OBJID_TITLEBAR: Final = -2
|
|
3809
|
+
OBJID_MENU: Final = -3
|
|
3810
|
+
OBJID_CLIENT: Final = -4
|
|
3811
|
+
OBJID_VSCROLL: Final = -5
|
|
3812
|
+
OBJID_HSCROLL: Final = -6
|
|
3813
|
+
OBJID_SIZEGRIP: Final = -7
|
|
3814
|
+
OBJID_CARET: Final = -8
|
|
3815
|
+
OBJID_CURSOR: Final = -9
|
|
3816
|
+
OBJID_ALERT: Final = -10
|
|
3817
|
+
OBJID_SOUND: Final = -11
|
|
3818
|
+
EVENT_MIN: Final = 1
|
|
3819
|
+
EVENT_MAX: Final = 2147483647
|
|
3820
|
+
EVENT_SYSTEM_SOUND: Final = 1
|
|
3821
|
+
EVENT_SYSTEM_ALERT: Final = 2
|
|
3822
|
+
EVENT_SYSTEM_FOREGROUND: Final = 3
|
|
3823
|
+
EVENT_SYSTEM_MENUSTART: Final = 4
|
|
3824
|
+
EVENT_SYSTEM_MENUEND: Final = 5
|
|
3825
|
+
EVENT_SYSTEM_MENUPOPUPSTART: Final = 6
|
|
3826
|
+
EVENT_SYSTEM_MENUPOPUPEND: Final = 7
|
|
3827
|
+
EVENT_SYSTEM_CAPTURESTART: Final = 8
|
|
3828
|
+
EVENT_SYSTEM_CAPTUREEND: Final = 9
|
|
3829
|
+
EVENT_SYSTEM_MOVESIZESTART: Final = 10
|
|
3830
|
+
EVENT_SYSTEM_MOVESIZEEND: Final = 11
|
|
3831
|
+
EVENT_SYSTEM_CONTEXTHELPSTART: Final = 12
|
|
3832
|
+
EVENT_SYSTEM_CONTEXTHELPEND: Final = 13
|
|
3833
|
+
EVENT_SYSTEM_DRAGDROPSTART: Final = 14
|
|
3834
|
+
EVENT_SYSTEM_DRAGDROPEND: Final = 15
|
|
3835
|
+
EVENT_SYSTEM_DIALOGSTART: Final = 16
|
|
3836
|
+
EVENT_SYSTEM_DIALOGEND: Final = 17
|
|
3837
|
+
EVENT_SYSTEM_SCROLLINGSTART: Final = 18
|
|
3838
|
+
EVENT_SYSTEM_SCROLLINGEND: Final = 19
|
|
3839
|
+
EVENT_SYSTEM_SWITCHSTART: Final = 20
|
|
3840
|
+
EVENT_SYSTEM_SWITCHEND: Final = 21
|
|
3841
|
+
EVENT_SYSTEM_MINIMIZESTART: Final = 22
|
|
3842
|
+
EVENT_SYSTEM_MINIMIZEEND: Final = 23
|
|
3843
|
+
EVENT_OBJECT_CREATE: Final = 32768
|
|
3844
|
+
EVENT_OBJECT_DESTROY: Final = 32769
|
|
3845
|
+
EVENT_OBJECT_SHOW: Final = 32770
|
|
3846
|
+
EVENT_OBJECT_HIDE: Final = 32771
|
|
3847
|
+
EVENT_OBJECT_REORDER: Final = 32772
|
|
3848
|
+
EVENT_OBJECT_FOCUS: Final = 32773
|
|
3849
|
+
EVENT_OBJECT_SELECTION: Final = 32774
|
|
3850
|
+
EVENT_OBJECT_SELECTIONADD: Final = 32775
|
|
3851
|
+
EVENT_OBJECT_SELECTIONREMOVE: Final = 32776
|
|
3852
|
+
EVENT_OBJECT_SELECTIONWITHIN: Final = 32777
|
|
3853
|
+
EVENT_OBJECT_STATECHANGE: Final = 32778
|
|
3854
|
+
EVENT_OBJECT_LOCATIONCHANGE: Final = 32779
|
|
3855
|
+
EVENT_OBJECT_NAMECHANGE: Final = 32780
|
|
3856
|
+
EVENT_OBJECT_DESCRIPTIONCHANGE: Final = 32781
|
|
3857
|
+
EVENT_OBJECT_VALUECHANGE: Final = 32782
|
|
3858
|
+
EVENT_OBJECT_PARENTCHANGE: Final = 32783
|
|
3859
|
+
EVENT_OBJECT_HELPCHANGE: Final = 32784
|
|
3860
|
+
EVENT_OBJECT_DEFACTIONCHANGE: Final = 32785
|
|
3861
|
+
EVENT_OBJECT_ACCELERATORCHANGE: Final = 32786
|
|
3862
|
+
SOUND_SYSTEM_STARTUP: Final = 1
|
|
3863
|
+
SOUND_SYSTEM_SHUTDOWN: Final = 2
|
|
3864
|
+
SOUND_SYSTEM_BEEP: Final = 3
|
|
3865
|
+
SOUND_SYSTEM_ERROR: Final = 4
|
|
3866
|
+
SOUND_SYSTEM_QUESTION: Final = 5
|
|
3867
|
+
SOUND_SYSTEM_WARNING: Final = 6
|
|
3868
|
+
SOUND_SYSTEM_INFORMATION: Final = 7
|
|
3869
|
+
SOUND_SYSTEM_MAXIMIZE: Final = 8
|
|
3870
|
+
SOUND_SYSTEM_MINIMIZE: Final = 9
|
|
3871
|
+
SOUND_SYSTEM_RESTOREUP: Final = 10
|
|
3872
|
+
SOUND_SYSTEM_RESTOREDOWN: Final = 11
|
|
3873
|
+
SOUND_SYSTEM_APPSTART: Final = 12
|
|
3874
|
+
SOUND_SYSTEM_FAULT: Final = 13
|
|
3875
|
+
SOUND_SYSTEM_APPEND: Final = 14
|
|
3876
|
+
SOUND_SYSTEM_MENUCOMMAND: Final = 15
|
|
3877
|
+
SOUND_SYSTEM_MENUPOPUP: Final = 16
|
|
3878
|
+
CSOUND_SYSTEM: Final = 16
|
|
3879
|
+
ALERT_SYSTEM_INFORMATIONAL: Final = 1
|
|
3880
|
+
ALERT_SYSTEM_WARNING: Final = 2
|
|
3881
|
+
ALERT_SYSTEM_ERROR: Final = 3
|
|
3882
|
+
ALERT_SYSTEM_QUERY: Final = 4
|
|
3883
|
+
ALERT_SYSTEM_CRITICAL: Final = 5
|
|
3884
|
+
CALERT_SYSTEM: Final = 6
|
|
3885
|
+
WINEVENT_OUTOFCONTEXT: Final = 0
|
|
3886
|
+
WINEVENT_SKIPOWNTHREAD: Final = 1
|
|
3887
|
+
WINEVENT_SKIPOWNPROCESS: Final = 2
|
|
3888
|
+
WINEVENT_INCONTEXT: Final = 4
|
|
3889
|
+
GUI_CARETBLINKING: Final = 1
|
|
3890
|
+
GUI_INMOVESIZE: Final = 2
|
|
3891
|
+
GUI_INMENUMODE: Final = 4
|
|
3892
|
+
GUI_SYSTEMMENUMODE: Final = 8
|
|
3893
|
+
GUI_POPUPMENUMODE: Final = 16
|
|
3894
|
+
STATE_SYSTEM_UNAVAILABLE: Final = 1
|
|
3895
|
+
STATE_SYSTEM_SELECTED: Final = 2
|
|
3896
|
+
STATE_SYSTEM_FOCUSED: Final = 4
|
|
3897
|
+
STATE_SYSTEM_PRESSED: Final = 8
|
|
3898
|
+
STATE_SYSTEM_CHECKED: Final = 16
|
|
3899
|
+
STATE_SYSTEM_MIXED: Final = 32
|
|
3900
|
+
STATE_SYSTEM_READONLY: Final = 64
|
|
3901
|
+
STATE_SYSTEM_HOTTRACKED: Final = 128
|
|
3902
|
+
STATE_SYSTEM_DEFAULT: Final = 256
|
|
3903
|
+
STATE_SYSTEM_EXPANDED: Final = 512
|
|
3904
|
+
STATE_SYSTEM_COLLAPSED: Final = 1024
|
|
3905
|
+
STATE_SYSTEM_BUSY: Final = 2048
|
|
3906
|
+
STATE_SYSTEM_FLOATING: Final = 4096
|
|
3907
|
+
STATE_SYSTEM_MARQUEED: Final = 8192
|
|
3908
|
+
STATE_SYSTEM_ANIMATED: Final = 16384
|
|
3909
|
+
STATE_SYSTEM_INVISIBLE: Final = 32768
|
|
3910
|
+
STATE_SYSTEM_OFFSCREEN: Final = 65536
|
|
3911
|
+
STATE_SYSTEM_SIZEABLE: Final = 131072
|
|
3912
|
+
STATE_SYSTEM_MOVEABLE: Final = 262144
|
|
3913
|
+
STATE_SYSTEM_SELFVOICING: Final = 524288
|
|
3914
|
+
STATE_SYSTEM_FOCUSABLE: Final = 1048576
|
|
3915
|
+
STATE_SYSTEM_SELECTABLE: Final = 2097152
|
|
3916
|
+
STATE_SYSTEM_LINKED: Final = 4194304
|
|
3917
|
+
STATE_SYSTEM_TRAVERSED: Final = 8388608
|
|
3918
|
+
STATE_SYSTEM_MULTISELECTABLE: Final = 16777216
|
|
3919
|
+
STATE_SYSTEM_EXTSELECTABLE: Final = 33554432
|
|
3920
|
+
STATE_SYSTEM_ALERT_LOW: Final = 67108864
|
|
3921
|
+
STATE_SYSTEM_ALERT_MEDIUM: Final = 134217728
|
|
3922
|
+
STATE_SYSTEM_ALERT_HIGH: Final = 268435456
|
|
3923
|
+
STATE_SYSTEM_VALID: Final = 536870911
|
|
3924
|
+
CCHILDREN_TITLEBAR: Final = 5
|
|
3925
|
+
CCHILDREN_SCROLLBAR: Final = 5
|
|
3926
|
+
CURSOR_SHOWING: Final = 1
|
|
3927
|
+
WS_ACTIVECAPTION: Final = 1
|
|
3928
|
+
GA_MIC: Final = 1
|
|
3929
|
+
GA_PARENT: Final = 1
|
|
3930
|
+
GA_ROOT: Final = 2
|
|
3931
|
+
GA_ROOTOWNER: Final = 3
|
|
3932
|
+
GA_MAC: Final = 4
|
|
3933
|
+
|
|
3934
|
+
BF_LEFT: Final = 1
|
|
3935
|
+
BF_TOP: Final = 2
|
|
3936
|
+
BF_RIGHT: Final = 4
|
|
3937
|
+
BF_BOTTOM: Final = 8
|
|
3938
|
+
BF_TOPLEFT: Final[int]
|
|
3939
|
+
BF_TOPRIGHT: Final[int]
|
|
3940
|
+
BF_BOTTOMLEFT: Final[int]
|
|
3941
|
+
BF_BOTTOMRIGHT: Final[int]
|
|
3942
|
+
BF_RECT: Final[int]
|
|
3943
|
+
BF_DIAGONAL: Final = 16
|
|
3944
|
+
BF_DIAGONAL_ENDTOPRIGHT: Final[int]
|
|
3945
|
+
BF_DIAGONAL_ENDTOPLEFT: Final[int]
|
|
3946
|
+
BF_DIAGONAL_ENDBOTTOMLEFT: Final[int]
|
|
3947
|
+
BF_DIAGONAL_ENDBOTTOMRIGHT: Final[int]
|
|
3948
|
+
BF_MIDDLE: Final = 2048
|
|
3949
|
+
BF_SOFT: Final = 4096
|
|
3950
|
+
BF_ADJUST: Final = 8192
|
|
3951
|
+
BF_FLAT: Final = 16384
|
|
3952
|
+
BF_MONO: Final = 32768
|
|
3953
|
+
DFC_CAPTION: Final = 1
|
|
3954
|
+
DFC_MENU: Final = 2
|
|
3955
|
+
DFC_SCROLL: Final = 3
|
|
3956
|
+
DFC_BUTTON: Final = 4
|
|
3957
|
+
DFC_POPUPMENU: Final = 5
|
|
3958
|
+
DFCS_CAPTIONCLOSE: Final = 0
|
|
3959
|
+
DFCS_CAPTIONMIN: Final = 1
|
|
3960
|
+
DFCS_CAPTIONMAX: Final = 2
|
|
3961
|
+
DFCS_CAPTIONRESTORE: Final = 3
|
|
3962
|
+
DFCS_CAPTIONHELP: Final = 4
|
|
3963
|
+
DFCS_MENUARROW: Final = 0
|
|
3964
|
+
DFCS_MENUCHECK: Final = 1
|
|
3965
|
+
DFCS_MENUBULLET: Final = 2
|
|
3966
|
+
DFCS_MENUARROWRIGHT: Final = 4
|
|
3967
|
+
DFCS_SCROLLUP: Final = 0
|
|
3968
|
+
DFCS_SCROLLDOWN: Final = 1
|
|
3969
|
+
DFCS_SCROLLLEFT: Final = 2
|
|
3970
|
+
DFCS_SCROLLRIGHT: Final = 3
|
|
3971
|
+
DFCS_SCROLLCOMBOBOX: Final = 5
|
|
3972
|
+
DFCS_SCROLLSIZEGRIP: Final = 8
|
|
3973
|
+
DFCS_SCROLLSIZEGRIPRIGHT: Final = 16
|
|
3974
|
+
DFCS_BUTTONCHECK: Final = 0
|
|
3975
|
+
DFCS_BUTTONRADIOIMAGE: Final = 1
|
|
3976
|
+
DFCS_BUTTONRADIOMASK: Final = 2
|
|
3977
|
+
DFCS_BUTTONRADIO: Final = 4
|
|
3978
|
+
DFCS_BUTTON3STATE: Final = 8
|
|
3979
|
+
DFCS_BUTTONPUSH: Final = 16
|
|
3980
|
+
DFCS_INACTIVE: Final = 256
|
|
3981
|
+
DFCS_PUSHED: Final = 512
|
|
3982
|
+
DFCS_CHECKED: Final = 1024
|
|
3983
|
+
DFCS_TRANSPARENT: Final = 2048
|
|
3984
|
+
DFCS_HOT: Final = 4096
|
|
3985
|
+
DFCS_ADJUSTRECT: Final = 8192
|
|
3986
|
+
DFCS_FLAT: Final = 16384
|
|
3987
|
+
DFCS_MONO: Final = 32768
|
|
3988
|
+
DC_ACTIVE: Final = 1
|
|
3989
|
+
DC_SMALLCAP: Final = 2
|
|
3990
|
+
DC_ICON: Final = 4
|
|
3991
|
+
DC_TEXT: Final = 8
|
|
3992
|
+
DC_INBUTTON: Final = 16
|
|
3993
|
+
DC_GRADIENT: Final = 32
|
|
3994
|
+
IDANI_OPEN: Final = 1
|
|
3995
|
+
IDANI_CLOSE: Final = 2
|
|
3996
|
+
IDANI_CAPTION: Final = 3
|
|
3997
|
+
CF_TEXT: Final = 1
|
|
3998
|
+
CF_BITMAP: Final = 2
|
|
3999
|
+
CF_METAFILEPICT: Final = 3
|
|
4000
|
+
CF_SYLK: Final = 4
|
|
4001
|
+
CF_DIF: Final = 5
|
|
4002
|
+
CF_TIFF: Final = 6
|
|
4003
|
+
CF_OEMTEXT: Final = 7
|
|
4004
|
+
CF_DIB: Final = 8
|
|
4005
|
+
CF_PALETTE: Final = 9
|
|
4006
|
+
CF_PENDATA: Final = 10
|
|
4007
|
+
CF_RIFF: Final = 11
|
|
4008
|
+
CF_WAVE: Final = 12
|
|
4009
|
+
CF_UNICODETEXT: Final = 13
|
|
4010
|
+
CF_ENHMETAFILE: Final = 14
|
|
4011
|
+
CF_HDROP: Final = 15
|
|
4012
|
+
CF_LOCALE: Final = 16
|
|
4013
|
+
CF_DIBV5: Final = 17
|
|
4014
|
+
CF_MAX: Final = 18
|
|
4015
|
+
CF_OWNERDISPLAY: Final = 128
|
|
4016
|
+
CF_DSPTEXT: Final = 129
|
|
4017
|
+
CF_DSPBITMAP: Final = 130
|
|
4018
|
+
CF_DSPMETAFILEPICT: Final = 131
|
|
4019
|
+
CF_DSPENHMETAFILE: Final = 142
|
|
4020
|
+
CF_PRIVATEFIRST: Final = 512
|
|
4021
|
+
CF_PRIVATELAST: Final = 767
|
|
4022
|
+
CF_GDIOBJFIRST: Final = 768
|
|
4023
|
+
CF_GDIOBJLAST: Final = 1023
|
|
4024
|
+
FVIRTKEY: Final = 1
|
|
4025
|
+
FNOINVERT: Final = 2
|
|
4026
|
+
FSHIFT: Final = 4
|
|
4027
|
+
FCONTROL: Final = 8
|
|
4028
|
+
FALT: Final = 16
|
|
4029
|
+
WPF_SETMINPOSITION: Final = 1
|
|
4030
|
+
WPF_RESTORETOMAXIMIZED: Final = 2
|
|
4031
|
+
ODT_MENU: Final = 1
|
|
4032
|
+
ODT_LISTBOX: Final = 2
|
|
4033
|
+
ODT_COMBOBOX: Final = 3
|
|
4034
|
+
ODT_BUTTON: Final = 4
|
|
4035
|
+
ODT_STATIC: Final = 5
|
|
4036
|
+
ODA_DRAWENTIRE: Final = 1
|
|
4037
|
+
ODA_SELECT: Final = 2
|
|
4038
|
+
ODA_FOCUS: Final = 4
|
|
4039
|
+
ODS_SELECTED: Final = 1
|
|
4040
|
+
ODS_GRAYED: Final = 2
|
|
4041
|
+
ODS_DISABLED: Final = 4
|
|
4042
|
+
ODS_CHECKED: Final = 8
|
|
4043
|
+
ODS_FOCUS: Final = 16
|
|
4044
|
+
ODS_DEFAULT: Final = 32
|
|
4045
|
+
ODS_COMBOBOXEDIT: Final = 4096
|
|
4046
|
+
ODS_HOTLIGHT: Final = 64
|
|
4047
|
+
ODS_INACTIVE: Final = 128
|
|
4048
|
+
PM_NOREMOVE: Final = 0
|
|
4049
|
+
PM_REMOVE: Final = 1
|
|
4050
|
+
PM_NOYIELD: Final = 2
|
|
4051
|
+
MOD_ALT: Final = 1
|
|
4052
|
+
MOD_CONTROL: Final = 2
|
|
4053
|
+
MOD_SHIFT: Final = 4
|
|
4054
|
+
MOD_WIN: Final = 8
|
|
4055
|
+
MOD_NOREPEAT: Final = 16384
|
|
4056
|
+
IDHOT_SNAPWINDOW: Final = -1
|
|
4057
|
+
IDHOT_SNAPDESKTOP: Final = -2
|
|
4058
|
+
|
|
4059
|
+
ENDSESSION_LOGOFF: Final = -2147483648
|
|
4060
|
+
EWX_LOGOFF: Final = 0
|
|
4061
|
+
EWX_SHUTDOWN: Final = 1
|
|
4062
|
+
EWX_REBOOT: Final = 2
|
|
4063
|
+
EWX_FORCE: Final = 4
|
|
4064
|
+
EWX_POWEROFF: Final = 8
|
|
4065
|
+
EWX_FORCEIFHUNG: Final = 16
|
|
4066
|
+
BSM_ALLDESKTOPS: Final = 16
|
|
4067
|
+
BROADCAST_QUERY_DENY: Final = 1112363332
|
|
4068
|
+
|
|
4069
|
+
DBWF_LPARAMPOINTER: Final = 32768
|
|
4070
|
+
|
|
4071
|
+
SWP_NOSIZE: Final = 1
|
|
4072
|
+
SWP_NOMOVE: Final = 2
|
|
4073
|
+
SWP_NOZORDER: Final = 4
|
|
4074
|
+
SWP_NOREDRAW: Final = 8
|
|
4075
|
+
SWP_NOACTIVATE: Final = 16
|
|
4076
|
+
SWP_FRAMECHANGED: Final = 32
|
|
4077
|
+
SWP_SHOWWINDOW: Final = 64
|
|
4078
|
+
SWP_HIDEWINDOW: Final = 128
|
|
4079
|
+
SWP_NOCOPYBITS: Final = 256
|
|
4080
|
+
SWP_NOOWNERZORDER: Final = 512
|
|
4081
|
+
SWP_NOSENDCHANGING: Final = 1024
|
|
4082
|
+
SWP_DRAWFRAME: Final = SWP_FRAMECHANGED
|
|
4083
|
+
SWP_NOREPOSITION: Final = SWP_NOOWNERZORDER
|
|
4084
|
+
SWP_DEFERERASE: Final = 8192
|
|
4085
|
+
SWP_ASYNCWINDOWPOS: Final = 16384
|
|
4086
|
+
|
|
4087
|
+
DLGWINDOWEXTRA: Final = 30
|
|
4088
|
+
|
|
4089
|
+
KEYEVENTF_EXTENDEDKEY: Final = 1
|
|
4090
|
+
KEYEVENTF_KEYUP: Final = 2
|
|
4091
|
+
KEYEVENTF_UNICODE: Final = 4
|
|
4092
|
+
KEYEVENTF_SCANCODE: Final = 8
|
|
4093
|
+
MOUSEEVENTF_MOVE: Final = 1
|
|
4094
|
+
MOUSEEVENTF_LEFTDOWN: Final = 2
|
|
4095
|
+
MOUSEEVENTF_LEFTUP: Final = 4
|
|
4096
|
+
MOUSEEVENTF_RIGHTDOWN: Final = 8
|
|
4097
|
+
MOUSEEVENTF_RIGHTUP: Final = 16
|
|
4098
|
+
MOUSEEVENTF_MIDDLEDOWN: Final = 32
|
|
4099
|
+
MOUSEEVENTF_MIDDLEUP: Final = 64
|
|
4100
|
+
MOUSEEVENTF_XDOWN: Final = 128
|
|
4101
|
+
MOUSEEVENTF_XUP: Final = 256
|
|
4102
|
+
MOUSEEVENTF_WHEEL: Final = 2048
|
|
4103
|
+
MOUSEEVENTF_HWHEEL: Final = 4096
|
|
4104
|
+
MOUSEEVENTF_MOVE_NOCOALESCE: Final = 8192
|
|
4105
|
+
MOUSEEVENTF_VIRTUALDESK: Final = 16384
|
|
4106
|
+
MOUSEEVENTF_ABSOLUTE: Final = 32768
|
|
4107
|
+
INPUT_MOUSE: Final = 0
|
|
4108
|
+
INPUT_KEYBOARD: Final = 1
|
|
4109
|
+
INPUT_HARDWARE: Final = 2
|
|
4110
|
+
MWMO_WAITALL: Final = 1
|
|
4111
|
+
MWMO_ALERTABLE: Final = 2
|
|
4112
|
+
MWMO_INPUTAVAILABLE: Final = 4
|
|
4113
|
+
QS_KEY: Final = 1
|
|
4114
|
+
QS_MOUSEMOVE: Final = 2
|
|
4115
|
+
QS_MOUSEBUTTON: Final = 4
|
|
4116
|
+
QS_POSTMESSAGE: Final = 8
|
|
4117
|
+
QS_TIMER: Final = 16
|
|
4118
|
+
QS_PAINT: Final = 32
|
|
4119
|
+
QS_SENDMESSAGE: Final = 64
|
|
4120
|
+
QS_HOTKEY: Final = 128
|
|
4121
|
+
QS_MOUSE: Final[int]
|
|
4122
|
+
QS_INPUT: Final[int]
|
|
4123
|
+
QS_ALLEVENTS: Final[int]
|
|
4124
|
+
QS_ALLINPUT: Final[int]
|
|
4125
|
+
|
|
4126
|
+
IMN_CLOSESTATUSWINDOW: Final = 1
|
|
4127
|
+
IMN_OPENSTATUSWINDOW: Final = 2
|
|
4128
|
+
IMN_CHANGECANDIDATE: Final = 3
|
|
4129
|
+
IMN_CLOSECANDIDATE: Final = 4
|
|
4130
|
+
IMN_OPENCANDIDATE: Final = 5
|
|
4131
|
+
IMN_SETCONVERSIONMODE: Final = 6
|
|
4132
|
+
IMN_SETSENTENCEMODE: Final = 7
|
|
4133
|
+
IMN_SETOPENSTATUS: Final = 8
|
|
4134
|
+
IMN_SETCANDIDATEPOS: Final = 9
|
|
4135
|
+
IMN_SETCOMPOSITIONFONT: Final = 10
|
|
4136
|
+
IMN_SETCOMPOSITIONWINDOW: Final = 11
|
|
4137
|
+
IMN_SETSTATUSWINDOWPOS: Final = 12
|
|
4138
|
+
IMN_GUIDELINE: Final = 13
|
|
4139
|
+
IMN_PRIVATE: Final = 14
|
|
4140
|
+
|
|
4141
|
+
HELP_CONTEXT: Final = 1
|
|
4142
|
+
HELP_QUIT: Final = 2
|
|
4143
|
+
HELP_INDEX: Final = 3
|
|
4144
|
+
HELP_CONTENTS: Final = 3
|
|
4145
|
+
HELP_HELPONHELP: Final = 4
|
|
4146
|
+
HELP_SETINDEX: Final = 5
|
|
4147
|
+
HELP_SETCONTENTS: Final = 5
|
|
4148
|
+
HELP_CONTEXTPOPUP: Final = 8
|
|
4149
|
+
HELP_FORCEFILE: Final = 9
|
|
4150
|
+
HELP_KEY: Final = 257
|
|
4151
|
+
HELP_COMMAND: Final = 258
|
|
4152
|
+
HELP_PARTIALKEY: Final = 261
|
|
4153
|
+
HELP_MULTIKEY: Final = 513
|
|
4154
|
+
HELP_SETWINPOS: Final = 515
|
|
4155
|
+
HELP_CONTEXTMENU: Final = 10
|
|
4156
|
+
HELP_FINDER: Final = 11
|
|
4157
|
+
HELP_WM_HELP: Final = 12
|
|
4158
|
+
HELP_SETPOPUP_POS: Final = 13
|
|
4159
|
+
HELP_TCARD: Final = 32768
|
|
4160
|
+
HELP_TCARD_DATA: Final = 16
|
|
4161
|
+
HELP_TCARD_OTHER_CALLER: Final = 17
|
|
4162
|
+
IDH_NO_HELP: Final = 28440
|
|
4163
|
+
IDH_MISSING_CONTEXT: Final = 28441
|
|
4164
|
+
IDH_GENERIC_HELP_BUTTON: Final = 28442
|
|
4165
|
+
IDH_OK: Final = 28443
|
|
4166
|
+
IDH_CANCEL: Final = 28444
|
|
4167
|
+
IDH_HELP: Final = 28445
|
|
4168
|
+
GR_GDIOBJECTS: Final = 0
|
|
4169
|
+
GR_USEROBJECTS: Final = 1
|
|
4170
|
+
|
|
4171
|
+
SRCCOPY: Final = 13369376
|
|
4172
|
+
SRCPAINT: Final = 15597702
|
|
4173
|
+
SRCAND: Final = 8913094
|
|
4174
|
+
SRCINVERT: Final = 6684742
|
|
4175
|
+
SRCERASE: Final = 4457256
|
|
4176
|
+
NOTSRCCOPY: Final = 3342344
|
|
4177
|
+
NOTSRCERASE: Final = 1114278
|
|
4178
|
+
MERGECOPY: Final = 12583114
|
|
4179
|
+
MERGEPAINT: Final = 12255782
|
|
4180
|
+
PATCOPY: Final = 15728673
|
|
4181
|
+
PATPAINT: Final = 16452105
|
|
4182
|
+
PATINVERT: Final = 5898313
|
|
4183
|
+
DSTINVERT: Final = 5570569
|
|
4184
|
+
BLACKNESS: Final = 66
|
|
4185
|
+
WHITENESS: Final = 16711778
|
|
4186
|
+
|
|
4187
|
+
R2_BLACK: Final = 1
|
|
4188
|
+
R2_NOTMERGEPEN: Final = 2
|
|
4189
|
+
R2_MASKNOTPEN: Final = 3
|
|
4190
|
+
R2_NOTCOPYPEN: Final = 4
|
|
4191
|
+
R2_MASKPENNOT: Final = 5
|
|
4192
|
+
R2_NOT: Final = 6
|
|
4193
|
+
R2_XORPEN: Final = 7
|
|
4194
|
+
R2_NOTMASKPEN: Final = 8
|
|
4195
|
+
R2_MASKPEN: Final = 9
|
|
4196
|
+
R2_NOTXORPEN: Final = 10
|
|
4197
|
+
R2_NOP: Final = 11
|
|
4198
|
+
R2_MERGENOTPEN: Final = 12
|
|
4199
|
+
R2_COPYPEN: Final = 13
|
|
4200
|
+
R2_MERGEPENNOT: Final = 14
|
|
4201
|
+
R2_MERGEPEN: Final = 15
|
|
4202
|
+
R2_WHITE: Final = 16
|
|
4203
|
+
R2_LAST: Final = 16
|
|
4204
|
+
GDI_ERROR: Final = -1
|
|
4205
|
+
ERROR: Final = 0
|
|
4206
|
+
NULLREGION: Final = 1
|
|
4207
|
+
SIMPLEREGION: Final = 2
|
|
4208
|
+
COMPLEXREGION: Final = 3
|
|
4209
|
+
RGN_ERROR: Final = ERROR
|
|
4210
|
+
RGN_AND: Final = 1
|
|
4211
|
+
RGN_OR: Final = 2
|
|
4212
|
+
RGN_XOR: Final = 3
|
|
4213
|
+
RGN_DIFF: Final = 4
|
|
4214
|
+
RGN_COPY: Final = 5
|
|
4215
|
+
RGN_MIN: Final = RGN_AND
|
|
4216
|
+
RGN_MAX: Final = RGN_COPY
|
|
4217
|
+
|
|
4218
|
+
BLACKONWHITE: Final = 1
|
|
4219
|
+
WHITEONBLACK: Final = 2
|
|
4220
|
+
COLORONCOLOR: Final = 3
|
|
4221
|
+
HALFTONE: Final = 4
|
|
4222
|
+
MAXSTRETCHBLTMODE: Final = 4
|
|
4223
|
+
STRETCH_ANDSCANS: Final = BLACKONWHITE
|
|
4224
|
+
STRETCH_ORSCANS: Final = WHITEONBLACK
|
|
4225
|
+
STRETCH_DELETESCANS: Final = COLORONCOLOR
|
|
4226
|
+
STRETCH_HALFTONE: Final = HALFTONE
|
|
4227
|
+
|
|
4228
|
+
ALTERNATE: Final = 1
|
|
4229
|
+
WINDING: Final = 2
|
|
4230
|
+
POLYFILL_LAST: Final = 2
|
|
4231
|
+
|
|
4232
|
+
LAYOUT_RTL: Final = 1
|
|
4233
|
+
LAYOUT_BTT: Final = 2
|
|
4234
|
+
LAYOUT_VBH: Final = 4
|
|
4235
|
+
LAYOUT_ORIENTATIONMASK: Final[int]
|
|
4236
|
+
LAYOUT_BITMAPORIENTATIONPRESERVED: Final = 8
|
|
4237
|
+
|
|
4238
|
+
TA_NOUPDATECP: Final = 0
|
|
4239
|
+
TA_UPDATECP: Final = 1
|
|
4240
|
+
TA_LEFT: Final = 0
|
|
4241
|
+
TA_RIGHT: Final = 2
|
|
4242
|
+
TA_CENTER: Final = 6
|
|
4243
|
+
TA_TOP: Final = 0
|
|
4244
|
+
TA_BOTTOM: Final = 8
|
|
4245
|
+
TA_BASELINE: Final = 24
|
|
4246
|
+
TA_MASK: Final[int]
|
|
4247
|
+
VTA_BASELINE: Final = TA_BASELINE
|
|
4248
|
+
VTA_LEFT: Final = TA_BOTTOM
|
|
4249
|
+
VTA_RIGHT: Final = TA_TOP
|
|
4250
|
+
VTA_CENTER: Final = TA_CENTER
|
|
4251
|
+
VTA_BOTTOM: Final = TA_RIGHT
|
|
4252
|
+
VTA_TOP: Final = TA_LEFT
|
|
4253
|
+
ETO_GRAYED: Final = 1
|
|
4254
|
+
ETO_OPAQUE: Final = 2
|
|
4255
|
+
ETO_CLIPPED: Final = 4
|
|
4256
|
+
ASPECT_FILTERING: Final = 1
|
|
4257
|
+
DCB_RESET: Final = 1
|
|
4258
|
+
DCB_ACCUMULATE: Final = 2
|
|
4259
|
+
DCB_DIRTY: Final = DCB_ACCUMULATE
|
|
4260
|
+
DCB_SET: Final[int]
|
|
4261
|
+
DCB_ENABLE: Final = 4
|
|
4262
|
+
DCB_DISABLE: Final = 8
|
|
4263
|
+
META_SETBKCOLOR: Final = 513
|
|
4264
|
+
META_SETBKMODE: Final = 258
|
|
4265
|
+
META_SETMAPMODE: Final = 259
|
|
4266
|
+
META_SETROP2: Final = 260
|
|
4267
|
+
META_SETRELABS: Final = 261
|
|
4268
|
+
META_SETPOLYFILLMODE: Final = 262
|
|
4269
|
+
META_SETSTRETCHBLTMODE: Final = 263
|
|
4270
|
+
META_SETTEXTCHAREXTRA: Final = 264
|
|
4271
|
+
META_SETTEXTCOLOR: Final = 521
|
|
4272
|
+
META_SETTEXTJUSTIFICATION: Final = 522
|
|
4273
|
+
META_SETWINDOWORG: Final = 523
|
|
4274
|
+
META_SETWINDOWEXT: Final = 524
|
|
4275
|
+
META_SETVIEWPORTORG: Final = 525
|
|
4276
|
+
META_SETVIEWPORTEXT: Final = 526
|
|
4277
|
+
META_OFFSETWINDOWORG: Final = 527
|
|
4278
|
+
META_SCALEWINDOWEXT: Final = 1040
|
|
4279
|
+
META_OFFSETVIEWPORTORG: Final = 529
|
|
4280
|
+
META_SCALEVIEWPORTEXT: Final = 1042
|
|
4281
|
+
META_LINETO: Final = 531
|
|
4282
|
+
META_MOVETO: Final = 532
|
|
4283
|
+
META_EXCLUDECLIPRECT: Final = 1045
|
|
4284
|
+
META_INTERSECTCLIPRECT: Final = 1046
|
|
4285
|
+
META_ARC: Final = 2071
|
|
4286
|
+
META_ELLIPSE: Final = 1048
|
|
4287
|
+
META_FLOODFILL: Final = 1049
|
|
4288
|
+
META_PIE: Final = 2074
|
|
4289
|
+
META_RECTANGLE: Final = 1051
|
|
4290
|
+
META_ROUNDRECT: Final = 1564
|
|
4291
|
+
META_PATBLT: Final = 1565
|
|
4292
|
+
META_SAVEDC: Final = 30
|
|
4293
|
+
META_SETPIXEL: Final = 1055
|
|
4294
|
+
META_OFFSETCLIPRGN: Final = 544
|
|
4295
|
+
META_TEXTOUT: Final = 1313
|
|
4296
|
+
META_BITBLT: Final = 2338
|
|
4297
|
+
META_STRETCHBLT: Final = 2851
|
|
4298
|
+
META_POLYGON: Final = 804
|
|
4299
|
+
META_POLYLINE: Final = 805
|
|
4300
|
+
META_ESCAPE: Final = 1574
|
|
4301
|
+
META_RESTOREDC: Final = 295
|
|
4302
|
+
META_FILLREGION: Final = 552
|
|
4303
|
+
META_FRAMEREGION: Final = 1065
|
|
4304
|
+
META_INVERTREGION: Final = 298
|
|
4305
|
+
META_PAINTREGION: Final = 299
|
|
4306
|
+
META_SELECTCLIPREGION: Final = 300
|
|
4307
|
+
META_SELECTOBJECT: Final = 301
|
|
4308
|
+
META_SETTEXTALIGN: Final = 302
|
|
4309
|
+
META_CHORD: Final = 2096
|
|
4310
|
+
META_SETMAPPERFLAGS: Final = 561
|
|
4311
|
+
META_EXTTEXTOUT: Final = 2610
|
|
4312
|
+
META_SETDIBTODEV: Final = 3379
|
|
4313
|
+
META_SELECTPALETTE: Final = 564
|
|
4314
|
+
META_REALIZEPALETTE: Final = 53
|
|
4315
|
+
META_ANIMATEPALETTE: Final = 1078
|
|
4316
|
+
META_SETPALENTRIES: Final = 55
|
|
4317
|
+
META_POLYPOLYGON: Final = 1336
|
|
4318
|
+
META_RESIZEPALETTE: Final = 313
|
|
4319
|
+
META_DIBBITBLT: Final = 2368
|
|
4320
|
+
META_DIBSTRETCHBLT: Final = 2881
|
|
4321
|
+
META_DIBCREATEPATTERNBRUSH: Final = 322
|
|
4322
|
+
META_STRETCHDIB: Final = 3907
|
|
4323
|
+
META_EXTFLOODFILL: Final = 1352
|
|
4324
|
+
META_DELETEOBJECT: Final = 496
|
|
4325
|
+
META_CREATEPALETTE: Final = 247
|
|
4326
|
+
META_CREATEPATTERNBRUSH: Final = 505
|
|
4327
|
+
META_CREATEPENINDIRECT: Final = 762
|
|
4328
|
+
META_CREATEFONTINDIRECT: Final = 763
|
|
4329
|
+
META_CREATEBRUSHINDIRECT: Final = 764
|
|
4330
|
+
META_CREATEREGION: Final = 1791
|
|
4331
|
+
FILE_BEGIN: Final = 0
|
|
4332
|
+
FILE_CURRENT: Final = 1
|
|
4333
|
+
FILE_END: Final = 2
|
|
4334
|
+
FILE_FLAG_WRITE_THROUGH: Final = -2147483648
|
|
4335
|
+
FILE_FLAG_OVERLAPPED: Final = 1073741824
|
|
4336
|
+
FILE_FLAG_NO_BUFFERING: Final = 536870912
|
|
4337
|
+
FILE_FLAG_RANDOM_ACCESS: Final = 268435456
|
|
4338
|
+
FILE_FLAG_SEQUENTIAL_SCAN: Final = 134217728
|
|
4339
|
+
FILE_FLAG_DELETE_ON_CLOSE: Final = 67108864
|
|
4340
|
+
FILE_FLAG_BACKUP_SEMANTICS: Final = 33554432
|
|
4341
|
+
FILE_FLAG_POSIX_SEMANTICS: Final = 16777216
|
|
4342
|
+
CREATE_NEW: Final = 1
|
|
4343
|
+
CREATE_ALWAYS: Final = 2
|
|
4344
|
+
OPEN_EXISTING: Final = 3
|
|
4345
|
+
OPEN_ALWAYS: Final = 4
|
|
4346
|
+
TRUNCATE_EXISTING: Final = 5
|
|
4347
|
+
PIPE_ACCESS_INBOUND: Final = 1
|
|
4348
|
+
PIPE_ACCESS_OUTBOUND: Final = 2
|
|
4349
|
+
PIPE_ACCESS_DUPLEX: Final = 3
|
|
4350
|
+
PIPE_CLIENT_END: Final = 0
|
|
4351
|
+
PIPE_SERVER_END: Final = 1
|
|
4352
|
+
PIPE_WAIT: Final = 0
|
|
4353
|
+
PIPE_NOWAIT: Final = 1
|
|
4354
|
+
PIPE_READMODE_BYTE: Final = 0
|
|
4355
|
+
PIPE_READMODE_MESSAGE: Final = 2
|
|
4356
|
+
PIPE_TYPE_BYTE: Final = 0
|
|
4357
|
+
PIPE_TYPE_MESSAGE: Final = 4
|
|
4358
|
+
PIPE_UNLIMITED_INSTANCES: Final = 255
|
|
4359
|
+
SECURITY_CONTEXT_TRACKING: Final = 262144
|
|
4360
|
+
SECURITY_EFFECTIVE_ONLY: Final = 524288
|
|
4361
|
+
SECURITY_SQOS_PRESENT: Final = 1048576
|
|
4362
|
+
SECURITY_VALID_SQOS_FLAGS: Final = 2031616
|
|
4363
|
+
DTR_CONTROL_DISABLE: Final = 0
|
|
4364
|
+
DTR_CONTROL_ENABLE: Final = 1
|
|
4365
|
+
DTR_CONTROL_HANDSHAKE: Final = 2
|
|
4366
|
+
RTS_CONTROL_DISABLE: Final = 0
|
|
4367
|
+
RTS_CONTROL_ENABLE: Final = 1
|
|
4368
|
+
RTS_CONTROL_HANDSHAKE: Final = 2
|
|
4369
|
+
RTS_CONTROL_TOGGLE: Final = 3
|
|
4370
|
+
GMEM_FIXED: Final = 0
|
|
4371
|
+
GMEM_MOVEABLE: Final = 2
|
|
4372
|
+
GMEM_NOCOMPACT: Final = 16
|
|
4373
|
+
GMEM_NODISCARD: Final = 32
|
|
4374
|
+
GMEM_ZEROINIT: Final = 64
|
|
4375
|
+
GMEM_MODIFY: Final = 128
|
|
4376
|
+
GMEM_DISCARDABLE: Final = 256
|
|
4377
|
+
GMEM_NOT_BANKED: Final = 4096
|
|
4378
|
+
GMEM_SHARE: Final = 8192
|
|
4379
|
+
GMEM_DDESHARE: Final = 8192
|
|
4380
|
+
GMEM_NOTIFY: Final = 16384
|
|
4381
|
+
GMEM_LOWER: Final = GMEM_NOT_BANKED
|
|
4382
|
+
GMEM_VALID_FLAGS: Final = 32626
|
|
4383
|
+
GMEM_INVALID_HANDLE: Final = 32768
|
|
4384
|
+
GHND: Final[int]
|
|
4385
|
+
GPTR: Final[int]
|
|
4386
|
+
GMEM_DISCARDED: Final = 16384
|
|
4387
|
+
GMEM_LOCKCOUNT: Final = 255
|
|
4388
|
+
LMEM_FIXED: Final = 0
|
|
4389
|
+
LMEM_MOVEABLE: Final = 2
|
|
4390
|
+
LMEM_NOCOMPACT: Final = 16
|
|
4391
|
+
LMEM_NODISCARD: Final = 32
|
|
4392
|
+
LMEM_ZEROINIT: Final = 64
|
|
4393
|
+
LMEM_MODIFY: Final = 128
|
|
4394
|
+
LMEM_DISCARDABLE: Final = 3840
|
|
4395
|
+
LMEM_VALID_FLAGS: Final = 3954
|
|
4396
|
+
LMEM_INVALID_HANDLE: Final = 32768
|
|
4397
|
+
LHND: Final[int]
|
|
4398
|
+
LPTR: Final[int]
|
|
4399
|
+
NONZEROLHND: Final = LMEM_MOVEABLE
|
|
4400
|
+
NONZEROLPTR: Final = LMEM_FIXED
|
|
4401
|
+
LMEM_DISCARDED: Final = 16384
|
|
4402
|
+
LMEM_LOCKCOUNT: Final = 255
|
|
4403
|
+
DEBUG_PROCESS: Final = 1
|
|
4404
|
+
DEBUG_ONLY_THIS_PROCESS: Final = 2
|
|
4405
|
+
CREATE_SUSPENDED: Final = 4
|
|
4406
|
+
DETACHED_PROCESS: Final = 8
|
|
4407
|
+
CREATE_NEW_CONSOLE: Final = 16
|
|
4408
|
+
NORMAL_PRIORITY_CLASS: Final = 32
|
|
4409
|
+
IDLE_PRIORITY_CLASS: Final = 64
|
|
4410
|
+
HIGH_PRIORITY_CLASS: Final = 128
|
|
4411
|
+
REALTIME_PRIORITY_CLASS: Final = 256
|
|
4412
|
+
CREATE_NEW_PROCESS_GROUP: Final = 512
|
|
4413
|
+
CREATE_UNICODE_ENVIRONMENT: Final = 1024
|
|
4414
|
+
CREATE_SEPARATE_WOW_VDM: Final = 2048
|
|
4415
|
+
CREATE_SHARED_WOW_VDM: Final = 4096
|
|
4416
|
+
CREATE_DEFAULT_ERROR_MODE: Final = 67108864
|
|
4417
|
+
CREATE_NO_WINDOW: Final = 134217728
|
|
4418
|
+
PROFILE_USER: Final = 268435456
|
|
4419
|
+
PROFILE_KERNEL: Final = 536870912
|
|
4420
|
+
PROFILE_SERVER: Final = 1073741824
|
|
4421
|
+
THREAD_BASE_PRIORITY_LOWRT: Final = 15
|
|
4422
|
+
THREAD_BASE_PRIORITY_MAX: Final = 2
|
|
4423
|
+
THREAD_BASE_PRIORITY_MIN: Final = -2
|
|
4424
|
+
THREAD_BASE_PRIORITY_IDLE: Final = -15
|
|
4425
|
+
THREAD_PRIORITY_LOWEST: Final = THREAD_BASE_PRIORITY_MIN
|
|
4426
|
+
THREAD_PRIORITY_BELOW_NORMAL: Final[int]
|
|
4427
|
+
THREAD_PRIORITY_HIGHEST: Final = THREAD_BASE_PRIORITY_MAX
|
|
4428
|
+
THREAD_PRIORITY_ABOVE_NORMAL: Final[int]
|
|
4429
|
+
THREAD_PRIORITY_ERROR_RETURN: Final = MAXLONG
|
|
4430
|
+
THREAD_PRIORITY_TIME_CRITICAL: Final = THREAD_BASE_PRIORITY_LOWRT
|
|
4431
|
+
THREAD_PRIORITY_IDLE: Final = THREAD_BASE_PRIORITY_IDLE
|
|
4432
|
+
THREAD_PRIORITY_NORMAL: Final = 0
|
|
4433
|
+
THREAD_MODE_BACKGROUND_BEGIN: Final = 0x00010000
|
|
4434
|
+
THREAD_MODE_BACKGROUND_END: Final = 0x00020000
|
|
4435
|
+
|
|
4436
|
+
EXCEPTION_DEBUG_EVENT: Final = 1
|
|
4437
|
+
CREATE_THREAD_DEBUG_EVENT: Final = 2
|
|
4438
|
+
CREATE_PROCESS_DEBUG_EVENT: Final = 3
|
|
4439
|
+
EXIT_THREAD_DEBUG_EVENT: Final = 4
|
|
4440
|
+
EXIT_PROCESS_DEBUG_EVENT: Final = 5
|
|
4441
|
+
LOAD_DLL_DEBUG_EVENT: Final = 6
|
|
4442
|
+
UNLOAD_DLL_DEBUG_EVENT: Final = 7
|
|
4443
|
+
OUTPUT_DEBUG_STRING_EVENT: Final = 8
|
|
4444
|
+
RIP_EVENT: Final = 9
|
|
4445
|
+
DRIVE_UNKNOWN: Final = 0
|
|
4446
|
+
DRIVE_NO_ROOT_DIR: Final = 1
|
|
4447
|
+
DRIVE_REMOVABLE: Final = 2
|
|
4448
|
+
DRIVE_FIXED: Final = 3
|
|
4449
|
+
DRIVE_REMOTE: Final = 4
|
|
4450
|
+
DRIVE_CDROM: Final = 5
|
|
4451
|
+
DRIVE_RAMDISK: Final = 6
|
|
4452
|
+
FILE_TYPE_UNKNOWN: Final = 0
|
|
4453
|
+
FILE_TYPE_DISK: Final = 1
|
|
4454
|
+
FILE_TYPE_CHAR: Final = 2
|
|
4455
|
+
FILE_TYPE_PIPE: Final = 3
|
|
4456
|
+
FILE_TYPE_REMOTE: Final = 32768
|
|
4457
|
+
NOPARITY: Final = 0
|
|
4458
|
+
ODDPARITY: Final = 1
|
|
4459
|
+
EVENPARITY: Final = 2
|
|
4460
|
+
MARKPARITY: Final = 3
|
|
4461
|
+
SPACEPARITY: Final = 4
|
|
4462
|
+
ONESTOPBIT: Final = 0
|
|
4463
|
+
ONE5STOPBITS: Final = 1
|
|
4464
|
+
TWOSTOPBITS: Final = 2
|
|
4465
|
+
CBR_110: Final = 110
|
|
4466
|
+
CBR_300: Final = 300
|
|
4467
|
+
CBR_600: Final = 600
|
|
4468
|
+
CBR_1200: Final = 1200
|
|
4469
|
+
CBR_2400: Final = 2400
|
|
4470
|
+
CBR_4800: Final = 4800
|
|
4471
|
+
CBR_9600: Final = 9600
|
|
4472
|
+
CBR_14400: Final = 14400
|
|
4473
|
+
CBR_19200: Final = 19200
|
|
4474
|
+
CBR_38400: Final = 38400
|
|
4475
|
+
CBR_56000: Final = 56000
|
|
4476
|
+
CBR_57600: Final = 57600
|
|
4477
|
+
CBR_115200: Final = 115200
|
|
4478
|
+
CBR_128000: Final = 128000
|
|
4479
|
+
CBR_256000: Final = 256000
|
|
4480
|
+
S_QUEUEEMPTY: Final = 0
|
|
4481
|
+
S_THRESHOLD: Final = 1
|
|
4482
|
+
S_ALLTHRESHOLD: Final = 2
|
|
4483
|
+
S_NORMAL: Final = 0
|
|
4484
|
+
S_LEGATO: Final = 1
|
|
4485
|
+
S_STACCATO: Final = 2
|
|
4486
|
+
NMPWAIT_WAIT_FOREVER: Final = -1
|
|
4487
|
+
NMPWAIT_NOWAIT: Final = 1
|
|
4488
|
+
NMPWAIT_USE_DEFAULT_WAIT: Final = 0
|
|
4489
|
+
OF_READ: Final = 0
|
|
4490
|
+
OF_WRITE: Final = 1
|
|
4491
|
+
OF_READWRITE: Final = 2
|
|
4492
|
+
OF_SHARE_COMPAT: Final = 0
|
|
4493
|
+
OF_SHARE_EXCLUSIVE: Final = 16
|
|
4494
|
+
OF_SHARE_DENY_WRITE: Final = 32
|
|
4495
|
+
OF_SHARE_DENY_READ: Final = 48
|
|
4496
|
+
OF_SHARE_DENY_NONE: Final = 64
|
|
4497
|
+
OF_PARSE: Final = 256
|
|
4498
|
+
OF_DELETE: Final = 512
|
|
4499
|
+
OF_VERIFY: Final = 1024
|
|
4500
|
+
OF_CANCEL: Final = 2048
|
|
4501
|
+
OF_CREATE: Final = 4096
|
|
4502
|
+
OF_PROMPT: Final = 8192
|
|
4503
|
+
OF_EXIST: Final = 16384
|
|
4504
|
+
OF_REOPEN: Final = 32768
|
|
4505
|
+
OFS_MAXPATHNAME: Final = 128
|
|
4506
|
+
MAXINTATOM: Final = 49152
|
|
4507
|
+
|
|
4508
|
+
PROCESS_HEAP_REGION: Final = 1
|
|
4509
|
+
PROCESS_HEAP_UNCOMMITTED_RANGE: Final = 2
|
|
4510
|
+
PROCESS_HEAP_ENTRY_BUSY: Final = 4
|
|
4511
|
+
PROCESS_HEAP_ENTRY_MOVEABLE: Final = 16
|
|
4512
|
+
PROCESS_HEAP_ENTRY_DDESHARE: Final = 32
|
|
4513
|
+
SCS_32BIT_BINARY: Final = 0
|
|
4514
|
+
SCS_DOS_BINARY: Final = 1
|
|
4515
|
+
SCS_WOW_BINARY: Final = 2
|
|
4516
|
+
SCS_PIF_BINARY: Final = 3
|
|
4517
|
+
SCS_POSIX_BINARY: Final = 4
|
|
4518
|
+
SCS_OS216_BINARY: Final = 5
|
|
4519
|
+
SEM_FAILCRITICALERRORS: Final = 1
|
|
4520
|
+
SEM_NOGPFAULTERRORBOX: Final = 2
|
|
4521
|
+
SEM_NOALIGNMENTFAULTEXCEPT: Final = 4
|
|
4522
|
+
SEM_NOOPENFILEERRORBOX: Final = 32768
|
|
4523
|
+
LOCKFILE_FAIL_IMMEDIATELY: Final = 1
|
|
4524
|
+
LOCKFILE_EXCLUSIVE_LOCK: Final = 2
|
|
4525
|
+
HANDLE_FLAG_INHERIT: Final = 1
|
|
4526
|
+
HANDLE_FLAG_PROTECT_FROM_CLOSE: Final = 2
|
|
4527
|
+
HINSTANCE_ERROR: Final = 32
|
|
4528
|
+
GET_TAPE_MEDIA_INFORMATION: Final = 0
|
|
4529
|
+
GET_TAPE_DRIVE_INFORMATION: Final = 1
|
|
4530
|
+
SET_TAPE_MEDIA_INFORMATION: Final = 0
|
|
4531
|
+
SET_TAPE_DRIVE_INFORMATION: Final = 1
|
|
4532
|
+
FORMAT_MESSAGE_ALLOCATE_BUFFER: Final = 256
|
|
4533
|
+
FORMAT_MESSAGE_IGNORE_INSERTS: Final = 512
|
|
4534
|
+
FORMAT_MESSAGE_FROM_STRING: Final = 1024
|
|
4535
|
+
FORMAT_MESSAGE_FROM_HMODULE: Final = 2048
|
|
4536
|
+
FORMAT_MESSAGE_FROM_SYSTEM: Final = 4096
|
|
4537
|
+
FORMAT_MESSAGE_ARGUMENT_ARRAY: Final = 8192
|
|
4538
|
+
FORMAT_MESSAGE_MAX_WIDTH_MASK: Final = 255
|
|
4539
|
+
BACKUP_INVALID: Final = 0
|
|
4540
|
+
BACKUP_DATA: Final = 1
|
|
4541
|
+
BACKUP_EA_DATA: Final = 2
|
|
4542
|
+
BACKUP_SECURITY_DATA: Final = 3
|
|
4543
|
+
BACKUP_ALTERNATE_DATA: Final = 4
|
|
4544
|
+
BACKUP_LINK: Final = 5
|
|
4545
|
+
BACKUP_PROPERTY_DATA: Final = 6
|
|
4546
|
+
BACKUP_OBJECT_ID: Final = 7
|
|
4547
|
+
BACKUP_REPARSE_DATA: Final = 8
|
|
4548
|
+
BACKUP_SPARSE_BLOCK: Final = 9
|
|
4549
|
+
|
|
4550
|
+
STREAM_NORMAL_ATTRIBUTE: Final = 0
|
|
4551
|
+
STREAM_MODIFIED_WHEN_READ: Final = 1
|
|
4552
|
+
STREAM_CONTAINS_SECURITY: Final = 2
|
|
4553
|
+
STREAM_CONTAINS_PROPERTIES: Final = 4
|
|
4554
|
+
STARTF_USESHOWWINDOW: Final = 1
|
|
4555
|
+
STARTF_USESIZE: Final = 2
|
|
4556
|
+
STARTF_USEPOSITION: Final = 4
|
|
4557
|
+
STARTF_USECOUNTCHARS: Final = 8
|
|
4558
|
+
STARTF_USEFILLATTRIBUTE: Final = 16
|
|
4559
|
+
STARTF_FORCEONFEEDBACK: Final = 64
|
|
4560
|
+
STARTF_FORCEOFFFEEDBACK: Final = 128
|
|
4561
|
+
STARTF_USESTDHANDLES: Final = 256
|
|
4562
|
+
STARTF_USEHOTKEY: Final = 512
|
|
4563
|
+
SHUTDOWN_NORETRY: Final = 1
|
|
4564
|
+
DONT_RESOLVE_DLL_REFERENCES: Final = 1
|
|
4565
|
+
LOAD_LIBRARY_AS_DATAFILE: Final = 2
|
|
4566
|
+
LOAD_WITH_ALTERED_SEARCH_PATH: Final = 8
|
|
4567
|
+
DDD_RAW_TARGET_PATH: Final = 1
|
|
4568
|
+
DDD_REMOVE_DEFINITION: Final = 2
|
|
4569
|
+
DDD_EXACT_MATCH_ON_REMOVE: Final = 4
|
|
4570
|
+
MOVEFILE_REPLACE_EXISTING: Final = 1
|
|
4571
|
+
MOVEFILE_COPY_ALLOWED: Final = 2
|
|
4572
|
+
MOVEFILE_DELAY_UNTIL_REBOOT: Final = 4
|
|
4573
|
+
MAX_COMPUTERNAME_LENGTH: Final = 15
|
|
4574
|
+
LOGON32_LOGON_INTERACTIVE: Final = 2
|
|
4575
|
+
LOGON32_LOGON_NETWORK: Final = 3
|
|
4576
|
+
LOGON32_LOGON_BATCH: Final = 4
|
|
4577
|
+
LOGON32_LOGON_SERVICE: Final = 5
|
|
4578
|
+
LOGON32_LOGON_UNLOCK: Final = 7
|
|
4579
|
+
LOGON32_LOGON_NETWORK_CLEARTEXT: Final = 8
|
|
4580
|
+
LOGON32_LOGON_NEW_CREDENTIALS: Final = 9
|
|
4581
|
+
LOGON32_PROVIDER_DEFAULT: Final = 0
|
|
4582
|
+
LOGON32_PROVIDER_WINNT35: Final = 1
|
|
4583
|
+
LOGON32_PROVIDER_WINNT40: Final = 2
|
|
4584
|
+
LOGON32_PROVIDER_WINNT50: Final = 3
|
|
4585
|
+
VER_PLATFORM_WIN32s: Final = 0
|
|
4586
|
+
VER_PLATFORM_WIN32_WINDOWS: Final = 1
|
|
4587
|
+
VER_PLATFORM_WIN32_NT: Final = 2
|
|
4588
|
+
TC_NORMAL: Final = 0
|
|
4589
|
+
TC_HARDERR: Final = 1
|
|
4590
|
+
TC_GP_TRAP: Final = 2
|
|
4591
|
+
TC_SIGNAL: Final = 3
|
|
4592
|
+
AC_LINE_OFFLINE: Final = 0
|
|
4593
|
+
AC_LINE_ONLINE: Final = 1
|
|
4594
|
+
AC_LINE_BACKUP_POWER: Final = 2
|
|
4595
|
+
AC_LINE_UNKNOWN: Final = 255
|
|
4596
|
+
BATTERY_FLAG_HIGH: Final = 1
|
|
4597
|
+
BATTERY_FLAG_LOW: Final = 2
|
|
4598
|
+
BATTERY_FLAG_CRITICAL: Final = 4
|
|
4599
|
+
BATTERY_FLAG_CHARGING: Final = 8
|
|
4600
|
+
BATTERY_FLAG_NO_BATTERY: Final = 128
|
|
4601
|
+
BATTERY_FLAG_UNKNOWN: Final = 255
|
|
4602
|
+
BATTERY_PERCENTAGE_UNKNOWN: Final = 255
|
|
4603
|
+
BATTERY_LIFE_UNKNOWN: Final = -1
|
|
4604
|
+
|
|
4605
|
+
cchTextLimitDefault: Final = 32767
|
|
4606
|
+
WM_CONTEXTMENU: Final = 123
|
|
4607
|
+
WM_PRINTCLIENT: Final = 792
|
|
4608
|
+
EN_MSGFILTER: Final = 1792
|
|
4609
|
+
EN_REQUESTRESIZE: Final = 1793
|
|
4610
|
+
EN_SELCHANGE: Final = 1794
|
|
4611
|
+
EN_DROPFILES: Final = 1795
|
|
4612
|
+
EN_PROTECTED: Final = 1796
|
|
4613
|
+
EN_CORRECTTEXT: Final = 1797
|
|
4614
|
+
EN_STOPNOUNDO: Final = 1798
|
|
4615
|
+
EN_IMECHANGE: Final = 1799
|
|
4616
|
+
EN_SAVECLIPBOARD: Final = 1800
|
|
4617
|
+
EN_OLEOPFAILED: Final = 1801
|
|
4618
|
+
ENM_NONE: Final = 0
|
|
4619
|
+
ENM_CHANGE: Final = 1
|
|
4620
|
+
ENM_UPDATE: Final = 2
|
|
4621
|
+
ENM_SCROLL: Final = 4
|
|
4622
|
+
ENM_KEYEVENTS: Final = 65536
|
|
4623
|
+
ENM_MOUSEEVENTS: Final = 131072
|
|
4624
|
+
ENM_REQUESTRESIZE: Final = 262144
|
|
4625
|
+
ENM_SELCHANGE: Final = 524288
|
|
4626
|
+
ENM_DROPFILES: Final = 1048576
|
|
4627
|
+
ENM_PROTECTED: Final = 2097152
|
|
4628
|
+
ENM_CORRECTTEXT: Final = 4194304
|
|
4629
|
+
ENM_IMECHANGE: Final = 8388608
|
|
4630
|
+
ES_SAVESEL: Final = 32768
|
|
4631
|
+
ES_SUNKEN: Final = 16384
|
|
4632
|
+
ES_DISABLENOSCROLL: Final = 8192
|
|
4633
|
+
ES_SELECTIONBAR: Final = 16777216
|
|
4634
|
+
ES_EX_NOCALLOLEINIT: Final = 16777216
|
|
4635
|
+
ES_VERTICAL: Final = 4194304
|
|
4636
|
+
ES_NOIME: Final = 524288
|
|
4637
|
+
ES_SELFIME: Final = 262144
|
|
4638
|
+
ECO_AUTOWORDSELECTION: Final = 1
|
|
4639
|
+
ECO_AUTOVSCROLL: Final = 64
|
|
4640
|
+
ECO_AUTOHSCROLL: Final = 128
|
|
4641
|
+
ECO_NOHIDESEL: Final = 256
|
|
4642
|
+
ECO_READONLY: Final = 2048
|
|
4643
|
+
ECO_WANTRETURN: Final = 4096
|
|
4644
|
+
ECO_SAVESEL: Final = 32768
|
|
4645
|
+
ECO_SELECTIONBAR: Final = 16777216
|
|
4646
|
+
ECO_VERTICAL: Final = 4194304
|
|
4647
|
+
ECOOP_SET: Final = 1
|
|
4648
|
+
ECOOP_OR: Final = 2
|
|
4649
|
+
ECOOP_AND: Final = 3
|
|
4650
|
+
ECOOP_XOR: Final = 4
|
|
4651
|
+
WB_CLASSIFY: Final = 3
|
|
4652
|
+
WB_MOVEWORDLEFT: Final = 4
|
|
4653
|
+
WB_MOVEWORDRIGHT: Final = 5
|
|
4654
|
+
WB_LEFTBREAK: Final = 6
|
|
4655
|
+
WB_RIGHTBREAK: Final = 7
|
|
4656
|
+
WB_MOVEWORDPREV: Final = 4
|
|
4657
|
+
WB_MOVEWORDNEXT: Final = 5
|
|
4658
|
+
WB_PREVBREAK: Final = 6
|
|
4659
|
+
WB_NEXTBREAK: Final = 7
|
|
4660
|
+
PC_FOLLOWING: Final = 1
|
|
4661
|
+
PC_LEADING: Final = 2
|
|
4662
|
+
PC_OVERFLOW: Final = 3
|
|
4663
|
+
PC_DELIMITER: Final = 4
|
|
4664
|
+
WBF_WORDWRAP: Final = 16
|
|
4665
|
+
WBF_WORDBREAK: Final = 32
|
|
4666
|
+
WBF_OVERFLOW: Final = 64
|
|
4667
|
+
WBF_LEVEL1: Final = 128
|
|
4668
|
+
WBF_LEVEL2: Final = 256
|
|
4669
|
+
WBF_CUSTOM: Final = 512
|
|
4670
|
+
CFM_BOLD: Final = 1
|
|
4671
|
+
CFM_ITALIC: Final = 2
|
|
4672
|
+
CFM_UNDERLINE: Final = 4
|
|
4673
|
+
CFM_STRIKEOUT: Final = 8
|
|
4674
|
+
CFM_PROTECTED: Final = 16
|
|
4675
|
+
CFM_SIZE: Final = -2147483648
|
|
4676
|
+
CFM_COLOR: Final = 1073741824
|
|
4677
|
+
CFM_FACE: Final = 536870912
|
|
4678
|
+
CFM_OFFSET: Final = 268435456
|
|
4679
|
+
CFM_CHARSET: Final = 134217728
|
|
4680
|
+
CFE_BOLD: Final = 1
|
|
4681
|
+
CFE_ITALIC: Final = 2
|
|
4682
|
+
CFE_UNDERLINE: Final = 4
|
|
4683
|
+
CFE_STRIKEOUT: Final = 8
|
|
4684
|
+
CFE_PROTECTED: Final = 16
|
|
4685
|
+
CFE_AUTOCOLOR: Final = 1073741824
|
|
4686
|
+
yHeightCharPtsMost: Final = 1638
|
|
4687
|
+
SCF_SELECTION: Final = 1
|
|
4688
|
+
SCF_WORD: Final = 2
|
|
4689
|
+
SF_TEXT: Final = 1
|
|
4690
|
+
SF_RTF: Final = 2
|
|
4691
|
+
SF_RTFNOOBJS: Final = 3
|
|
4692
|
+
SF_TEXTIZED: Final = 4
|
|
4693
|
+
SFF_SELECTION: Final = 32768
|
|
4694
|
+
SFF_PLAINRTF: Final = 16384
|
|
4695
|
+
MAX_TAB_STOPS: Final = 32
|
|
4696
|
+
lDefaultTab: Final = 720
|
|
4697
|
+
PFM_STARTINDENT: Final = 1
|
|
4698
|
+
PFM_RIGHTINDENT: Final = 2
|
|
4699
|
+
PFM_OFFSET: Final = 4
|
|
4700
|
+
PFM_ALIGNMENT: Final = 8
|
|
4701
|
+
PFM_TABSTOPS: Final = 16
|
|
4702
|
+
PFM_NUMBERING: Final = 32
|
|
4703
|
+
PFM_OFFSETINDENT: Final = -2147483648
|
|
4704
|
+
PFN_BULLET: Final = 1
|
|
4705
|
+
PFA_LEFT: Final = 1
|
|
4706
|
+
PFA_RIGHT: Final = 2
|
|
4707
|
+
PFA_CENTER: Final = 3
|
|
4708
|
+
WM_NOTIFY: Final = 78
|
|
4709
|
+
SEL_EMPTY: Final = 0
|
|
4710
|
+
SEL_TEXT: Final = 1
|
|
4711
|
+
SEL_OBJECT: Final = 2
|
|
4712
|
+
SEL_MULTICHAR: Final = 4
|
|
4713
|
+
SEL_MULTIOBJECT: Final = 8
|
|
4714
|
+
OLEOP_DOVERB: Final = 1
|
|
4715
|
+
CF_RTF: Final = "Rich Text Format"
|
|
4716
|
+
CF_RTFNOOBJS: Final = "Rich Text Format Without Objects"
|
|
4717
|
+
CF_RETEXTOBJ: Final = "RichEdit Text and Objects"
|
|
4718
|
+
|
|
4719
|
+
RIGHT_ALT_PRESSED: Final = 1
|
|
4720
|
+
LEFT_ALT_PRESSED: Final = 2
|
|
4721
|
+
RIGHT_CTRL_PRESSED: Final = 4
|
|
4722
|
+
LEFT_CTRL_PRESSED: Final = 8
|
|
4723
|
+
SHIFT_PRESSED: Final = 16
|
|
4724
|
+
NUMLOCK_ON: Final = 32
|
|
4725
|
+
SCROLLLOCK_ON: Final = 64
|
|
4726
|
+
CAPSLOCK_ON: Final = 128
|
|
4727
|
+
ENHANCED_KEY: Final = 256
|
|
4728
|
+
NLS_DBCSCHAR: Final = 65536
|
|
4729
|
+
NLS_ALPHANUMERIC: Final = 0
|
|
4730
|
+
NLS_KATAKANA: Final = 131072
|
|
4731
|
+
NLS_HIRAGANA: Final = 262144
|
|
4732
|
+
NLS_ROMAN: Final = 4194304
|
|
4733
|
+
NLS_IME_CONVERSION: Final = 8388608
|
|
4734
|
+
NLS_IME_DISABLE: Final = 536870912
|
|
4735
|
+
|
|
4736
|
+
FROM_LEFT_1ST_BUTTON_PRESSED: Final = 1
|
|
4737
|
+
RIGHTMOST_BUTTON_PRESSED: Final = 2
|
|
4738
|
+
FROM_LEFT_2ND_BUTTON_PRESSED: Final = 4
|
|
4739
|
+
FROM_LEFT_3RD_BUTTON_PRESSED: Final = 8
|
|
4740
|
+
FROM_LEFT_4TH_BUTTON_PRESSED: Final = 16
|
|
4741
|
+
|
|
4742
|
+
CTRL_C_EVENT: Final = 0
|
|
4743
|
+
CTRL_BREAK_EVENT: Final = 1
|
|
4744
|
+
CTRL_CLOSE_EVENT: Final = 2
|
|
4745
|
+
CTRL_LOGOFF_EVENT: Final = 5
|
|
4746
|
+
CTRL_SHUTDOWN_EVENT: Final = 6
|
|
4747
|
+
|
|
4748
|
+
MOUSE_MOVED: Final = 1
|
|
4749
|
+
DOUBLE_CLICK: Final = 2
|
|
4750
|
+
MOUSE_WHEELED: Final = 4
|
|
4751
|
+
|
|
4752
|
+
PSM_SETCURSEL: Final[int]
|
|
4753
|
+
PSM_REMOVEPAGE: Final[int]
|
|
4754
|
+
PSM_ADDPAGE: Final[int]
|
|
4755
|
+
PSM_CHANGED: Final[int]
|
|
4756
|
+
PSM_RESTARTWINDOWS: Final[int]
|
|
4757
|
+
PSM_REBOOTSYSTEM: Final[int]
|
|
4758
|
+
PSM_CANCELTOCLOSE: Final[int]
|
|
4759
|
+
PSM_QUERYSIBLINGS: Final[int]
|
|
4760
|
+
PSM_UNCHANGED: Final[int]
|
|
4761
|
+
PSM_APPLY: Final[int]
|
|
4762
|
+
PSM_SETTITLEA: Final[int]
|
|
4763
|
+
PSM_SETTITLEW: Final[int]
|
|
4764
|
+
PSM_SETWIZBUTTONS: Final[int]
|
|
4765
|
+
PSM_PRESSBUTTON: Final[int]
|
|
4766
|
+
PSM_SETCURSELID: Final[int]
|
|
4767
|
+
PSM_SETFINISHTEXTA: Final[int]
|
|
4768
|
+
PSM_SETFINISHTEXTW: Final[int]
|
|
4769
|
+
PSM_GETTABCONTROL: Final[int]
|
|
4770
|
+
PSM_ISDIALOGMESSAGE: Final[int]
|
|
4771
|
+
PSM_GETCURRENTPAGEHWND: Final[int]
|
|
4772
|
+
PSM_INSERTPAGE: Final[int]
|
|
4773
|
+
PSM_SETHEADERTITLEA: Final[int]
|
|
4774
|
+
PSM_SETHEADERTITLEW: Final[int]
|
|
4775
|
+
PSM_SETHEADERSUBTITLEA: Final[int]
|
|
4776
|
+
PSM_SETHEADERSUBTITLEW: Final[int]
|
|
4777
|
+
PSM_HWNDTOINDEX: Final[int]
|
|
4778
|
+
PSM_INDEXTOHWND: Final[int]
|
|
4779
|
+
PSM_PAGETOINDEX: Final[int]
|
|
4780
|
+
PSM_INDEXTOPAGE: Final[int]
|
|
4781
|
+
PSM_IDTOINDEX: Final[int]
|
|
4782
|
+
PSM_INDEXTOID: Final[int]
|
|
4783
|
+
PSM_GETRESULT: Final[int]
|
|
4784
|
+
PSM_RECALCPAGESIZES: Final[int]
|
|
4785
|
+
|
|
4786
|
+
NameUnknown: Final = 0
|
|
4787
|
+
NameFullyQualifiedDN: Final = 1
|
|
4788
|
+
NameSamCompatible: Final = 2
|
|
4789
|
+
NameDisplay: Final = 3
|
|
4790
|
+
NameUniqueId: Final = 6
|
|
4791
|
+
NameCanonical: Final = 7
|
|
4792
|
+
NameUserPrincipal: Final = 8
|
|
4793
|
+
NameCanonicalEx: Final = 9
|
|
4794
|
+
NameServicePrincipal: Final = 10
|
|
4795
|
+
NameDnsDomain: Final = 12
|
|
4796
|
+
|
|
4797
|
+
ComputerNameNetBIOS: Final = 0
|
|
4798
|
+
ComputerNameDnsHostname: Final = 1
|
|
4799
|
+
ComputerNameDnsDomain: Final = 2
|
|
4800
|
+
ComputerNameDnsFullyQualified: Final = 3
|
|
4801
|
+
ComputerNamePhysicalNetBIOS: Final = 4
|
|
4802
|
+
ComputerNamePhysicalDnsHostname: Final = 5
|
|
4803
|
+
ComputerNamePhysicalDnsDomain: Final = 6
|
|
4804
|
+
ComputerNamePhysicalDnsFullyQualified: Final = 7
|
|
4805
|
+
|
|
4806
|
+
LWA_COLORKEY: Final = 0x00000001
|
|
4807
|
+
LWA_ALPHA: Final = 0x00000002
|
|
4808
|
+
ULW_COLORKEY: Final = 0x00000001
|
|
4809
|
+
ULW_ALPHA: Final = 0x00000002
|
|
4810
|
+
ULW_OPAQUE: Final = 0x00000004
|
|
4811
|
+
|
|
4812
|
+
TRUE: Final = 1
|
|
4813
|
+
FALSE: Final = 0
|
|
4814
|
+
MAX_PATH: Final = 260
|
|
4815
|
+
|
|
4816
|
+
AC_SRC_OVER: Final = 0
|
|
4817
|
+
AC_SRC_ALPHA: Final = 1
|
|
4818
|
+
GRADIENT_FILL_RECT_H: Final = 0
|
|
4819
|
+
GRADIENT_FILL_RECT_V: Final = 1
|
|
4820
|
+
GRADIENT_FILL_TRIANGLE: Final = 2
|
|
4821
|
+
GRADIENT_FILL_OP_FLAG: Final = 255
|
|
4822
|
+
|
|
4823
|
+
MM_WORKING_SET_MAX_HARD_ENABLE: Final = 1
|
|
4824
|
+
MM_WORKING_SET_MAX_HARD_DISABLE: Final = 2
|
|
4825
|
+
MM_WORKING_SET_MIN_HARD_ENABLE: Final = 4
|
|
4826
|
+
MM_WORKING_SET_MIN_HARD_DISABLE: Final = 8
|
|
4827
|
+
|
|
4828
|
+
VOLUME_NAME_DOS: Final = 0
|
|
4829
|
+
VOLUME_NAME_GUID: Final = 1
|
|
4830
|
+
VOLUME_NAME_NT: Final = 2
|
|
4831
|
+
VOLUME_NAME_NONE: Final = 4
|
|
4832
|
+
FILE_NAME_NORMALIZED: Final = 0
|
|
4833
|
+
FILE_NAME_OPENED: Final = 8
|
|
4834
|
+
|
|
4835
|
+
DEVICE_NOTIFY_WINDOW_HANDLE: Final = 0x00000000
|
|
4836
|
+
DEVICE_NOTIFY_SERVICE_HANDLE: Final = 0x00000001
|
|
4837
|
+
|
|
4838
|
+
WM_DEVICECHANGE: Final = 0x0219
|
|
4839
|
+
BSF_QUERY: Final = 0x00000001
|
|
4840
|
+
BSF_IGNORECURRENTTASK: Final = 0x00000002
|
|
4841
|
+
BSF_FLUSHDISK: Final = 0x00000004
|
|
4842
|
+
BSF_NOHANG: Final = 0x00000008
|
|
4843
|
+
BSF_POSTMESSAGE: Final = 0x00000010
|
|
4844
|
+
BSF_FORCEIFHUNG: Final = 0x00000020
|
|
4845
|
+
BSF_NOTIMEOUTIFNOTHUNG: Final = 0x00000040
|
|
4846
|
+
BSF_MSGSRV32ISOK: Final = -2147483648
|
|
4847
|
+
BSF_MSGSRV32ISOK_BIT: Final = 31
|
|
4848
|
+
BSM_ALLCOMPONENTS: Final = 0x00000000
|
|
4849
|
+
BSM_VXDS: Final = 0x00000001
|
|
4850
|
+
BSM_NETDRIVER: Final = 0x00000002
|
|
4851
|
+
BSM_INSTALLABLEDRIVERS: Final = 0x00000004
|
|
4852
|
+
BSM_APPLICATIONS: Final = 0x00000008
|
|
4853
|
+
DBT_APPYBEGIN: Final = 0x0000
|
|
4854
|
+
DBT_APPYEND: Final = 0x0001
|
|
4855
|
+
DBT_DEVNODES_CHANGED: Final = 0x0007
|
|
4856
|
+
DBT_QUERYCHANGECONFIG: Final = 0x0017
|
|
4857
|
+
DBT_CONFIGCHANGED: Final = 0x0018
|
|
4858
|
+
DBT_CONFIGCHANGECANCELED: Final = 0x0019
|
|
4859
|
+
DBT_MONITORCHANGE: Final = 0x001B
|
|
4860
|
+
DBT_SHELLLOGGEDON: Final = 0x0020
|
|
4861
|
+
DBT_CONFIGMGAPI32: Final = 0x0022
|
|
4862
|
+
DBT_VXDINITCOMPLETE: Final = 0x0023
|
|
4863
|
+
DBT_VOLLOCKQUERYLOCK: Final = 0x8041
|
|
4864
|
+
DBT_VOLLOCKLOCKTAKEN: Final = 0x8042
|
|
4865
|
+
DBT_VOLLOCKLOCKFAILED: Final = 0x8043
|
|
4866
|
+
DBT_VOLLOCKQUERYUNLOCK: Final = 0x8044
|
|
4867
|
+
DBT_VOLLOCKLOCKRELEASED: Final = 0x8045
|
|
4868
|
+
DBT_VOLLOCKUNLOCKFAILED: Final = 0x8046
|
|
4869
|
+
LOCKP_ALLOW_WRITES: Final = 0x01
|
|
4870
|
+
LOCKP_FAIL_WRITES: Final = 0x00
|
|
4871
|
+
LOCKP_FAIL_MEM_MAPPING: Final = 0x02
|
|
4872
|
+
LOCKP_ALLOW_MEM_MAPPING: Final = 0x00
|
|
4873
|
+
LOCKP_USER_MASK: Final = 0x03
|
|
4874
|
+
LOCKP_LOCK_FOR_FORMAT: Final = 0x04
|
|
4875
|
+
LOCKF_LOGICAL_LOCK: Final = 0x00
|
|
4876
|
+
LOCKF_PHYSICAL_LOCK: Final = 0x01
|
|
4877
|
+
DBT_NO_DISK_SPACE: Final = 0x0047
|
|
4878
|
+
DBT_LOW_DISK_SPACE: Final = 0x0048
|
|
4879
|
+
DBT_CONFIGMGPRIVATE: Final = 0x7FFF
|
|
4880
|
+
DBT_DEVICEARRIVAL: Final = 0x8000
|
|
4881
|
+
DBT_DEVICEQUERYREMOVE: Final = 0x8001
|
|
4882
|
+
DBT_DEVICEQUERYREMOVEFAILED: Final = 0x8002
|
|
4883
|
+
DBT_DEVICEREMOVEPENDING: Final = 0x8003
|
|
4884
|
+
DBT_DEVICEREMOVECOMPLETE: Final = 0x8004
|
|
4885
|
+
DBT_DEVICETYPESPECIFIC: Final = 0x8005
|
|
4886
|
+
DBT_CUSTOMEVENT: Final = 0x8006
|
|
4887
|
+
DBT_DEVTYP_OEM: Final = 0x00000000
|
|
4888
|
+
DBT_DEVTYP_DEVNODE: Final = 0x00000001
|
|
4889
|
+
DBT_DEVTYP_VOLUME: Final = 0x00000002
|
|
4890
|
+
DBT_DEVTYP_PORT: Final = 0x00000003
|
|
4891
|
+
DBT_DEVTYP_NET: Final = 0x00000004
|
|
4892
|
+
DBT_DEVTYP_DEVICEINTERFACE: Final = 0x00000005
|
|
4893
|
+
DBT_DEVTYP_HANDLE: Final = 0x00000006
|
|
4894
|
+
DBTF_MEDIA: Final = 0x0001
|
|
4895
|
+
DBTF_NET: Final = 0x0002
|
|
4896
|
+
DBTF_RESOURCE: Final = 0x00000001
|
|
4897
|
+
DBTF_XPORT: Final = 0x00000002
|
|
4898
|
+
DBTF_SLOWNET: Final = 0x00000004
|
|
4899
|
+
DBT_VPOWERDAPI: Final = 0x8100
|
|
4900
|
+
DBT_USERDEFINED: Final = 0xFFFF
|
|
4901
|
+
|
|
4902
|
+
IME_CMODE_ALPHANUMERIC: Final = 0x0000
|
|
4903
|
+
IME_CMODE_NATIVE: Final = 0x0001
|
|
4904
|
+
IME_CMODE_CHINESE: Final = IME_CMODE_NATIVE
|
|
4905
|
+
IME_CMODE_HANGUL: Final = IME_CMODE_NATIVE
|
|
4906
|
+
IME_CMODE_JAPANESE: Final = IME_CMODE_NATIVE
|
|
4907
|
+
IME_CMODE_KATAKANA: Final = 0x0002
|
|
4908
|
+
IME_CMODE_LANGUAGE: Final = 0x0003
|
|
4909
|
+
IME_CMODE_FULLSHAPE: Final = 0x0008
|
|
4910
|
+
IME_CMODE_ROMAN: Final = 0x0010
|
|
4911
|
+
IME_CMODE_CHARCODE: Final = 0x0020
|
|
4912
|
+
IME_CMODE_HANJACONVERT: Final = 0x0040
|
|
4913
|
+
IME_CMODE_NATIVESYMBOL: Final = 0x0080
|