pyrefly 0.16.0__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.0 → pyrefly-0.16.1}/PKG-INFO +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/Cargo.lock +11 -11
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/Cargo.toml +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/attr.rs +8 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/class_metadata.rs +12 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/expr.rs +52 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/narrow.rs +16 -4
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/solve.rs +6 -5
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/special_calls.rs +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/unwrap.rs +51 -28
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/binding.rs +3 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/bindings.rs +10 -9
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/class.rs +6 -6
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/expr.rs +13 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/dunder.rs +2 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/collector.rs +38 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/ruff/ast.rs +12 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/subset.rs +21 -21
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/lsp.rs +11 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/steps.rs +1 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/attribute_narrow.rs +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/attributes.rs +3 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/descriptors.rs +4 -4
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/flow.rs +41 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/generic_basic.rs +24 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/literal.rs +14 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/definition.rs +2 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/lsp_interaction.rs +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/mod.rs +1 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/narrow.rs +15 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/new_type.rs +14 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/paramspec.rs +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/simple.rs +44 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/typed_dict.rs +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/util.rs +13 -9
- pyrefly-0.16.1/pyrefly/lib/test/var_resolution.rs +54 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/__main__.pyi +1 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_ast.pyi +8 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_asyncio.pyi +4 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_compression.pyi +27 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_contextvars.pyi +7 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_csv.pyi +5 -4
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_ctypes.pyi +11 -6
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_decimal.pyi +5 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +11 -1
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +19 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_io.pyi +33 -7
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_pydecimal.pyi +4 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_socket.pyi +28 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_ssl.pyi +2 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/__init__.pyi +15 -1
- 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.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/argparse.pyi +109 -26
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ast.pyi +128 -117
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/__init__.pyi +18 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/events.pyi +3 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/futures.pyi +7 -1
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/asyncio/graph.pyi +26 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/bdb.pyi +14 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/builtins.pyi +152 -54
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/bz2.pyi +7 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/code.pyi +1 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/codeop.pyi +5 -1
- pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/_compression.pyi → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/_common/_streams.pyi +3 -3
- 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.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +21 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +14 -3
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/interpreter.pyi +102 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/process.pyi +4 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +136 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/configparser.pyi +34 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/contextlib.pyi +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/__init__.pyi +16 -5
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dataclasses.pyi +103 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/datetime.pyi +10 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/decimal.pyi +8 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dis.pyi +76 -9
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/cmd.pyi +2 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/config.pyi +2 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/register.pyi +1 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dist.pyi +1 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/__init__.pyi +2 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/_policybase.pyi +14 -11
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/feedparser.pyi +2 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/generator.pyi +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/message.pyi +19 -19
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/message.pyi +2 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/multipart.pyi +2 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/text.pyi +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/parser.pyi +9 -8
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/policy.pyi +3 -5
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/__init__.pyi +1 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/enum.pyi +2 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fnmatch.pyi +6 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fractions.pyi +3 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/functools.pyi +56 -15
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/getpass.pyi +14 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gzip.pyi +7 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/client.pyi +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/server.pyi +51 -5
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imaplib.pyi +35 -6
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/abc.pyi +3 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/inspect.pyi +53 -7
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/io.pyi +14 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ipaddress.pyi +19 -10
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/handlers.pyi +21 -3
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lzma.pyi +6 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mailbox.pyi +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/marshal.pyi +14 -6
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +12 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/numbers.pyi +1 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/os/__init__.pyi +11 -0
- pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/pathlib.pyi → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pathlib/__init__.pyi +31 -20
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pathlib/types.pyi +8 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pdb.pyi +59 -15
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pkgutil.pyi +8 -6
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/platform.pyi +3 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/posix.pyi +6 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pydoc.pyi +9 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/socket.pyi +33 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/__init__.pyi +3 -1
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/string/templatelib.pyi +28 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sys/__init__.pyi +5 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tarfile.pyi +11 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tempfile.pyi +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/threading.pyi +28 -10
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/__init__.pyi +25 -31
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/commondialog.pyi +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/dialog.pyi +1 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/filedialog.pyi +5 -5
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/ttk.pyi +14 -14
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/token.pyi +8 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tokenize.pyi +3 -0
- pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +26 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/traceback.pyi +3 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/types.pyi +11 -2
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/typing.pyi +169 -85
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/typing_extensions.pyi +101 -52
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/case.pyi +11 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/request.pyi +101 -93
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/uuid.pyi +19 -9
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/winsound.pyi +10 -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.16.0/pyrefly/third_party/typeshed/stdlib/__main__.pyi +0 -3
- pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +0 -11
- pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +0 -76
- pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/getpass.pyi +0 -8
- pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +0 -2
- pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +0 -10
- pyrefly-0.16.0/pyrefly/third_party/typeshed_metadata.json +0 -5
- {pyrefly-0.16.0 → pyrefly-0.16.1}/README.md +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyproject.toml +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/.cargo/config.toml +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/.gitignore +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/README.md +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/bin/main.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/build.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/answers.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/call.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/callable.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/class_field.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/classdef.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/dataclass.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/enums.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/named_tuple.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/new_type.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/targs.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/typed_dict.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/function.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/operators.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/specials.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/traits.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/class_metadata.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/decorated_function.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/legacy_lookup.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/yields.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/function.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/narrow.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/pattern.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/scope.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/stmt.rs +1 -1
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/table.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/target.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/buck_check.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/check.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/config_finder.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/config_migration.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/init.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/lsp.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/run.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/suppress.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/util.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/common/files.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/common/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/base.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/config.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/environment.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/finder.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/venv.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/error.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/finder.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/ini.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/pyproject.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/regex_converter.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/pyright.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/util.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/context.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/display.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/error.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/expectation.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/kind.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/legacy.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/style.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/summarise.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/definitions.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/exports.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/special.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/calculation.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/index.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/index_map.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/lib.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/bundled.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/display.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/finder.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/ignore.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/module_info.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/module_name.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/module_path.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/short_identifier.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/source_db.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/wildcard.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/playground.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/binding_memory.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/debug_info.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/glean/convert.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/glean/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/glean/schema.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/trace.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/ruff/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/ruff/visitors.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/solver.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/type_order.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/dirty.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/epoch.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/errors.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/handle.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/ide.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/load.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/loader.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/memory.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/require.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/state.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/subscriber.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/sys_info.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/assign.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/callable.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/calls.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_keywords.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_overrides.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_subtyping.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_super.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/constructors.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/contextual.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/dataclasses.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/decorators.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/enums.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/generic_restrictions.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/imports.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/completion.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/document_symbols.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/hover_docstring.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/hover_type.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/inlay_hint.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/local_find_refs.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/lsp_interaction_util.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/bar.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/foo.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/imports_builtins.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/bar.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/foo.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/pyrefly.toml +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/with_synthetic_bindings.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/type_errors.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/metadata.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/mro.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/named_tuple.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/operators.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/overload.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/pattern_match.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/perf.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/protocol.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/returns.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/scope.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/state.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/subscript_narrow.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/suppression.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/tuple.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/type_alias.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/type_var_tuple.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/typing_self.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/untyped_def_behaviors.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/variance_inference.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/with.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/yields.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/alias.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/annotation.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/callable.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/class.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/display.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/equality.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/lit_int.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/literal.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/lsp.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/module.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/param_spec.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/qname.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/quantified.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/simplify.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/special_form.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/stdlib.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/tuple.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/type_info.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/type_var.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/type_var_tuple.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/typed_dict.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/types.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/arc_id.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/args.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/assert_size.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/display.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/events.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/exclusive_lock.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/forgetter.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/fs_anyhow.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/gas.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/globs.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/lock.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/locked_map.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/memory.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/mod.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/no_hash.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/prelude.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/recurser.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/small_set1.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/task_heap.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/thread_pool.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/trace.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/uniques.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/upgrade_lock.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/upward_search.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/visit.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/watcher.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/with_hash.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/pyrefly.dotslash.py +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/rust-toolchain +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/__future__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bisect.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_blake2.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bootlocale.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bz2.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_codecs.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_collections_abc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_compat_pickle.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_curses.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_curses_panel.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_dbm.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_gdbm.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_hashlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_imp.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpchannels.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpqueues.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpreters.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_json.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_locale.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_lsprof.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_lzma.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_markupbase.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_msi.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_multibytecodec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_operator.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_osx_support.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_pickle.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_posixsubprocess.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_py_abc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_queue.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_random.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_sitebuiltins.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_sqlite3.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_stat.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_struct.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_thread.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_threading_local.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_tkinter.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_tracemalloc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/xml.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_warnings.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_weakref.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_weakrefset.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_winapi.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/abc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/aifc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/antigravity.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/array.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asynchat.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_events.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/constants.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/locks.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/log.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/mixins.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/protocols.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/queues.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/runners.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/staggered.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/streams.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/tasks.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/threads.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/transports.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/trsock.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncore.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/atexit.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/audioop.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/base64.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/binascii.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/binhex.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/bisect.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cProfile.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/calendar.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cgi.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cgitb.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/chunk.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cmath.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cmd.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/codecs.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/collections/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/collections/abc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/colorsys.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/compileall.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/concurrent → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression}/__init__.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/email/mime → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/_common}/__init__.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/lib2to3 → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent}/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/contextvars.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/copy.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/copyreg.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/crypt.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/csv.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/_endian.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/ascii.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/has_key.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/panel.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/textpad.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/dumb.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/gnu.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/ndbm.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/difflib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/archive_util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/check.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/clean.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/upload.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/config.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/core.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/debug.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dep_util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dir_util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/errors.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/extension.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/file_util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/filelist.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/log.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/spawn.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/text_file.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/version.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/doctest.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/base64mime.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/charset.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/contentmanager.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/encoders.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/errors.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/header.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/headerregistry.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/iterators.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/email/mime}/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/application.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/audio.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/base.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/image.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/quoprimime.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/utils.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/aliases.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/ascii.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/big5.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/charmap.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp037.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1006.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1026.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1125.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1140.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1250.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1251.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1252.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1253.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1254.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1255.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1256.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1257.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1258.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp273.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp424.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp437.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp500.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp720.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp737.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp775.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp850.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp852.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp855.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp856.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp857.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp858.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp860.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp861.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp862.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp863.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp864.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp865.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp866.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp869.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp874.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp875.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp932.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp949.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp950.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gb18030.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gb2312.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gbk.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hz.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/idna.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/johab.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/kz1048.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/latin_1.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mbcs.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/oem.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/palmos.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/punycode.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/rot_13.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/tis_620.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/undefined.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_7.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/errno.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/faulthandler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fcntl.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/filecmp.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fileinput.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/formatter.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ftplib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/genericpath.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/getopt.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gettext.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/glob.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/graphlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/grp.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/hashlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/heapq.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/hmac.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/entities.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/parser.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/cookiejar.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/cookies.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imghdr.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imp.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_abc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/machinery.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/readers.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/simple.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/itertools.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/decoder.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/encoder.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/scanner.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/tool.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/keyword.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/pydoc_data → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/lib2to3}/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/urllib → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes}/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/main.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/linecache.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/locale.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/config.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mailcap.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/math.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mimetypes.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mmap.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/modulefinder.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/schema.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/sequence.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/text.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msvcrt.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/context.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/process.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/netrc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nis.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nntplib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nt.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ntpath.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/opcode.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/operator.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/optparse.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/os/path.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ossaudiodev.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/parser.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pickle.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pickletools.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pipes.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/plistlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/poplib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/posixpath.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pprint.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/profile.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pstats.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pty.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pwd.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/py_compile.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyclbr.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/wsgiref → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pydoc_data}/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/errors.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/model.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/queue.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/quopri.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/random.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/re.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/readline.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/reprlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/resource.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/rlcompleter.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/runpy.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sched.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/secrets.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/select.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/selectors.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shelve.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shlex.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shutil.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/signal.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/site.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/smtpd.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/smtplib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sndhdr.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/socketserver.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/spwd.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/dump.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_compile.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_constants.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_parse.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ssl.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/stat.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/statistics.pyi +0 -0
- /pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/string.pyi → /pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/string/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/stringprep.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/struct.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/subprocess.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sunau.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/symbol.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/symtable.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sys/_monitoring.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sysconfig.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/syslog.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tabnanny.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/telnetlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/termios.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/textwrap.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/this.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/time.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/timeit.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/constants.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/dnd.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/font.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/tix.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/trace.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tracemalloc.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tty.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/turtle.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unicodedata.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/_log.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/async_case.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/loader.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/main.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/mock.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/result.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/runner.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/signals.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/suite.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/util.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/xml/etree → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/urllib}/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/error.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/parse.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/response.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/robotparser.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/uu.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/venv/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/warnings.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wave.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/weakref.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/webbrowser.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/winreg.pyi +0 -0
- {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/xmlrpc → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/wsgiref}/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/headers.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/types.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/util.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/validate.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xdrlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/handler.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xmlrpc/client.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xmlrpc/server.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xxlimited.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipapp.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipimport.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zlib.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/.gitignore +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/Cargo.toml +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/src/lib.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/src/type_eq.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/src/visit.rs +0 -0
- {pyrefly-0.16.0 → pyrefly-0.16.1}/rust-toolchain +0 -0
@@ -992,9 +992,9 @@ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
992
992
|
|
993
993
|
[[package]]
|
994
994
|
name = "icu_properties"
|
995
|
-
version = "2.0.
|
995
|
+
version = "2.0.1"
|
996
996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
997
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
998
998
|
dependencies = [
|
999
999
|
"displaydoc",
|
1000
1000
|
"icu_collections",
|
@@ -1008,9 +1008,9 @@ dependencies = [
|
|
1008
1008
|
|
1009
1009
|
[[package]]
|
1010
1010
|
name = "icu_properties_data"
|
1011
|
-
version = "2.0.
|
1011
|
+
version = "2.0.1"
|
1012
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
-
checksum = "
|
1013
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
1014
1014
|
|
1015
1015
|
[[package]]
|
1016
1016
|
name = "icu_provider"
|
@@ -1746,7 +1746,7 @@ dependencies = [
|
|
1746
1746
|
|
1747
1747
|
[[package]]
|
1748
1748
|
name = "pyrefly"
|
1749
|
-
version = "0.16.
|
1749
|
+
version = "0.16.1"
|
1750
1750
|
dependencies = [
|
1751
1751
|
"anstream",
|
1752
1752
|
"anyhow",
|
@@ -2970,9 +2970,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2970
2970
|
|
2971
2971
|
[[package]]
|
2972
2972
|
name = "windows-core"
|
2973
|
-
version = "0.61.
|
2973
|
+
version = "0.61.2"
|
2974
2974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2975
|
-
checksum = "
|
2975
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
2976
2976
|
dependencies = [
|
2977
2977
|
"windows-implement",
|
2978
2978
|
"windows-interface",
|
@@ -3011,18 +3011,18 @@ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
3011
3011
|
|
3012
3012
|
[[package]]
|
3013
3013
|
name = "windows-result"
|
3014
|
-
version = "0.3.
|
3014
|
+
version = "0.3.4"
|
3015
3015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3016
|
-
checksum = "
|
3016
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
3017
3017
|
dependencies = [
|
3018
3018
|
"windows-link",
|
3019
3019
|
]
|
3020
3020
|
|
3021
3021
|
[[package]]
|
3022
3022
|
name = "windows-strings"
|
3023
|
-
version = "0.4.
|
3023
|
+
version = "0.4.2"
|
3024
3024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3025
|
-
checksum = "
|
3025
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
3026
3026
|
dependencies = [
|
3027
3027
|
"windows-link",
|
3028
3028
|
]
|
@@ -1187,6 +1187,13 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
1187
1187
|
Type::Type(box Type::ClassType(class)) => {
|
1188
1188
|
Some(AttributeBase::ClassObject(class.class_object().dupe()))
|
1189
1189
|
}
|
1190
|
+
Type::Type(box Type::Quantified(q)) if q.is_type_var() => match q.restriction() {
|
1191
|
+
// TODO(#119): this is wrong, because we lose the information that this is a type var
|
1192
|
+
Restriction::Bound(bound) => {
|
1193
|
+
self.as_attribute_base_no_union(Type::type_form(bound.clone()))
|
1194
|
+
}
|
1195
|
+
_ => Some(AttributeBase::TypeVar(q)),
|
1196
|
+
},
|
1190
1197
|
Type::Type(box Type::Quantified(q)) => Some(AttributeBase::TypeVar(q)),
|
1191
1198
|
Type::Type(box Type::Any(style)) => Some(AttributeBase::TypeAny(style)),
|
1192
1199
|
Type::Module(module) => Some(AttributeBase::Module(module)),
|
@@ -1241,6 +1248,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
1241
1248
|
}
|
1242
1249
|
Type::SuperInstance(box (cls, obj)) => Some(AttributeBase::SuperInstance(cls, obj)),
|
1243
1250
|
Type::Quantified(q) if q.is_type_var() => match q.restriction() {
|
1251
|
+
// TODO(#119): this is wrong, because we lose the information that this is a type var
|
1244
1252
|
Restriction::Bound(bound) => self.as_attribute_base_no_union(bound.clone()),
|
1245
1253
|
// TODO: handle constraints
|
1246
1254
|
Restriction::Constraints(_) => None,
|
@@ -114,6 +114,17 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
114
114
|
let metadata = self.get_metadata_for_class(c.class_object());
|
115
115
|
Some((c, metadata))
|
116
116
|
}
|
117
|
+
Some((Type::Tuple(Tuple::Concrete(ts)), _)) => {
|
118
|
+
// TODO: we lose ordering/length information when we convert to the class representation
|
119
|
+
let class_ty = self.stdlib.tuple(self.unions(ts));
|
120
|
+
let metadata = self.get_metadata_for_class(class_ty.class_object());
|
121
|
+
Some((class_ty, metadata))
|
122
|
+
}
|
123
|
+
Some((Type::Tuple(Tuple::Unbounded(t)), _)) => {
|
124
|
+
let class_ty = self.stdlib.tuple(*t);
|
125
|
+
let metadata = self.get_metadata_for_class(class_ty.class_object());
|
126
|
+
Some((class_ty, metadata))
|
127
|
+
}
|
117
128
|
Some((_, range)) => {
|
118
129
|
self.error(
|
119
130
|
errors,
|
@@ -239,6 +250,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
239
250
|
Some((c, base_class_metadata))
|
240
251
|
}
|
241
252
|
Some((Type::Tuple(Tuple::Concrete(ts)), _)) => {
|
253
|
+
// TODO: we lose ordering/length information when we convert to the class representation
|
242
254
|
let class_ty = self.stdlib.tuple(self.unions(ts));
|
243
255
|
let metadata = self.get_metadata_for_class(class_ty.class_object());
|
244
256
|
Some((class_ty, metadata))
|
@@ -76,7 +76,8 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
76
76
|
let mut types = Vec::new();
|
77
77
|
let last_index = values.len() - 1;
|
78
78
|
for (i, value) in values.iter().enumerate() {
|
79
|
-
let t = self.expr_infer(value, errors);
|
79
|
+
let mut t = self.expr_infer(value, errors);
|
80
|
+
self.expand_type_mut(&mut t);
|
80
81
|
if should_shortcircuit(&t) {
|
81
82
|
types.push(t);
|
82
83
|
break;
|
@@ -957,6 +958,9 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
957
958
|
Some(&|| ErrorContext::Index(self.for_display(base.clone()))),
|
958
959
|
),
|
959
960
|
Type::Any(style) => style.propagate(),
|
961
|
+
Type::Literal(Lit::Bytes(bytes)) => {
|
962
|
+
self.index_bytes_literal(&bytes, slice, errors, range)
|
963
|
+
}
|
960
964
|
Type::LiteralString | Type::Literal(Lit::Str(_)) if xs.len() <= 3 => {
|
961
965
|
// We could have a more precise type here, but this matches Pyright.
|
962
966
|
self.stdlib.str().clone().to_type()
|
@@ -1246,10 +1250,22 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
1246
1250
|
let ty = self.expr_infer(&x.value, errors);
|
1247
1251
|
if let Some((key_t, value_t)) = self.unwrap_mapping(&ty) {
|
1248
1252
|
if key_t != Type::any_error() {
|
1249
|
-
|
1253
|
+
if let Some(key_hint) = &key_hint
|
1254
|
+
&& self.is_subset_eq(&key_t, key_hint)
|
1255
|
+
{
|
1256
|
+
key_tys.push(key_hint.clone());
|
1257
|
+
} else {
|
1258
|
+
key_tys.push(key_t);
|
1259
|
+
}
|
1250
1260
|
}
|
1251
1261
|
if value_t != Type::any_error() {
|
1252
|
-
|
1262
|
+
if let Some(value_hint) = &value_hint
|
1263
|
+
&& self.is_subset_eq(&value_t, value_hint)
|
1264
|
+
{
|
1265
|
+
value_tys.push(value_hint.clone());
|
1266
|
+
} else {
|
1267
|
+
value_tys.push(value_t);
|
1268
|
+
}
|
1253
1269
|
}
|
1254
1270
|
} else {
|
1255
1271
|
self.error(
|
@@ -1586,6 +1602,39 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
1586
1602
|
}
|
1587
1603
|
}
|
1588
1604
|
}
|
1605
|
+
|
1606
|
+
fn index_bytes_literal(
|
1607
|
+
&self,
|
1608
|
+
bytes: &[u8],
|
1609
|
+
index_expr: &Expr,
|
1610
|
+
errors: &ErrorCollector,
|
1611
|
+
range: TextRange,
|
1612
|
+
) -> Type {
|
1613
|
+
match index_expr {
|
1614
|
+
// TODO: add support for negative indices case which should match `Expr::UnaryOp(...)`
|
1615
|
+
Expr::NumberLiteral(ExprNumberLiteral { value, .. }) => {
|
1616
|
+
if let Number::Int(int_value) = value {
|
1617
|
+
if let Some(byte) = bytes.get(int_value.as_usize().unwrap_or_default()) {
|
1618
|
+
Type::Literal(Lit::Bytes(Box::new([*byte])))
|
1619
|
+
} else {
|
1620
|
+
self.error(
|
1621
|
+
errors,
|
1622
|
+
range,
|
1623
|
+
ErrorKind::IndexError,
|
1624
|
+
None,
|
1625
|
+
format!(
|
1626
|
+
"Index {int_value} out of range bytes with {} elements",
|
1627
|
+
bytes.len()
|
1628
|
+
),
|
1629
|
+
)
|
1630
|
+
}
|
1631
|
+
} else {
|
1632
|
+
self.stdlib.bytes().clone().to_type()
|
1633
|
+
}
|
1634
|
+
}
|
1635
|
+
_ => self.stdlib.bytes().clone().to_type(),
|
1636
|
+
}
|
1637
|
+
}
|
1589
1638
|
}
|
1590
1639
|
|
1591
1640
|
/// Match on an expression by name. Should be used only for special names that we essentially treat like keywords,
|
@@ -71,8 +71,16 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
71
71
|
)
|
72
72
|
}
|
73
73
|
|
74
|
-
|
75
|
-
|
74
|
+
/// Get our best approximation of ty & right.
|
75
|
+
///
|
76
|
+
/// If the intersection is empty - which does not necessarily indicate
|
77
|
+
/// an actual empty set because of multiple inheritance - use `fallback`
|
78
|
+
fn intersect_with_fallback(
|
79
|
+
&self,
|
80
|
+
left: &Type,
|
81
|
+
right: &Type,
|
82
|
+
fallback: impl Fn() -> Type,
|
83
|
+
) -> Type {
|
76
84
|
self.distribute_over_union(left, |l| {
|
77
85
|
self.distribute_over_union(right, |r| {
|
78
86
|
if self.is_subset_eq(r, l) {
|
@@ -80,12 +88,16 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
80
88
|
} else if self.is_subset_eq(l, r) {
|
81
89
|
l.clone()
|
82
90
|
} else {
|
83
|
-
|
91
|
+
fallback()
|
84
92
|
}
|
85
93
|
})
|
86
94
|
})
|
87
95
|
}
|
88
96
|
|
97
|
+
fn intersect(&self, left: &Type, right: &Type) -> Type {
|
98
|
+
self.intersect_with_fallback(left, right, Type::never)
|
99
|
+
}
|
100
|
+
|
89
101
|
fn intersects(&self, ts: &[Type]) -> Type {
|
90
102
|
match ts {
|
91
103
|
[] => Type::ClassType(self.stdlib.object().clone()),
|
@@ -141,7 +153,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
141
153
|
if let Some(ts) = right.as_decomposed_tuple_or_union() {
|
142
154
|
self.unions(ts.iter().map(|t| self.narrow_isinstance(left, t)).collect())
|
143
155
|
} else if let Some(right) = self.unwrap_class_object_silently(right) {
|
144
|
-
self.
|
156
|
+
self.intersect_with_fallback(left, &right, || right.clone())
|
145
157
|
} else {
|
146
158
|
left.clone()
|
147
159
|
}
|
@@ -431,7 +431,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
431
431
|
ErrorKind::InvalidAnnotation,
|
432
432
|
None,
|
433
433
|
format!(
|
434
|
-
"Expected 1 type argument for {}
|
434
|
+
"Expected 1 type argument for `{}`, got {}",
|
435
435
|
qualifier,
|
436
436
|
unpacked_slice.len()
|
437
437
|
),
|
@@ -764,7 +764,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
764
764
|
range,
|
765
765
|
ErrorKind::TypeAliasError,
|
766
766
|
None,
|
767
|
-
format!("Expected `{name}` to be a type alias, got {ty}"),
|
767
|
+
format!("Expected `{name}` to be a type alias, got `{ty}`"),
|
768
768
|
);
|
769
769
|
return Type::any_error();
|
770
770
|
};
|
@@ -1590,7 +1590,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
1590
1590
|
subscript.range(),
|
1591
1591
|
ErrorKind::BadAssignment,
|
1592
1592
|
None,
|
1593
|
-
format!("Expected {}
|
1593
|
+
format!("Expected `{}`, got `{}`", field.ty, value),
|
1594
1594
|
)
|
1595
1595
|
} else {
|
1596
1596
|
Type::None
|
@@ -1781,7 +1781,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
1781
1781
|
ErrorKind::MatchError,
|
1782
1782
|
Some(&context),
|
1783
1783
|
format!(
|
1784
|
-
"Expected literal string in `__match_args__`, got {}",
|
1784
|
+
"Expected literal string in `__match_args__`, got `{}`",
|
1785
1785
|
ts[*idx]
|
1786
1786
|
),
|
1787
1787
|
)
|
@@ -1803,7 +1803,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
1803
1803
|
ErrorKind::MatchError,
|
1804
1804
|
Some(&context),
|
1805
1805
|
format!(
|
1806
|
-
"Expected concrete tuple for `__match_args__`, got {}",
|
1806
|
+
"Expected concrete tuple for `__match_args__`, got `{}`",
|
1807
1807
|
match_args
|
1808
1808
|
),
|
1809
1809
|
),
|
@@ -2277,6 +2277,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
2277
2277
|
},
|
2278
2278
|
Binding::Type(x) => x.clone(),
|
2279
2279
|
Binding::StrType => self.stdlib.str().clone().to_type(),
|
2280
|
+
Binding::BoolType => self.stdlib.bool().clone().to_type(),
|
2280
2281
|
Binding::TypeParameter(box TypeParameter {
|
2281
2282
|
name,
|
2282
2283
|
unique,
|
@@ -100,7 +100,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
100
100
|
if args.len() == 1 {
|
101
101
|
let mut type_info = self.expr_infer_type_info(&args[0], errors);
|
102
102
|
type_info.visit_mut(&mut |ty| {
|
103
|
-
*ty = self.for_display(self.solver().
|
103
|
+
*ty = self.for_display(self.solver().expand(ty.clone()));
|
104
104
|
});
|
105
105
|
self.error(
|
106
106
|
errors,
|
@@ -19,10 +19,12 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
19
19
|
self.solver().fresh_unwrap(self.uniques)
|
20
20
|
}
|
21
21
|
|
22
|
-
|
22
|
+
/// Resolve a var to a type, but only if it was pinned by the subtype
|
23
|
+
/// check we just ran. If it was not, return `None`.
|
24
|
+
fn resolve_var_opt(&self, ty: &Type, var: Var) -> Option<Type> {
|
25
|
+
let res = self.resolve_var(ty, var);
|
23
26
|
// TODO: Really want to check if the Var is constrained in any way.
|
24
27
|
// No way to do that currently, but this is close.
|
25
|
-
let res = self.expand_var(var);
|
26
28
|
if matches!(res, Type::Var(..)) {
|
27
29
|
None
|
28
30
|
} else {
|
@@ -30,8 +32,35 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
30
32
|
}
|
31
33
|
}
|
32
34
|
|
33
|
-
|
34
|
-
|
35
|
+
/// Resolve a var to a type. This function assumes that the caller has just
|
36
|
+
/// run a successful subtype check of `ty` against a type we are trying to
|
37
|
+
/// decompose (for example `Awaitable[_]` or `Iterable[_]`).
|
38
|
+
///
|
39
|
+
/// It is an error to call this if the subtype check failed. If the subtype
|
40
|
+
/// check succeeded, in most cases the solver will have pinned the Var to
|
41
|
+
/// the correct type argument.
|
42
|
+
///
|
43
|
+
/// One tricky issue is that there are some scenarios where a subtype
|
44
|
+
/// check can pass without pinning vars; this function needs to handle
|
45
|
+
/// those as edge cases.
|
46
|
+
///
|
47
|
+
/// As an example of how this works, if `x` is `CustomSubtypeOfAwaitable[int]`,
|
48
|
+
/// we will synthesize an `Awaitable[@v]` and when we do a subtype check of
|
49
|
+
/// `x`, the solver will pin `@v` to `int` and we will use that.
|
50
|
+
///
|
51
|
+
/// Special cases we handle thus far (there may be bugs where we need more):
|
52
|
+
/// - if `ty` is `Any`, the stubtype check passes without pinning, and the
|
53
|
+
/// right thing to do is propagate the `Any`, preserving its `AnyStyle`.
|
54
|
+
/// - TODO: if `ty` is bottom (`Never` or `NoReturn`), the subtype check
|
55
|
+
/// will pass and we should propagate the type.
|
56
|
+
/// - TODO: all edge cases probably need to also be handled when they are
|
57
|
+
/// the first entry in a union.
|
58
|
+
fn resolve_var(&self, ty: &Type, var: Var) -> Type {
|
59
|
+
match ty {
|
60
|
+
Type::Any(style) => Type::Any(*style),
|
61
|
+
Type::Never(style) => Type::Never(*style),
|
62
|
+
_ => self.solver().expand(var.to_type()),
|
63
|
+
}
|
35
64
|
}
|
36
65
|
|
37
66
|
pub fn is_async_generator(&self, ty: &Type) -> bool {
|
@@ -54,7 +83,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
54
83
|
.mapping(key.to_type(), value.to_type())
|
55
84
|
.to_type();
|
56
85
|
if self.is_subset_eq(ty, &dict_type) {
|
57
|
-
Some((self.
|
86
|
+
Some((self.resolve_var(ty, key), self.resolve_var(ty, value)))
|
58
87
|
} else {
|
59
88
|
None
|
60
89
|
}
|
@@ -64,7 +93,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
64
93
|
let var = self.fresh_var();
|
65
94
|
let awaitable_ty = self.stdlib.awaitable(var.to_type()).to_type();
|
66
95
|
if self.is_subset_eq(ty, &awaitable_ty) {
|
67
|
-
Some(self.
|
96
|
+
Some(self.resolve_var(ty, var))
|
68
97
|
} else {
|
69
98
|
None
|
70
99
|
}
|
@@ -79,9 +108,9 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
79
108
|
.generator(yield_ty.to_type(), send_ty.to_type(), return_ty.to_type())
|
80
109
|
.to_type();
|
81
110
|
if self.is_subset_eq(ty, &generator_ty) {
|
82
|
-
let yield_ty: Type = self.
|
83
|
-
let send_ty = self.
|
84
|
-
let return_ty = self.
|
111
|
+
let yield_ty: Type = self.resolve_var(ty, yield_ty);
|
112
|
+
let send_ty = self.resolve_var(ty, send_ty);
|
113
|
+
let return_ty = self.resolve_var(ty, return_ty);
|
85
114
|
Some((yield_ty, send_ty, return_ty))
|
86
115
|
} else {
|
87
116
|
None
|
@@ -92,7 +121,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
92
121
|
let iter_ty = self.fresh_var();
|
93
122
|
let iterable_ty = self.stdlib.iterable(iter_ty.to_type()).to_type();
|
94
123
|
if self.is_subset_eq(ty, &iterable_ty) {
|
95
|
-
Some(self.
|
124
|
+
Some(self.resolve_var(ty, iter_ty))
|
96
125
|
} else {
|
97
126
|
None
|
98
127
|
}
|
@@ -102,7 +131,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
102
131
|
let iter_ty = self.fresh_var();
|
103
132
|
let iterable_ty = self.stdlib.async_iterable(iter_ty.to_type()).to_type();
|
104
133
|
if self.is_subset_eq(ty, &iterable_ty) {
|
105
|
-
Some(self.
|
134
|
+
Some(self.resolve_var(ty, iter_ty))
|
106
135
|
} else {
|
107
136
|
None
|
108
137
|
}
|
@@ -113,8 +142,8 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
113
142
|
let value = self.fresh_var();
|
114
143
|
let dict_type = self.stdlib.dict(key.to_type(), value.to_type()).to_type();
|
115
144
|
if self.is_subset_eq(&dict_type, ty) {
|
116
|
-
let key = self.
|
117
|
-
let value = self.
|
145
|
+
let key = self.resolve_var_opt(ty, key);
|
146
|
+
let value = self.resolve_var_opt(ty, value);
|
118
147
|
(key, value)
|
119
148
|
} else {
|
120
149
|
(None, None)
|
@@ -125,7 +154,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
125
154
|
let elem = self.fresh_var();
|
126
155
|
let set_type = self.stdlib.set(elem.to_type()).to_type();
|
127
156
|
if self.is_subset_eq(&set_type, ty) {
|
128
|
-
self.
|
157
|
+
self.resolve_var_opt(ty, elem)
|
129
158
|
} else {
|
130
159
|
None
|
131
160
|
}
|
@@ -135,7 +164,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
135
164
|
let elem = self.fresh_var();
|
136
165
|
let list_type = self.stdlib.list(elem.to_type()).to_type();
|
137
166
|
if self.is_subset_eq(&list_type, ty) {
|
138
|
-
self.
|
167
|
+
self.resolve_var_opt(ty, elem)
|
139
168
|
} else {
|
140
169
|
None
|
141
170
|
}
|
@@ -150,7 +179,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
150
179
|
let callable_ty = Type::callable(params, return_ty.to_type());
|
151
180
|
|
152
181
|
if self.is_subset_eq(&callable_ty, ty) {
|
153
|
-
self.
|
182
|
+
self.resolve_var_opt(ty, return_ty)
|
154
183
|
} else {
|
155
184
|
None
|
156
185
|
}
|
@@ -167,7 +196,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
167
196
|
)
|
168
197
|
.to_type();
|
169
198
|
if self.is_subset_eq(&generator_ty, ty) {
|
170
|
-
self.
|
199
|
+
self.resolve_var_opt(ty, yield_ty)
|
171
200
|
} else {
|
172
201
|
None
|
173
202
|
}
|
@@ -182,16 +211,10 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
182
211
|
.generator(yield_ty.to_type(), send_ty.to_type(), return_ty.to_type())
|
183
212
|
.to_type();
|
184
213
|
if self.is_subset_eq(&generator_ty, ty) {
|
185
|
-
let yield_ty: Type = self.
|
186
|
-
let send_ty = self.
|
187
|
-
let return_ty = self.
|
214
|
+
let yield_ty: Type = self.resolve_var_opt(ty, yield_ty)?;
|
215
|
+
let send_ty = self.resolve_var_opt(ty, send_ty).unwrap_or(Type::None);
|
216
|
+
let return_ty = self.resolve_var_opt(ty, return_ty).unwrap_or(Type::None);
|
188
217
|
Some((yield_ty, send_ty, return_ty))
|
189
|
-
} else if ty.is_any() {
|
190
|
-
Some((
|
191
|
-
Type::any_explicit(),
|
192
|
-
Type::any_explicit(),
|
193
|
-
Type::any_explicit(),
|
194
|
-
))
|
195
218
|
} else {
|
196
219
|
None
|
197
220
|
}
|
@@ -205,8 +228,8 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
205
228
|
.async_generator(yield_ty.to_type(), send_ty.to_type())
|
206
229
|
.to_type();
|
207
230
|
if self.is_subset_eq(&async_generator_ty, ty) {
|
208
|
-
let yield_ty: Type = self.
|
209
|
-
let send_ty = self.
|
231
|
+
let yield_ty: Type = self.resolve_var_opt(ty, yield_ty)?;
|
232
|
+
let send_ty = self.resolve_var_opt(ty, send_ty).unwrap_or(Type::None);
|
210
233
|
Some((yield_ty, send_ty))
|
211
234
|
} else if ty.is_any() {
|
212
235
|
Some((Type::any_explicit(), Type::any_explicit()))
|
@@ -729,6 +729,8 @@ pub enum Binding {
|
|
729
729
|
Type(Type),
|
730
730
|
/// The str type.
|
731
731
|
StrType,
|
732
|
+
/// The bool type.
|
733
|
+
BoolType,
|
732
734
|
/// A type parameter.
|
733
735
|
TypeParameter(Box<TypeParameter>),
|
734
736
|
/// The type of a function. The fields are:
|
@@ -869,6 +871,7 @@ impl DisplayWith<Bindings> for Binding {
|
|
869
871
|
Self::AugAssign(_, s) => write!(f, "augmented_assign {:?}", s),
|
870
872
|
Self::Type(t) => write!(f, "type {t}"),
|
871
873
|
Self::StrType => write!(f, "strtype"),
|
874
|
+
Self::BoolType => write!(f, "booltype"),
|
872
875
|
Self::TypeParameter(box TypeParameter { unique, kind, .. }) => {
|
873
876
|
write!(f, "type_parameter({unique}, {kind})")
|
874
877
|
}
|
@@ -21,6 +21,7 @@ use ruff_python_ast::ExprName;
|
|
21
21
|
use ruff_python_ast::ExprYield;
|
22
22
|
use ruff_python_ast::ExprYieldFrom;
|
23
23
|
use ruff_python_ast::Identifier;
|
24
|
+
use ruff_python_ast::ModModule;
|
24
25
|
use ruff_python_ast::Stmt;
|
25
26
|
use ruff_python_ast::StmtReturn;
|
26
27
|
use ruff_python_ast::TypeParam;
|
@@ -78,6 +79,7 @@ use crate::graph::index_map::IndexMap;
|
|
78
79
|
use crate::module::module_info::ModuleInfo;
|
79
80
|
use crate::module::module_name::ModuleName;
|
80
81
|
use crate::module::short_identifier::ShortIdentifier;
|
82
|
+
use crate::ruff::ast::Ast;
|
81
83
|
use crate::solver::solver::Solver;
|
82
84
|
use crate::state::loader::FindError;
|
83
85
|
use crate::sys_info::SysInfo;
|
@@ -138,6 +140,7 @@ pub struct BindingsBuilder<'a> {
|
|
138
140
|
errors: &'a ErrorCollector,
|
139
141
|
solver: &'a Solver,
|
140
142
|
uniques: &'a UniqueFactory,
|
143
|
+
pub has_docstring: bool,
|
141
144
|
pub scopes: Scopes,
|
142
145
|
pub function_yields_and_returns: Vec1<FuncYieldsAndReturns>,
|
143
146
|
pub table: BindingTable,
|
@@ -287,8 +290,7 @@ impl Bindings {
|
|
287
290
|
}
|
288
291
|
|
289
292
|
pub fn new(
|
290
|
-
|
291
|
-
x: Vec<Stmt>,
|
293
|
+
x: ModModule,
|
292
294
|
module_info: ModuleInfo,
|
293
295
|
exports: Exports,
|
294
296
|
solver: &Solver,
|
@@ -308,16 +310,17 @@ impl Bindings {
|
|
308
310
|
uniques,
|
309
311
|
loop_depth: 0,
|
310
312
|
class_count: 0,
|
311
|
-
|
313
|
+
has_docstring: Ast::has_docstring(&x),
|
314
|
+
scopes: Scopes::module(x.range, enable_trace),
|
312
315
|
function_yields_and_returns: Vec1::new(FuncYieldsAndReturns::default()),
|
313
316
|
table: Default::default(),
|
314
317
|
untyped_def_behavior,
|
315
318
|
};
|
316
|
-
builder.init_static_scope(&x, true);
|
319
|
+
builder.init_static_scope(&x.body, true);
|
317
320
|
if module_info.name() != ModuleName::builtins() {
|
318
321
|
builder.inject_builtins();
|
319
322
|
}
|
320
|
-
builder.stmts(x);
|
323
|
+
builder.stmts(x.body);
|
321
324
|
// Create dummy bindings for any invalid yield/yield from expressions.
|
322
325
|
let (top_level_yields_and_returns, _) =
|
323
326
|
builder.function_yields_and_returns.split_off_first();
|
@@ -1026,6 +1029,7 @@ impl<'a> BindingsBuilder<'a> {
|
|
1026
1029
|
|
1027
1030
|
// We normally go through the visible branches, but if nothing is visible no one is going to
|
1028
1031
|
// fill in the Phi keys we promised. So just give up and use the hidden branches instead.
|
1032
|
+
let no_next = visible_branches.is_empty();
|
1029
1033
|
if visible_branches.is_empty() {
|
1030
1034
|
visible_branches = hidden_branches;
|
1031
1035
|
}
|
@@ -1080,10 +1084,7 @@ impl<'a> BindingsBuilder<'a> {
|
|
1080
1084
|
},
|
1081
1085
|
);
|
1082
1086
|
}
|
1083
|
-
Flow {
|
1084
|
-
info: res,
|
1085
|
-
no_next: false,
|
1086
|
-
}
|
1087
|
+
Flow { info: res, no_next }
|
1087
1088
|
}
|
1088
1089
|
|
1089
1090
|
fn merge_loop_into_current(&mut self, mut branches: Vec<Flow>, range: TextRange) {
|
@@ -166,7 +166,7 @@ impl<'a> BindingsBuilder<'a> {
|
|
166
166
|
|
167
167
|
let last_scope = self.scopes.pop();
|
168
168
|
self.scopes.pop(); // annotation scope
|
169
|
-
let mut
|
169
|
+
let mut fields_defined_in_this_class = SmallMap::with_capacity(last_scope.stat.0.len());
|
170
170
|
for (name, info) in last_scope.flow.info.iter_hashed() {
|
171
171
|
let is_function_without_return_annotation =
|
172
172
|
if let FlowStyle::FunctionDef(_, has_return_annotation) = info.style {
|
@@ -191,7 +191,7 @@ impl<'a> BindingsBuilder<'a> {
|
|
191
191
|
initial_value,
|
192
192
|
is_function_without_return_annotation,
|
193
193
|
};
|
194
|
-
|
194
|
+
fields_defined_in_this_class.insert_hashed(
|
195
195
|
name.cloned(),
|
196
196
|
ClassFieldProperties::new(stat_info.annot.is_some(), stat_info.loc),
|
197
197
|
);
|
@@ -209,14 +209,14 @@ impl<'a> BindingsBuilder<'a> {
|
|
209
209
|
InstanceAttribute(value, annotation, range),
|
210
210
|
) in body.method_defined_attributes()
|
211
211
|
{
|
212
|
-
if !
|
212
|
+
if !fields_defined_in_this_class.contains_key_hashed(name.as_ref()) {
|
213
213
|
if !recognized_attribute_defining_method {
|
214
214
|
self.error(
|
215
215
|
range,
|
216
216
|
format!("Attribute `{}` is implicitly defined by assignment in method `{method_name}`, which is not a constructor", &name),
|
217
217
|
ErrorKind::ImplicitlyDefinedAttribute)
|
218
218
|
}
|
219
|
-
|
219
|
+
fields_defined_in_this_class.insert_hashed(
|
220
220
|
name.clone(),
|
221
221
|
ClassFieldProperties::new(annotation.is_some(), range),
|
222
222
|
);
|
@@ -249,13 +249,13 @@ impl<'a> BindingsBuilder<'a> {
|
|
249
249
|
Binding::ClassDef(definition_key, decorators.into_boxed_slice()),
|
250
250
|
FlowStyle::None,
|
251
251
|
);
|
252
|
-
|
252
|
+
fields_defined_in_this_class.reserve(0); // Attempt to shrink to capacity
|
253
253
|
self.table.insert_idx(
|
254
254
|
definition_key,
|
255
255
|
BindingClass::ClassDef(ClassBinding {
|
256
256
|
index: class_index,
|
257
257
|
def: x,
|
258
|
-
fields,
|
258
|
+
fields: fields_defined_in_this_class,
|
259
259
|
bases: bases.into_boxed_slice(),
|
260
260
|
legacy_tparams: legacy_tparams.into_boxed_slice(),
|
261
261
|
}),
|