pyrefly 0.15.2__tar.gz → 0.16.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyrefly-0.16.1/PKG-INFO +33 -0
- pyrefly-0.16.1/pyrefly/Cargo.lock +3408 -0
- pyrefly-0.16.1/pyrefly/Cargo.toml +100 -0
- pyrefly-0.16.1/pyrefly/lib/alt/attr.rs +1547 -0
- pyrefly-0.16.1/pyrefly/lib/alt/class/class_metadata.rs +725 -0
- pyrefly-0.16.1/pyrefly/lib/alt/class/classdef.rs +270 -0
- pyrefly-0.16.1/pyrefly/lib/alt/expr.rs +1650 -0
- pyrefly-0.16.1/pyrefly/lib/alt/narrow.rs +640 -0
- pyrefly-0.16.1/pyrefly/lib/alt/solve.rs +2806 -0
- pyrefly-0.16.1/pyrefly/lib/alt/special_calls.rs +233 -0
- pyrefly-0.16.1/pyrefly/lib/alt/unwrap.rs +240 -0
- pyrefly-0.16.1/pyrefly/lib/binding/binding.rs +1285 -0
- pyrefly-0.16.1/pyrefly/lib/binding/bindings.rs +1199 -0
- pyrefly-0.16.1/pyrefly/lib/binding/class.rs +845 -0
- pyrefly-0.16.1/pyrefly/lib/binding/expr.rs +660 -0
- pyrefly-0.16.1/pyrefly/lib/binding/narrow.rs +565 -0
- pyrefly-0.16.1/pyrefly/lib/binding/pattern.rs +271 -0
- pyrefly-0.16.1/pyrefly/lib/binding/stmt.rs +947 -0
- pyrefly-0.16.1/pyrefly/lib/commands/lsp.rs +1829 -0
- pyrefly-0.16.1/pyrefly/lib/config/environment/venv.rs +170 -0
- pyrefly-0.16.1/pyrefly/lib/dunder.rs +75 -0
- pyrefly-0.16.1/pyrefly/lib/error/collector.rs +345 -0
- pyrefly-0.16.1/pyrefly/lib/error/kind.rs +181 -0
- pyrefly-0.16.1/pyrefly/lib/ruff/ast.rs +285 -0
- pyrefly-0.16.1/pyrefly/lib/ruff/visitors.rs +321 -0
- pyrefly-0.16.1/pyrefly/lib/solver/subset.rs +1023 -0
- pyrefly-0.16.1/pyrefly/lib/state/lsp.rs +763 -0
- pyrefly-0.16.1/pyrefly/lib/state/state.rs +1592 -0
- pyrefly-0.16.1/pyrefly/lib/state/steps.rs +205 -0
- pyrefly-0.16.1/pyrefly/lib/test/assign.rs +739 -0
- pyrefly-0.16.1/pyrefly/lib/test/attribute_narrow.rs +460 -0
- pyrefly-0.16.1/pyrefly/lib/test/attributes.rs +903 -0
- pyrefly-0.16.1/pyrefly/lib/test/contextual.rs +405 -0
- pyrefly-0.16.1/pyrefly/lib/test/descriptors.rs +242 -0
- pyrefly-0.16.1/pyrefly/lib/test/enums.rs +336 -0
- pyrefly-0.16.1/pyrefly/lib/test/flow.rs +1113 -0
- pyrefly-0.16.1/pyrefly/lib/test/generic_basic.rs +781 -0
- pyrefly-0.16.1/pyrefly/lib/test/literal.rs +191 -0
- pyrefly-0.16.1/pyrefly/lib/test/lsp/definition.rs +695 -0
- pyrefly-0.16.1/pyrefly/lib/test/lsp/lsp_interaction.rs +1338 -0
- pyrefly-0.16.1/pyrefly/lib/test/mod.rs +58 -0
- pyrefly-0.16.1/pyrefly/lib/test/narrow.rs +1126 -0
- pyrefly-0.16.1/pyrefly/lib/test/new_type.rs +111 -0
- pyrefly-0.16.1/pyrefly/lib/test/paramspec.rs +399 -0
- pyrefly-0.16.1/pyrefly/lib/test/simple.rs +1357 -0
- pyrefly-0.16.1/pyrefly/lib/test/tuple.rs +348 -0
- pyrefly-0.16.1/pyrefly/lib/test/typed_dict.rs +561 -0
- pyrefly-0.16.1/pyrefly/lib/test/util.rs +521 -0
- pyrefly-0.16.1/pyrefly/lib/test/var_resolution.rs +54 -0
- pyrefly-0.16.1/pyrefly/lib/types/callable.rs +576 -0
- pyrefly-0.16.1/pyrefly/lib/types/class.rs +419 -0
- pyrefly-0.16.1/pyrefly/lib/types/literal.rs +156 -0
- pyrefly-0.16.1/pyrefly/lib/types/quantified.rs +225 -0
- pyrefly-0.16.1/pyrefly/lib/types/special_form.rs +140 -0
- pyrefly-0.16.1/pyrefly/lib/types/tuple.rs +94 -0
- pyrefly-0.16.1/pyrefly/lib/types/type_var.rs +122 -0
- pyrefly-0.16.1/pyrefly/lib/types/typed_dict.rs +63 -0
- pyrefly-0.16.1/pyrefly/lib/types/types.rs +1194 -0
- pyrefly-0.16.1/pyrefly/lib/util/memory.rs +152 -0
- pyrefly-0.16.1/pyrefly/pyrefly.dotslash.py +20 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/__main__.pyi +1 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_ast.pyi +145 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_asyncio.pyi +109 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_compression.pyi +27 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_contextvars.pyi +64 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_csv.pyi +133 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_ctypes.pyi +336 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_decimal.pyi +72 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +188 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +19 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_io.pyi +242 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_pydecimal.pyi +47 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_socket.pyi +861 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_ssl.pyi +293 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_typeshed/__init__.pyi +380 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +89 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/annotationlib.pyi +132 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/argparse.pyi +808 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/ast.pyi +2056 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/asyncio/__init__.pyi +1008 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/asyncio/events.pyi +644 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/asyncio/futures.pyi +23 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/asyncio/graph.pyi +26 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/bdb.pyi +130 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/builtins.pyi +2242 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/bz2.pyi +116 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/code.pyi +54 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/codeop.pyi +21 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/_common/_streams.pyi +25 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/bz2/__init__.pyi +1 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/gzip/__init__.pyi +1 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/lzma/__init__.pyi +1 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/zlib/__init__.pyi +1 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +71 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +119 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/interpreter.pyi +102 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/process.pyi +242 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +136 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/configparser.pyi +464 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/contextlib.pyi +213 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/ctypes/__init__.pyi +317 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/dataclasses.pyi +412 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/datetime.pyi +342 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/decimal.pyi +272 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/dis.pyi +289 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/distutils/cmd.pyi +229 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/distutils/command/config.pyi +84 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/distutils/command/register.pyi +20 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/distutils/dist.pyi +315 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/__init__.pyi +60 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/_policybase.pyi +80 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/feedparser.pyi +22 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/generator.pyi +77 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/message.pyi +172 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/mime/message.pyi +8 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/mime/multipart.pyi +18 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/mime/text.pyi +9 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/parser.pyi +39 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/policy.pyi +75 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/encodings/__init__.pyi +9 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/enum.pyi +338 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/fnmatch.pyi +15 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/fractions.pyi +150 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/functools.pyi +247 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/getpass.pyi +14 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/gzip.pyi +164 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/http/client.pyi +265 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/http/server.pyi +130 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/imaplib.pyi +174 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/importlib/abc.pyi +175 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/inspect.pyi +687 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/io.pyi +73 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/ipaddress.pyi +241 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/logging/handlers.pyi +257 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/lzma.pyi +179 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/mailbox.pyi +259 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/marshal.pyi +49 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +12 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/numbers.pyi +209 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/os/__init__.pyi +1664 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pathlib/__init__.pyi +307 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pathlib/types.pyi +8 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pdb.pyi +250 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pkgutil.pyi +53 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/platform.pyi +87 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/posix.pyi +405 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pydoc.pyi +340 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/socket.pyi +1429 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/sqlite3/__init__.pyi +469 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/string/templatelib.pyi +28 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/sys/__init__.pyi +476 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tarfile.pyi +685 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tempfile.pyi +478 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/threading.pyi +203 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tkinter/__init__.pyi +4081 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tkinter/commondialog.pyi +12 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tkinter/dialog.pyi +13 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tkinter/filedialog.pyi +149 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tkinter/ttk.pyi +1207 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/token.pyi +168 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tokenize.pyi +191 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +26 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/traceback.pyi +314 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/types.pyi +702 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/typing.pyi +1131 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/typing_extensions.pyi +675 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/unittest/case.pyi +331 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/urllib/request.pyi +416 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/uuid.pyi +104 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/winsound.pyi +38 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed_metadata.json +5 -0
- pyrefly-0.15.2/PKG-INFO +0 -33
- pyrefly-0.15.2/pyrefly/Cargo.lock +0 -3408
- pyrefly-0.15.2/pyrefly/Cargo.toml +0 -96
- pyrefly-0.15.2/pyrefly/lib/alt/attr.rs +0 -1539
- pyrefly-0.15.2/pyrefly/lib/alt/class/class_metadata.rs +0 -713
- pyrefly-0.15.2/pyrefly/lib/alt/class/classdef.rs +0 -270
- pyrefly-0.15.2/pyrefly/lib/alt/expr.rs +0 -1567
- pyrefly-0.15.2/pyrefly/lib/alt/narrow.rs +0 -628
- pyrefly-0.15.2/pyrefly/lib/alt/solve.rs +0 -2805
- pyrefly-0.15.2/pyrefly/lib/alt/special_calls.rs +0 -233
- pyrefly-0.15.2/pyrefly/lib/alt/unwrap.rs +0 -217
- pyrefly-0.15.2/pyrefly/lib/binding/binding.rs +0 -1282
- pyrefly-0.15.2/pyrefly/lib/binding/bindings.rs +0 -1198
- pyrefly-0.15.2/pyrefly/lib/binding/class.rs +0 -845
- pyrefly-0.15.2/pyrefly/lib/binding/expr.rs +0 -647
- pyrefly-0.15.2/pyrefly/lib/binding/narrow.rs +0 -534
- pyrefly-0.15.2/pyrefly/lib/binding/pattern.rs +0 -253
- pyrefly-0.15.2/pyrefly/lib/binding/stmt.rs +0 -947
- pyrefly-0.15.2/pyrefly/lib/commands/lsp.rs +0 -1720
- pyrefly-0.15.2/pyrefly/lib/config/environment/venv.rs +0 -171
- pyrefly-0.15.2/pyrefly/lib/dunder.rs +0 -73
- pyrefly-0.15.2/pyrefly/lib/error/collector.rs +0 -310
- pyrefly-0.15.2/pyrefly/lib/error/kind.rs +0 -194
- pyrefly-0.15.2/pyrefly/lib/ruff/ast.rs +0 -273
- pyrefly-0.15.2/pyrefly/lib/ruff/visitors.rs +0 -321
- pyrefly-0.15.2/pyrefly/lib/solver/subset.rs +0 -1023
- pyrefly-0.15.2/pyrefly/lib/state/lsp.rs +0 -754
- pyrefly-0.15.2/pyrefly/lib/state/state.rs +0 -1592
- pyrefly-0.15.2/pyrefly/lib/state/steps.rs +0 -207
- pyrefly-0.15.2/pyrefly/lib/test/assign.rs +0 -712
- pyrefly-0.15.2/pyrefly/lib/test/attribute_narrow.rs +0 -460
- pyrefly-0.15.2/pyrefly/lib/test/attributes.rs +0 -902
- pyrefly-0.15.2/pyrefly/lib/test/contextual.rs +0 -395
- pyrefly-0.15.2/pyrefly/lib/test/descriptors.rs +0 -242
- pyrefly-0.15.2/pyrefly/lib/test/enums.rs +0 -333
- pyrefly-0.15.2/pyrefly/lib/test/flow.rs +0 -1058
- pyrefly-0.15.2/pyrefly/lib/test/generic_basic.rs +0 -760
- pyrefly-0.15.2/pyrefly/lib/test/literal.rs +0 -177
- pyrefly-0.15.2/pyrefly/lib/test/lsp/definition.rs +0 -695
- pyrefly-0.15.2/pyrefly/lib/test/lsp/lsp_interaction.rs +0 -1338
- pyrefly-0.15.2/pyrefly/lib/test/mod.rs +0 -57
- pyrefly-0.15.2/pyrefly/lib/test/narrow.rs +0 -1111
- pyrefly-0.15.2/pyrefly/lib/test/new_type.rs +0 -97
- pyrefly-0.15.2/pyrefly/lib/test/paramspec.rs +0 -399
- pyrefly-0.15.2/pyrefly/lib/test/simple.rs +0 -1313
- pyrefly-0.15.2/pyrefly/lib/test/tuple.rs +0 -335
- pyrefly-0.15.2/pyrefly/lib/test/typed_dict.rs +0 -557
- pyrefly-0.15.2/pyrefly/lib/test/util.rs +0 -496
- pyrefly-0.15.2/pyrefly/lib/types/callable.rs +0 -586
- pyrefly-0.15.2/pyrefly/lib/types/class.rs +0 -422
- pyrefly-0.15.2/pyrefly/lib/types/literal.rs +0 -157
- pyrefly-0.15.2/pyrefly/lib/types/quantified.rs +0 -228
- pyrefly-0.15.2/pyrefly/lib/types/special_form.rs +0 -142
- pyrefly-0.15.2/pyrefly/lib/types/tuple.rs +0 -95
- pyrefly-0.15.2/pyrefly/lib/types/type_var.rs +0 -124
- pyrefly-0.15.2/pyrefly/lib/types/typed_dict.rs +0 -64
- pyrefly-0.15.2/pyrefly/lib/types/types.rs +0 -1208
- pyrefly-0.15.2/pyrefly/lib/util/memory.rs +0 -153
- pyrefly-0.15.2/pyrefly/pyrefly.dotslash.py +0 -13
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/__main__.pyi +0 -3
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_ast.pyi +0 -138
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_asyncio.pyi +0 -105
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_compression.pyi +0 -25
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_contextvars.pyi +0 -58
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_csv.pyi +0 -132
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_ctypes.pyi +0 -331
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_decimal.pyi +0 -67
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +0 -178
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +0 -11
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_io.pyi +0 -216
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_pydecimal.pyi +0 -43
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_socket.pyi +0 -834
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_ssl.pyi +0 -291
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/_typeshed/__init__.pyi +0 -366
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/argparse.pyi +0 -725
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/ast.pyi +0 -2045
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/asyncio/__init__.pyi +0 -990
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/asyncio/events.pyi +0 -642
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/asyncio/futures.pyi +0 -17
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/bdb.pyi +0 -119
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/builtins.pyi +0 -2144
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/bz2.pyi +0 -112
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/code.pyi +0 -56
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/codeop.pyi +0 -17
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -51
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +0 -108
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/concurrent/futures/process.pyi +0 -238
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +0 -76
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/configparser.pyi +0 -431
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/contextlib.pyi +0 -213
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/ctypes/__init__.pyi +0 -306
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/dataclasses.pyi +0 -312
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/datetime.pyi +0 -332
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/decimal.pyi +0 -264
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/dis.pyi +0 -222
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/distutils/cmd.pyi +0 -229
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/distutils/command/config.pyi +0 -84
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/distutils/command/register.pyi +0 -21
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/distutils/dist.pyi +0 -317
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/__init__.pyi +0 -59
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/_policybase.pyi +0 -77
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/feedparser.pyi +0 -23
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/generator.pyi +0 -77
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/message.pyi +0 -172
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/mime/message.pyi +0 -7
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/mime/multipart.pyi +0 -17
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/mime/text.pyi +0 -9
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/parser.pyi +0 -38
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/policy.pyi +0 -77
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/encodings/__init__.pyi +0 -10
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/enum.pyi +0 -336
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/fnmatch.pyi +0 -9
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/fractions.pyi +0 -147
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/functools.pyi +0 -206
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/getpass.pyi +0 -8
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/gzip.pyi +0 -160
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/http/client.pyi +0 -265
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/http/server.pyi +0 -84
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/imaplib.pyi +0 -145
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/importlib/abc.pyi +0 -172
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/inspect.pyi +0 -641
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/io.pyi +0 -60
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/ipaddress.pyi +0 -232
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/logging/handlers.pyi +0 -239
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/lzma.pyi +0 -174
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/mailbox.pyi +0 -259
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/marshal.pyi +0 -41
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +0 -2
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/numbers.pyi +0 -210
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/os/__init__.pyi +0 -1653
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/pathlib.pyi +0 -296
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/pdb.pyi +0 -206
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/pkgutil.pyi +0 -51
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/platform.pyi +0 -84
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/posix.pyi +0 -399
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/pydoc.pyi +0 -333
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/socket.pyi +0 -1396
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/sqlite3/__init__.pyi +0 -467
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/sys/__init__.pyi +0 -472
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tarfile.pyi +0 -676
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tempfile.pyi +0 -478
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/threading.pyi +0 -185
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tkinter/__init__.pyi +0 -4087
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tkinter/commondialog.pyi +0 -12
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tkinter/dialog.pyi +0 -14
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tkinter/filedialog.pyi +0 -149
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tkinter/ttk.pyi +0 -1207
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/token.pyi +0 -160
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tokenize.pyi +0 -188
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +0 -10
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/traceback.pyi +0 -313
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/types.pyi +0 -693
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/typing.pyi +0 -1047
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/typing_extensions.pyi +0 -626
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/unittest/case.pyi +0 -320
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/urllib/request.pyi +0 -408
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/uuid.pyi +0 -94
- pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/winsound.pyi +0 -28
- pyrefly-0.15.2/pyrefly/third_party/typeshed_metadata.json +0 -5
- {pyrefly-0.15.2 → pyrefly-0.16.1}/README.md +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyproject.toml +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/.cargo/config.toml +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/.gitignore +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/README.md +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/bin/main.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/build.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/answers.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/call.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/callable.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/class_field.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/dataclass.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/enums.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/named_tuple.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/new_type.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/targs.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/class/typed_dict.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/function.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/operators.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/specials.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/traits.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/types/class_metadata.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/types/decorated_function.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/types/legacy_lookup.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/types/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/alt/types/yields.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/binding/function.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/binding/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/binding/scope.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/binding/table.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/binding/target.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/buck_check.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/check.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/config_finder.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/config_migration.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/init.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/run.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/suppress.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/commands/util.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/common/files.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/common/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/base.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/config.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/environment/environment.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/environment/finder.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/environment/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/error.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/finder.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/ini.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/pyproject.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/regex_converter.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/pyright.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/config/util.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/context.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/display.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/error.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/expectation.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/legacy.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/style.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/error/summarise.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/export/definitions.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/export/exports.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/export/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/export/special.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/graph/calculation.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/graph/index.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/graph/index_map.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/graph/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/lib.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/bundled.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/display.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/finder.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/ignore.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/module_info.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/module_name.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/module_path.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/short_identifier.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/source_db.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/module/wildcard.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/playground.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/report/binding_memory.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/report/debug_info.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/report/glean/convert.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/report/glean/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/report/glean/schema.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/report/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/report/trace.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/ruff/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/solver/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/solver/solver.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/solver/type_order.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/dirty.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/epoch.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/errors.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/handle.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/ide.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/load.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/loader.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/memory.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/require.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/state/subscriber.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/sys_info.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/callable.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/calls.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/class_keywords.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/class_overrides.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/class_subtyping.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/class_super.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/constructors.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/dataclasses.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/decorators.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/generic_restrictions.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/imports.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/completion.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/document_symbols.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/hover_docstring.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/hover_type.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/inlay_hint.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/local_find_refs.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/lsp_interaction_util.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/bar.py +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/foo.py +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/imports_builtins.py +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/bar.py +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/foo.py +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/pyrefly.toml +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/with_synthetic_bindings.py +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/type_errors.py +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/metadata.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/mro.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/named_tuple.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/operators.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/overload.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/pattern_match.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/perf.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/protocol.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/returns.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/scope.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/state.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/subscript_narrow.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/suppression.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/type_alias.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/type_var_tuple.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/typing_self.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/untyped_def_behaviors.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/variance_inference.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/with.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/test/yields.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/alias.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/annotation.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/display.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/equality.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/lit_int.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/lsp.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/module.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/param_spec.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/qname.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/simplify.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/stdlib.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/type_info.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/types/type_var_tuple.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/arc_id.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/args.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/assert_size.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/display.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/events.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/exclusive_lock.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/forgetter.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/fs_anyhow.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/gas.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/globs.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/lock.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/locked_map.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/mod.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/no_hash.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/prelude.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/recurser.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/small_set1.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/task_heap.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/thread_pool.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/trace.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/uniques.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/upgrade_lock.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/upward_search.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/visit.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/watcher.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/lib/util/with_hash.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/rust-toolchain +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/__future__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bisect.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_blake2.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bootlocale.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bz2.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_codecs.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_collections_abc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_compat_pickle.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_curses.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_curses_panel.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_dbm.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_gdbm.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_hashlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_imp.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpchannels.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpqueues.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpreters.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_json.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_locale.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_lsprof.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_lzma.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_markupbase.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_msi.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_multibytecodec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_operator.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_osx_support.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_pickle.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_posixsubprocess.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_py_abc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_queue.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_random.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_sitebuiltins.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_sqlite3.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_stat.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_struct.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_thread.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_threading_local.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_tkinter.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_tracemalloc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/xml.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_warnings.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_weakref.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_weakrefset.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_winapi.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/abc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/aifc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/antigravity.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/array.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asynchat.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_events.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/constants.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/locks.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/log.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/mixins.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/protocols.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/queues.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/runners.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/staggered.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/streams.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/tasks.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/threads.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/transports.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/trsock.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncore.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/atexit.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/audioop.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/base64.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/binascii.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/binhex.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/bisect.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cProfile.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/calendar.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cgi.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cgitb.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/chunk.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cmath.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cmd.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/codecs.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/collections/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/collections/abc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/colorsys.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/compileall.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/concurrent → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression}/__init__.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/email/mime → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/_common}/__init__.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/lib2to3 → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent}/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/contextvars.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/copy.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/copyreg.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/crypt.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/csv.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/_endian.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/ascii.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/has_key.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/panel.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/textpad.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/dumb.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/gnu.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/ndbm.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/difflib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/archive_util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/check.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/clean.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/upload.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/config.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/core.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/debug.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dep_util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dir_util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/errors.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/extension.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/file_util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/filelist.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/log.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/spawn.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/text_file.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/version.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/doctest.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/base64mime.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/charset.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/contentmanager.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/encoders.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/errors.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/header.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/headerregistry.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/iterators.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/mime}/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/application.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/audio.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/base.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/image.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/quoprimime.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/utils.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/aliases.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/ascii.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/big5.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/charmap.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp037.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1006.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1026.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1125.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1140.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1250.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1251.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1252.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1253.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1254.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1255.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1256.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1257.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1258.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp273.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp424.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp437.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp500.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp720.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp737.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp775.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp850.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp852.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp855.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp856.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp857.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp858.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp860.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp861.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp862.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp863.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp864.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp865.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp866.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp869.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp874.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp875.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp932.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp949.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp950.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gb18030.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gb2312.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gbk.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hz.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/idna.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/johab.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/kz1048.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/latin_1.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mbcs.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/oem.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/palmos.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/punycode.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/rot_13.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/tis_620.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/undefined.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_7.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/errno.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/faulthandler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fcntl.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/filecmp.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fileinput.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/formatter.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ftplib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/genericpath.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/getopt.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gettext.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/glob.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/graphlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/grp.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/hashlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/heapq.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/hmac.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/entities.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/parser.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/cookiejar.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/cookies.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imghdr.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imp.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_abc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/machinery.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/readers.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/simple.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/itertools.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/decoder.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/encoder.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/scanner.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/tool.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/keyword.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/pydoc_data → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/lib2to3}/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/urllib → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes}/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/main.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/linecache.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/locale.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/config.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mailcap.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/math.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mimetypes.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mmap.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/modulefinder.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/schema.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/sequence.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/text.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msvcrt.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/context.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/process.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/netrc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nis.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nntplib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nt.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ntpath.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/opcode.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/operator.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/optparse.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/os/path.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ossaudiodev.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/parser.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pickle.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pickletools.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pipes.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/plistlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/poplib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/posixpath.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pprint.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/profile.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pstats.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pty.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pwd.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/py_compile.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyclbr.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/wsgiref → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pydoc_data}/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/errors.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/model.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/queue.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/quopri.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/random.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/re.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/readline.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/reprlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/resource.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/rlcompleter.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/runpy.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sched.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/secrets.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/select.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/selectors.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shelve.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shlex.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shutil.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/signal.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/site.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/smtpd.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/smtplib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sndhdr.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/socketserver.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/spwd.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/dump.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_compile.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_constants.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_parse.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ssl.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/stat.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/statistics.pyi +0 -0
- /pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/string.pyi → /pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/string/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/stringprep.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/struct.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/subprocess.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sunau.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/symbol.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/symtable.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sys/_monitoring.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sysconfig.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/syslog.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tabnanny.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/telnetlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/termios.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/textwrap.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/this.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/time.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/timeit.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/constants.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/dnd.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/font.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/tix.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/trace.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tracemalloc.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tty.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/turtle.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unicodedata.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/_log.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/async_case.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/loader.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/main.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/mock.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/result.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/runner.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/signals.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/suite.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/util.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/xml/etree → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/urllib}/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/error.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/parse.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/response.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/robotparser.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/uu.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/venv/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/warnings.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wave.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/weakref.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/webbrowser.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/winreg.pyi +0 -0
- {pyrefly-0.15.2/pyrefly/third_party/typeshed/stdlib/xmlrpc → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/wsgiref}/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/headers.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/types.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/util.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/validate.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xdrlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/handler.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xmlrpc/client.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xmlrpc/server.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xxlimited.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipapp.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipimport.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zlib.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly_derive/.gitignore +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly_derive/Cargo.toml +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly_derive/src/lib.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly_derive/src/type_eq.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/pyrefly_derive/src/visit.rs +0 -0
- {pyrefly-0.15.2 → pyrefly-0.16.1}/rust-toolchain +0 -0
pyrefly-0.16.1/PKG-INFO
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: pyrefly
|
3
|
+
Version: 0.16.1
|
4
|
+
Classifier: Development Status :: 3 - Alpha
|
5
|
+
Classifier: Programming Language :: Python
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
7
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
8
|
+
Classifier: Operating System :: MacOS
|
9
|
+
Classifier: Operating System :: Microsoft :: Windows
|
10
|
+
Classifier: Operating System :: POSIX :: Linux
|
11
|
+
Classifier: Intended Audience :: Developers
|
12
|
+
Classifier: Topic :: Software Development
|
13
|
+
Summary: A faster Python type checker written in Rust
|
14
|
+
Keywords: typechecker,typechecking
|
15
|
+
Author: Meta
|
16
|
+
License: MIT
|
17
|
+
Requires-Python: >=3.8
|
18
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
19
|
+
Project-URL: homepage, https://pyrefly.org
|
20
|
+
Project-URL: documentation, https://pyrefly.org/en/docs/
|
21
|
+
|
22
|
+
# Pyrefly
|
23
|
+
|
24
|
+
Currently incomplete and under active development. Please
|
25
|
+
[open an issue](https://github.com/facebook/pyrefly/issues/new/choose) if you
|
26
|
+
find any bugs.
|
27
|
+
|
28
|
+
Pyrefly is a static type checker for Python that helps you catch type-related
|
29
|
+
errors before your code runs. It analyzes your Python code to ensure type
|
30
|
+
consistency throughout your codebase, making your applications more reliable and
|
31
|
+
easier to maintain. Pyrefly supports both IDE integration and CLI usage, giving
|
32
|
+
you flexibility in how you incorporate type checking into your workflow.
|
33
|
+
|