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.
Files changed (1007) hide show
  1. {pyrefly-0.16.0 → pyrefly-0.16.1}/PKG-INFO +1 -1
  2. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/Cargo.lock +11 -11
  3. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/Cargo.toml +1 -1
  4. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/attr.rs +8 -0
  5. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/class_metadata.rs +12 -0
  6. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/expr.rs +52 -3
  7. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/narrow.rs +16 -4
  8. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/solve.rs +6 -5
  9. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/special_calls.rs +1 -1
  10. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/unwrap.rs +51 -28
  11. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/binding.rs +3 -0
  12. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/bindings.rs +10 -9
  13. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/class.rs +6 -6
  14. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/expr.rs +13 -0
  15. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/dunder.rs +2 -0
  16. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/collector.rs +38 -3
  17. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/ruff/ast.rs +12 -0
  18. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/subset.rs +21 -21
  19. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/lsp.rs +11 -2
  20. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/steps.rs +1 -2
  21. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/attribute_narrow.rs +1 -1
  22. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/attributes.rs +3 -2
  23. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/descriptors.rs +4 -4
  24. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/flow.rs +41 -0
  25. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/generic_basic.rs +24 -3
  26. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/literal.rs +14 -0
  27. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/definition.rs +2 -2
  28. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/lsp_interaction.rs +1 -1
  29. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/mod.rs +1 -0
  30. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/narrow.rs +15 -0
  31. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/new_type.rs +14 -0
  32. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/paramspec.rs +1 -1
  33. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/simple.rs +44 -0
  34. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/typed_dict.rs +1 -1
  35. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/util.rs +13 -9
  36. pyrefly-0.16.1/pyrefly/lib/test/var_resolution.rs +54 -0
  37. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/__main__.pyi +1 -0
  38. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_ast.pyi +8 -1
  39. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_asyncio.pyi +4 -0
  40. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_compression.pyi +27 -0
  41. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_contextvars.pyi +7 -1
  42. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_csv.pyi +5 -4
  43. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_ctypes.pyi +11 -6
  44. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_decimal.pyi +5 -0
  45. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +11 -1
  46. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +19 -0
  47. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_io.pyi +33 -7
  48. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_pydecimal.pyi +4 -0
  49. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_socket.pyi +28 -1
  50. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_ssl.pyi +2 -0
  51. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/__init__.pyi +15 -1
  52. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +89 -0
  53. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/annotationlib.pyi +132 -0
  54. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/argparse.pyi +109 -26
  55. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ast.pyi +128 -117
  56. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/__init__.pyi +18 -0
  57. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/events.pyi +3 -1
  58. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/futures.pyi +7 -1
  59. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/asyncio/graph.pyi +26 -0
  60. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/bdb.pyi +14 -3
  61. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/builtins.pyi +152 -54
  62. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/bz2.pyi +7 -3
  63. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/code.pyi +1 -3
  64. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/codeop.pyi +5 -1
  65. 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
  66. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/bz2/__init__.pyi +1 -0
  67. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/gzip/__init__.pyi +1 -0
  68. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/lzma/__init__.pyi +1 -0
  69. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression/zlib/__init__.pyi +1 -0
  70. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +21 -1
  71. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +14 -3
  72. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/interpreter.pyi +102 -0
  73. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/process.pyi +4 -0
  74. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +136 -0
  75. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/configparser.pyi +34 -1
  76. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/contextlib.pyi +1 -1
  77. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/__init__.pyi +16 -5
  78. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dataclasses.pyi +103 -3
  79. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/datetime.pyi +10 -0
  80. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/decimal.pyi +8 -0
  81. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dis.pyi +76 -9
  82. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/cmd.pyi +2 -2
  83. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/config.pyi +2 -2
  84. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/register.pyi +1 -2
  85. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dist.pyi +1 -3
  86. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/__init__.pyi +2 -1
  87. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/_policybase.pyi +14 -11
  88. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/feedparser.pyi +2 -3
  89. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/generator.pyi +1 -1
  90. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/message.pyi +19 -19
  91. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/message.pyi +2 -1
  92. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/multipart.pyi +2 -1
  93. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/text.pyi +1 -1
  94. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/parser.pyi +9 -8
  95. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/policy.pyi +3 -5
  96. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/__init__.pyi +1 -2
  97. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/enum.pyi +2 -0
  98. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fnmatch.pyi +6 -0
  99. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fractions.pyi +3 -0
  100. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/functools.pyi +56 -15
  101. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/getpass.pyi +14 -0
  102. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gzip.pyi +7 -3
  103. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/client.pyi +1 -1
  104. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/server.pyi +51 -5
  105. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imaplib.pyi +35 -6
  106. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/abc.pyi +3 -0
  107. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/inspect.pyi +53 -7
  108. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/io.pyi +14 -1
  109. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ipaddress.pyi +19 -10
  110. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/handlers.pyi +21 -3
  111. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lzma.pyi +6 -1
  112. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mailbox.pyi +1 -1
  113. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/marshal.pyi +14 -6
  114. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +12 -0
  115. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/numbers.pyi +1 -2
  116. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/os/__init__.pyi +11 -0
  117. 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
  118. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/pathlib/types.pyi +8 -0
  119. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pdb.pyi +59 -15
  120. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pkgutil.pyi +8 -6
  121. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/platform.pyi +3 -0
  122. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/posix.pyi +6 -0
  123. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pydoc.pyi +9 -2
  124. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/socket.pyi +33 -0
  125. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/__init__.pyi +3 -1
  126. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/string/templatelib.pyi +28 -0
  127. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sys/__init__.pyi +5 -1
  128. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tarfile.pyi +11 -2
  129. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tempfile.pyi +1 -1
  130. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/threading.pyi +28 -10
  131. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/__init__.pyi +25 -31
  132. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/commondialog.pyi +1 -1
  133. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/dialog.pyi +1 -2
  134. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/filedialog.pyi +5 -5
  135. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/ttk.pyi +14 -14
  136. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/token.pyi +8 -0
  137. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tokenize.pyi +3 -0
  138. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +26 -0
  139. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/traceback.pyi +3 -2
  140. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/types.pyi +11 -2
  141. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/typing.pyi +169 -85
  142. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/typing_extensions.pyi +101 -52
  143. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/case.pyi +11 -0
  144. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/request.pyi +101 -93
  145. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/uuid.pyi +19 -9
  146. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/winsound.pyi +10 -0
  147. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
  148. pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
  149. pyrefly-0.16.1/pyrefly/third_party/typeshed_metadata.json +5 -0
  150. pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/__main__.pyi +0 -3
  151. pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +0 -11
  152. pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +0 -76
  153. pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/getpass.pyi +0 -8
  154. pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +0 -2
  155. pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +0 -10
  156. pyrefly-0.16.0/pyrefly/third_party/typeshed_metadata.json +0 -5
  157. {pyrefly-0.16.0 → pyrefly-0.16.1}/README.md +0 -0
  158. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyproject.toml +0 -0
  159. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/.cargo/config.toml +0 -0
  160. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/.gitignore +0 -0
  161. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/README.md +0 -0
  162. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/bin/main.rs +0 -0
  163. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/build.rs +0 -0
  164. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/answers.rs +0 -0
  165. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/call.rs +0 -0
  166. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/callable.rs +0 -0
  167. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/class_field.rs +0 -0
  168. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/classdef.rs +0 -0
  169. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/dataclass.rs +0 -0
  170. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/enums.rs +0 -0
  171. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/mod.rs +0 -0
  172. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/named_tuple.rs +0 -0
  173. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/new_type.rs +0 -0
  174. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/targs.rs +0 -0
  175. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/class/typed_dict.rs +0 -0
  176. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/function.rs +0 -0
  177. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/mod.rs +0 -0
  178. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/operators.rs +0 -0
  179. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/specials.rs +0 -0
  180. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/traits.rs +0 -0
  181. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/class_metadata.rs +0 -0
  182. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/decorated_function.rs +0 -0
  183. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/legacy_lookup.rs +0 -0
  184. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/mod.rs +0 -0
  185. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/alt/types/yields.rs +0 -0
  186. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/function.rs +0 -0
  187. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/mod.rs +0 -0
  188. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/narrow.rs +0 -0
  189. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/pattern.rs +0 -0
  190. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/scope.rs +0 -0
  191. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/stmt.rs +1 -1
  192. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/table.rs +0 -0
  193. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/binding/target.rs +0 -0
  194. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/buck_check.rs +0 -0
  195. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/check.rs +0 -0
  196. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/config_finder.rs +0 -0
  197. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/config_migration.rs +0 -0
  198. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/init.rs +0 -0
  199. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/lsp.rs +0 -0
  200. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/mod.rs +0 -0
  201. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/run.rs +0 -0
  202. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/suppress.rs +0 -0
  203. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/commands/util.rs +0 -0
  204. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/common/files.rs +0 -0
  205. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/common/mod.rs +0 -0
  206. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/base.rs +0 -0
  207. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/config.rs +0 -0
  208. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/environment.rs +0 -0
  209. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/finder.rs +0 -0
  210. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/mod.rs +0 -0
  211. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/environment/venv.rs +0 -0
  212. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/error.rs +0 -0
  213. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/finder.rs +0 -0
  214. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mod.rs +0 -0
  215. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/ini.rs +0 -0
  216. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/mod.rs +0 -0
  217. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/pyproject.rs +0 -0
  218. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/mypy/regex_converter.rs +0 -0
  219. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/pyright.rs +0 -0
  220. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/config/util.rs +0 -0
  221. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/context.rs +0 -0
  222. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/display.rs +0 -0
  223. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/error.rs +0 -0
  224. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/expectation.rs +0 -0
  225. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/kind.rs +0 -0
  226. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/legacy.rs +0 -0
  227. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/mod.rs +0 -0
  228. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/style.rs +0 -0
  229. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/error/summarise.rs +0 -0
  230. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/definitions.rs +0 -0
  231. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/exports.rs +0 -0
  232. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/mod.rs +0 -0
  233. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/export/special.rs +0 -0
  234. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/calculation.rs +0 -0
  235. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/index.rs +0 -0
  236. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/index_map.rs +0 -0
  237. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/graph/mod.rs +0 -0
  238. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/lib.rs +0 -0
  239. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/bundled.rs +0 -0
  240. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/display.rs +0 -0
  241. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/finder.rs +0 -0
  242. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/ignore.rs +0 -0
  243. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/mod.rs +0 -0
  244. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/module_info.rs +0 -0
  245. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/module_name.rs +0 -0
  246. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/module_path.rs +0 -0
  247. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/short_identifier.rs +0 -0
  248. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/source_db.rs +0 -0
  249. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/module/wildcard.rs +0 -0
  250. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/playground.rs +0 -0
  251. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/binding_memory.rs +0 -0
  252. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/debug_info.rs +0 -0
  253. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/glean/convert.rs +0 -0
  254. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/glean/mod.rs +0 -0
  255. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/glean/schema.rs +0 -0
  256. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/mod.rs +0 -0
  257. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/report/trace.rs +0 -0
  258. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/ruff/mod.rs +0 -0
  259. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/ruff/visitors.rs +0 -0
  260. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/mod.rs +0 -0
  261. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/solver.rs +0 -0
  262. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/solver/type_order.rs +0 -0
  263. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/dirty.rs +0 -0
  264. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/epoch.rs +0 -0
  265. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/errors.rs +0 -0
  266. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/handle.rs +0 -0
  267. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/ide.rs +0 -0
  268. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/load.rs +0 -0
  269. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/loader.rs +0 -0
  270. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/memory.rs +0 -0
  271. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/mod.rs +0 -0
  272. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/require.rs +0 -0
  273. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/state.rs +0 -0
  274. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/state/subscriber.rs +0 -0
  275. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/sys_info.rs +0 -0
  276. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/assign.rs +0 -0
  277. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/callable.rs +0 -0
  278. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/calls.rs +0 -0
  279. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_keywords.rs +0 -0
  280. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_overrides.rs +0 -0
  281. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_subtyping.rs +0 -0
  282. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/class_super.rs +0 -0
  283. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/constructors.rs +0 -0
  284. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/contextual.rs +0 -0
  285. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/dataclasses.rs +0 -0
  286. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/decorators.rs +0 -0
  287. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/enums.rs +0 -0
  288. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/generic_restrictions.rs +0 -0
  289. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/imports.rs +0 -0
  290. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/completion.rs +0 -0
  291. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/document_symbols.rs +0 -0
  292. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/hover_docstring.rs +0 -0
  293. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/hover_type.rs +0 -0
  294. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/inlay_hint.rs +0 -0
  295. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/local_find_refs.rs +0 -0
  296. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/lsp_interaction_util.rs +0 -0
  297. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/mod.rs +0 -0
  298. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/bar.py +0 -0
  299. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/foo.py +0 -0
  300. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/imports_builtins.py +0 -0
  301. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/bar.py +0 -0
  302. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/foo.py +0 -0
  303. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/pyrefly.toml +0 -0
  304. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/with_synthetic_bindings.py +0 -0
  305. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/lsp/test_files/type_errors.py +0 -0
  306. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/metadata.rs +0 -0
  307. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/mro.rs +0 -0
  308. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/named_tuple.rs +0 -0
  309. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/operators.rs +0 -0
  310. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/overload.rs +0 -0
  311. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/pattern_match.rs +0 -0
  312. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/perf.rs +0 -0
  313. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/protocol.rs +0 -0
  314. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/returns.rs +0 -0
  315. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/scope.rs +0 -0
  316. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/state.rs +0 -0
  317. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/subscript_narrow.rs +0 -0
  318. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/suppression.rs +0 -0
  319. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/tuple.rs +0 -0
  320. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/type_alias.rs +0 -0
  321. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/type_var_tuple.rs +0 -0
  322. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/typing_self.rs +0 -0
  323. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/untyped_def_behaviors.rs +0 -0
  324. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/variance_inference.rs +0 -0
  325. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/with.rs +0 -0
  326. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/test/yields.rs +0 -0
  327. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/alias.rs +0 -0
  328. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/annotation.rs +0 -0
  329. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/callable.rs +0 -0
  330. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/class.rs +0 -0
  331. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/display.rs +0 -0
  332. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/equality.rs +0 -0
  333. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/lit_int.rs +0 -0
  334. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/literal.rs +0 -0
  335. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/lsp.rs +0 -0
  336. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/mod.rs +0 -0
  337. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/module.rs +0 -0
  338. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/param_spec.rs +0 -0
  339. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/qname.rs +0 -0
  340. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/quantified.rs +0 -0
  341. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/simplify.rs +0 -0
  342. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/special_form.rs +0 -0
  343. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/stdlib.rs +0 -0
  344. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/tuple.rs +0 -0
  345. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/type_info.rs +0 -0
  346. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/type_var.rs +0 -0
  347. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/type_var_tuple.rs +0 -0
  348. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/typed_dict.rs +0 -0
  349. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/types/types.rs +0 -0
  350. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/arc_id.rs +0 -0
  351. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/args.rs +0 -0
  352. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/assert_size.rs +0 -0
  353. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/display.rs +0 -0
  354. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/events.rs +0 -0
  355. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/exclusive_lock.rs +0 -0
  356. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/forgetter.rs +0 -0
  357. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/fs_anyhow.rs +0 -0
  358. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/gas.rs +0 -0
  359. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/globs.rs +0 -0
  360. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/lock.rs +0 -0
  361. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/locked_map.rs +0 -0
  362. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/memory.rs +0 -0
  363. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/mod.rs +0 -0
  364. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/no_hash.rs +0 -0
  365. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/prelude.rs +0 -0
  366. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/recurser.rs +0 -0
  367. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/small_set1.rs +0 -0
  368. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/task_heap.rs +0 -0
  369. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/thread_pool.rs +0 -0
  370. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/trace.rs +0 -0
  371. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/uniques.rs +0 -0
  372. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/upgrade_lock.rs +0 -0
  373. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/upward_search.rs +0 -0
  374. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/visit.rs +0 -0
  375. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/watcher.rs +0 -0
  376. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/lib/util/with_hash.rs +0 -0
  377. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/pyrefly.dotslash.py +0 -0
  378. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/rust-toolchain +0 -0
  379. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/__future__.pyi +0 -0
  380. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bisect.pyi +0 -0
  381. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_blake2.pyi +0 -0
  382. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bootlocale.pyi +0 -0
  383. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_bz2.pyi +0 -0
  384. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_codecs.pyi +0 -0
  385. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_collections_abc.pyi +0 -0
  386. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_compat_pickle.pyi +0 -0
  387. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_curses.pyi +0 -0
  388. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_curses_panel.pyi +0 -0
  389. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_dbm.pyi +0 -0
  390. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib.pyi +0 -0
  391. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_gdbm.pyi +0 -0
  392. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_hashlib.pyi +0 -0
  393. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_imp.pyi +0 -0
  394. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpchannels.pyi +0 -0
  395. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpqueues.pyi +0 -0
  396. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_interpreters.pyi +0 -0
  397. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_json.pyi +0 -0
  398. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_locale.pyi +0 -0
  399. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_lsprof.pyi +0 -0
  400. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_lzma.pyi +0 -0
  401. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_markupbase.pyi +0 -0
  402. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_msi.pyi +0 -0
  403. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_multibytecodec.pyi +0 -0
  404. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_operator.pyi +0 -0
  405. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_osx_support.pyi +0 -0
  406. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_pickle.pyi +0 -0
  407. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_posixsubprocess.pyi +0 -0
  408. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_py_abc.pyi +0 -0
  409. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_queue.pyi +0 -0
  410. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_random.pyi +0 -0
  411. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_sitebuiltins.pyi +0 -0
  412. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_sqlite3.pyi +0 -0
  413. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_stat.pyi +0 -0
  414. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_struct.pyi +0 -0
  415. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_thread.pyi +0 -0
  416. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_threading_local.pyi +0 -0
  417. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_tkinter.pyi +0 -0
  418. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_tracemalloc.pyi +0 -0
  419. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
  420. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
  421. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
  422. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_typeshed/xml.pyi +0 -0
  423. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_warnings.pyi +0 -0
  424. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_weakref.pyi +0 -0
  425. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_weakrefset.pyi +0 -0
  426. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/_winapi.pyi +0 -0
  427. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/abc.pyi +0 -0
  428. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/aifc.pyi +0 -0
  429. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/antigravity.pyi +0 -0
  430. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/array.pyi +0 -0
  431. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asynchat.pyi +0 -0
  432. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_events.pyi +0 -0
  433. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
  434. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
  435. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
  436. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/constants.pyi +0 -0
  437. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
  438. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
  439. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
  440. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/locks.pyi +0 -0
  441. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/log.pyi +0 -0
  442. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/mixins.pyi +0 -0
  443. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
  444. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/protocols.pyi +0 -0
  445. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/queues.pyi +0 -0
  446. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/runners.pyi +0 -0
  447. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
  448. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
  449. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/staggered.pyi +0 -0
  450. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/streams.pyi +0 -0
  451. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
  452. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
  453. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/tasks.pyi +0 -0
  454. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/threads.pyi +0 -0
  455. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
  456. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/transports.pyi +0 -0
  457. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/trsock.pyi +0 -0
  458. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
  459. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
  460. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
  461. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/asyncore.pyi +0 -0
  462. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/atexit.pyi +0 -0
  463. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/audioop.pyi +0 -0
  464. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/base64.pyi +0 -0
  465. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/binascii.pyi +0 -0
  466. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/binhex.pyi +0 -0
  467. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/bisect.pyi +0 -0
  468. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cProfile.pyi +0 -0
  469. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/calendar.pyi +0 -0
  470. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cgi.pyi +0 -0
  471. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cgitb.pyi +0 -0
  472. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/chunk.pyi +0 -0
  473. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cmath.pyi +0 -0
  474. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/cmd.pyi +0 -0
  475. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/codecs.pyi +0 -0
  476. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/collections/__init__.pyi +0 -0
  477. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/collections/abc.pyi +0 -0
  478. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/colorsys.pyi +0 -0
  479. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/compileall.pyi +0 -0
  480. {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/concurrent → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/compression}/__init__.pyi +0 -0
  481. {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
  482. {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/lib2to3 → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/concurrent}/__init__.pyi +0 -0
  483. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/contextvars.pyi +0 -0
  484. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/copy.pyi +0 -0
  485. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/copyreg.pyi +0 -0
  486. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/crypt.pyi +0 -0
  487. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/csv.pyi +0 -0
  488. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/_endian.pyi +0 -0
  489. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
  490. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
  491. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
  492. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
  493. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/util.pyi +0 -0
  494. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
  495. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/__init__.pyi +0 -0
  496. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/ascii.pyi +0 -0
  497. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/has_key.pyi +0 -0
  498. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/panel.pyi +0 -0
  499. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/curses/textpad.pyi +0 -0
  500. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/__init__.pyi +0 -0
  501. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/dumb.pyi +0 -0
  502. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/gnu.pyi +0 -0
  503. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/ndbm.pyi +0 -0
  504. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
  505. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/difflib.pyi +0 -0
  506. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/__init__.pyi +0 -0
  507. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
  508. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/archive_util.pyi +0 -0
  509. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
  510. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
  511. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
  512. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
  513. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
  514. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
  515. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
  516. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
  517. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
  518. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build.pyi +0 -0
  519. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
  520. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
  521. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
  522. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
  523. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/check.pyi +0 -0
  524. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/clean.pyi +0 -0
  525. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install.pyi +0 -0
  526. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
  527. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
  528. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
  529. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
  530. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
  531. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
  532. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/command/upload.pyi +0 -0
  533. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/config.pyi +0 -0
  534. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/core.pyi +0 -0
  535. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
  536. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/debug.pyi +0 -0
  537. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dep_util.pyi +0 -0
  538. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/dir_util.pyi +0 -0
  539. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/errors.pyi +0 -0
  540. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/extension.pyi +0 -0
  541. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
  542. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/file_util.pyi +0 -0
  543. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/filelist.pyi +0 -0
  544. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/log.pyi +0 -0
  545. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
  546. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/spawn.pyi +0 -0
  547. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
  548. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/text_file.pyi +0 -0
  549. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
  550. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/util.pyi +0 -0
  551. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/distutils/version.pyi +0 -0
  552. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/doctest.pyi +0 -0
  553. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
  554. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/base64mime.pyi +0 -0
  555. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/charset.pyi +0 -0
  556. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/contentmanager.pyi +0 -0
  557. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/encoders.pyi +0 -0
  558. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/errors.pyi +0 -0
  559. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/header.pyi +0 -0
  560. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/headerregistry.pyi +0 -0
  561. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/iterators.pyi +0 -0
  562. {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
  563. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/application.pyi +0 -0
  564. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/audio.pyi +0 -0
  565. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/base.pyi +0 -0
  566. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/image.pyi +0 -0
  567. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
  568. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/quoprimime.pyi +0 -0
  569. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/email/utils.pyi +0 -0
  570. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/aliases.pyi +0 -0
  571. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/ascii.pyi +0 -0
  572. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
  573. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/big5.pyi +0 -0
  574. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
  575. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
  576. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/charmap.pyi +0 -0
  577. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp037.pyi +0 -0
  578. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1006.pyi +0 -0
  579. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1026.pyi +0 -0
  580. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1125.pyi +0 -0
  581. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1140.pyi +0 -0
  582. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1250.pyi +0 -0
  583. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1251.pyi +0 -0
  584. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1252.pyi +0 -0
  585. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1253.pyi +0 -0
  586. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1254.pyi +0 -0
  587. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1255.pyi +0 -0
  588. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1256.pyi +0 -0
  589. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1257.pyi +0 -0
  590. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp1258.pyi +0 -0
  591. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp273.pyi +0 -0
  592. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp424.pyi +0 -0
  593. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp437.pyi +0 -0
  594. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp500.pyi +0 -0
  595. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp720.pyi +0 -0
  596. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp737.pyi +0 -0
  597. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp775.pyi +0 -0
  598. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp850.pyi +0 -0
  599. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp852.pyi +0 -0
  600. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp855.pyi +0 -0
  601. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp856.pyi +0 -0
  602. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp857.pyi +0 -0
  603. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp858.pyi +0 -0
  604. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp860.pyi +0 -0
  605. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp861.pyi +0 -0
  606. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp862.pyi +0 -0
  607. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp863.pyi +0 -0
  608. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp864.pyi +0 -0
  609. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp865.pyi +0 -0
  610. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp866.pyi +0 -0
  611. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp869.pyi +0 -0
  612. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp874.pyi +0 -0
  613. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp875.pyi +0 -0
  614. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp932.pyi +0 -0
  615. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp949.pyi +0 -0
  616. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/cp950.pyi +0 -0
  617. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
  618. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
  619. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
  620. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
  621. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gb18030.pyi +0 -0
  622. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gb2312.pyi +0 -0
  623. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/gbk.pyi +0 -0
  624. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
  625. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
  626. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/hz.pyi +0 -0
  627. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/idna.pyi +0 -0
  628. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
  629. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
  630. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
  631. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
  632. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
  633. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
  634. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
  635. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
  636. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
  637. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
  638. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
  639. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
  640. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
  641. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
  642. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
  643. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
  644. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
  645. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
  646. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
  647. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
  648. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
  649. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
  650. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/johab.pyi +0 -0
  651. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
  652. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
  653. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
  654. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/kz1048.pyi +0 -0
  655. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/latin_1.pyi +0 -0
  656. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
  657. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
  658. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
  659. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
  660. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
  661. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
  662. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
  663. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
  664. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
  665. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
  666. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/mbcs.pyi +0 -0
  667. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/oem.pyi +0 -0
  668. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/palmos.pyi +0 -0
  669. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
  670. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/punycode.pyi +0 -0
  671. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
  672. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
  673. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/rot_13.pyi +0 -0
  674. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
  675. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
  676. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
  677. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/tis_620.pyi +0 -0
  678. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/undefined.pyi +0 -0
  679. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
  680. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16.pyi +0 -0
  681. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
  682. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
  683. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32.pyi +0 -0
  684. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
  685. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
  686. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_7.pyi +0 -0
  687. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8.pyi +0 -0
  688. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
  689. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
  690. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
  691. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
  692. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/errno.pyi +0 -0
  693. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/faulthandler.pyi +0 -0
  694. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fcntl.pyi +0 -0
  695. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/filecmp.pyi +0 -0
  696. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/fileinput.pyi +0 -0
  697. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/formatter.pyi +0 -0
  698. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ftplib.pyi +0 -0
  699. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gc.pyi +0 -0
  700. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/genericpath.pyi +0 -0
  701. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/getopt.pyi +0 -0
  702. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/gettext.pyi +0 -0
  703. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/glob.pyi +0 -0
  704. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/graphlib.pyi +0 -0
  705. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/grp.pyi +0 -0
  706. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/hashlib.pyi +0 -0
  707. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/heapq.pyi +0 -0
  708. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/hmac.pyi +0 -0
  709. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/__init__.pyi +0 -0
  710. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/entities.pyi +0 -0
  711. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/html/parser.pyi +0 -0
  712. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/__init__.pyi +0 -0
  713. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/cookiejar.pyi +0 -0
  714. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/http/cookies.pyi +0 -0
  715. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imghdr.pyi +0 -0
  716. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/imp.pyi +0 -0
  717. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/__init__.pyi +0 -0
  718. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_abc.pyi +0 -0
  719. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
  720. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
  721. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/machinery.pyi +0 -0
  722. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
  723. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
  724. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
  725. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/readers.pyi +0 -0
  726. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
  727. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
  728. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
  729. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
  730. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
  731. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
  732. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/simple.pyi +0 -0
  733. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/importlib/util.pyi +0 -0
  734. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/itertools.pyi +0 -0
  735. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/__init__.pyi +0 -0
  736. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/decoder.pyi +0 -0
  737. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/encoder.pyi +0 -0
  738. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/scanner.pyi +0 -0
  739. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/json/tool.pyi +0 -0
  740. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/keyword.pyi +0 -0
  741. {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
  742. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
  743. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
  744. {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
  745. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
  746. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
  747. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
  748. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
  749. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
  750. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
  751. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
  752. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
  753. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
  754. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
  755. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
  756. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
  757. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
  758. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
  759. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
  760. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
  761. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
  762. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
  763. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
  764. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
  765. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
  766. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
  767. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
  768. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
  769. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
  770. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
  771. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
  772. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
  773. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
  774. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
  775. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
  776. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
  777. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
  778. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
  779. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
  780. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
  781. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
  782. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
  783. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
  784. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
  785. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
  786. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
  787. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
  788. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
  789. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
  790. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
  791. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
  792. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
  793. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
  794. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
  795. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
  796. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
  797. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/main.pyi +0 -0
  798. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
  799. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
  800. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
  801. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
  802. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
  803. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
  804. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
  805. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
  806. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
  807. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
  808. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
  809. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/linecache.pyi +0 -0
  810. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/locale.pyi +0 -0
  811. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/__init__.pyi +0 -0
  812. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/logging/config.pyi +0 -0
  813. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mailcap.pyi +0 -0
  814. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/math.pyi +0 -0
  815. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mimetypes.pyi +0 -0
  816. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/mmap.pyi +0 -0
  817. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/modulefinder.pyi +0 -0
  818. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/__init__.pyi +0 -0
  819. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/schema.pyi +0 -0
  820. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/sequence.pyi +0 -0
  821. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msilib/text.pyi +0 -0
  822. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/msvcrt.pyi +0 -0
  823. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
  824. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
  825. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/context.pyi +0 -0
  826. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
  827. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
  828. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
  829. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
  830. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
  831. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
  832. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
  833. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
  834. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
  835. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
  836. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/process.pyi +0 -0
  837. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
  838. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
  839. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
  840. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
  841. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
  842. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
  843. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
  844. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
  845. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/multiprocessing/util.pyi +0 -0
  846. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/netrc.pyi +0 -0
  847. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nis.pyi +0 -0
  848. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nntplib.pyi +0 -0
  849. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/nt.pyi +0 -0
  850. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ntpath.pyi +0 -0
  851. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/opcode.pyi +0 -0
  852. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/operator.pyi +0 -0
  853. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/optparse.pyi +0 -0
  854. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/os/path.pyi +0 -0
  855. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ossaudiodev.pyi +0 -0
  856. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/parser.pyi +0 -0
  857. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pickle.pyi +0 -0
  858. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pickletools.pyi +0 -0
  859. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pipes.pyi +0 -0
  860. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/plistlib.pyi +0 -0
  861. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/poplib.pyi +0 -0
  862. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/posixpath.pyi +0 -0
  863. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pprint.pyi +0 -0
  864. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/profile.pyi +0 -0
  865. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pstats.pyi +0 -0
  866. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pty.pyi +0 -0
  867. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pwd.pyi +0 -0
  868. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/py_compile.pyi +0 -0
  869. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyclbr.pyi +0 -0
  870. {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
  871. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
  872. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
  873. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/errors.pyi +0 -0
  874. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/pyexpat/model.pyi +0 -0
  875. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/queue.pyi +0 -0
  876. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/quopri.pyi +0 -0
  877. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/random.pyi +0 -0
  878. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/re.pyi +0 -0
  879. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/readline.pyi +0 -0
  880. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/reprlib.pyi +0 -0
  881. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/resource.pyi +0 -0
  882. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/rlcompleter.pyi +0 -0
  883. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/runpy.pyi +0 -0
  884. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sched.pyi +0 -0
  885. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/secrets.pyi +0 -0
  886. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/select.pyi +0 -0
  887. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/selectors.pyi +0 -0
  888. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shelve.pyi +0 -0
  889. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shlex.pyi +0 -0
  890. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/shutil.pyi +0 -0
  891. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/signal.pyi +0 -0
  892. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/site.pyi +0 -0
  893. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/smtpd.pyi +0 -0
  894. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/smtplib.pyi +0 -0
  895. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sndhdr.pyi +0 -0
  896. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/socketserver.pyi +0 -0
  897. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/spwd.pyi +0 -0
  898. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
  899. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sqlite3/dump.pyi +0 -0
  900. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_compile.pyi +0 -0
  901. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_constants.pyi +0 -0
  902. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sre_parse.pyi +0 -0
  903. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/ssl.pyi +0 -0
  904. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/stat.pyi +0 -0
  905. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/statistics.pyi +0 -0
  906. /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
  907. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/stringprep.pyi +0 -0
  908. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/struct.pyi +0 -0
  909. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/subprocess.pyi +0 -0
  910. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sunau.pyi +0 -0
  911. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/symbol.pyi +0 -0
  912. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/symtable.pyi +0 -0
  913. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sys/_monitoring.pyi +0 -0
  914. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/sysconfig.pyi +0 -0
  915. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/syslog.pyi +0 -0
  916. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tabnanny.pyi +0 -0
  917. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/telnetlib.pyi +0 -0
  918. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/termios.pyi +0 -0
  919. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/textwrap.pyi +0 -0
  920. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/this.pyi +0 -0
  921. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/time.pyi +0 -0
  922. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/timeit.pyi +0 -0
  923. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
  924. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/constants.pyi +0 -0
  925. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/dnd.pyi +0 -0
  926. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/font.pyi +0 -0
  927. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
  928. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
  929. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
  930. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tkinter/tix.pyi +0 -0
  931. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/trace.pyi +0 -0
  932. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tracemalloc.pyi +0 -0
  933. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/tty.pyi +0 -0
  934. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/turtle.pyi +0 -0
  935. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unicodedata.pyi +0 -0
  936. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/__init__.pyi +0 -0
  937. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/_log.pyi +0 -0
  938. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/async_case.pyi +0 -0
  939. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/loader.pyi +0 -0
  940. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/main.pyi +0 -0
  941. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/mock.pyi +0 -0
  942. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/result.pyi +0 -0
  943. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/runner.pyi +0 -0
  944. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/signals.pyi +0 -0
  945. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/suite.pyi +0 -0
  946. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/unittest/util.pyi +0 -0
  947. {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
  948. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/error.pyi +0 -0
  949. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/parse.pyi +0 -0
  950. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/response.pyi +0 -0
  951. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/urllib/robotparser.pyi +0 -0
  952. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/uu.pyi +0 -0
  953. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/venv/__init__.pyi +0 -0
  954. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/warnings.pyi +0 -0
  955. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wave.pyi +0 -0
  956. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/weakref.pyi +0 -0
  957. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/webbrowser.pyi +0 -0
  958. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/winreg.pyi +0 -0
  959. {pyrefly-0.16.0/pyrefly/third_party/typeshed/stdlib/xmlrpc → pyrefly-0.16.1/pyrefly/third_party/typeshed/stdlib/wsgiref}/__init__.pyi +0 -0
  960. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
  961. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/headers.pyi +0 -0
  962. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
  963. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/types.pyi +0 -0
  964. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/util.pyi +0 -0
  965. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/wsgiref/validate.pyi +0 -0
  966. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xdrlib.pyi +0 -0
  967. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/__init__.pyi +0 -0
  968. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
  969. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
  970. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
  971. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
  972. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
  973. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
  974. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
  975. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
  976. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
  977. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
  978. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
  979. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
  980. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
  981. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
  982. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
  983. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
  984. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
  985. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
  986. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
  987. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/handler.pyi +0 -0
  988. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
  989. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
  990. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xmlrpc/client.pyi +0 -0
  991. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xmlrpc/server.pyi +0 -0
  992. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/xxlimited.pyi +0 -0
  993. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipapp.pyi +0 -0
  994. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/__init__.pyi +0 -0
  995. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
  996. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
  997. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zipimport.pyi +0 -0
  998. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zlib.pyi +0 -0
  999. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
  1000. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
  1001. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
  1002. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/.gitignore +0 -0
  1003. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/Cargo.toml +0 -0
  1004. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/src/lib.rs +0 -0
  1005. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/src/type_eq.rs +0 -0
  1006. {pyrefly-0.16.0 → pyrefly-0.16.1}/pyrefly_derive/src/visit.rs +0 -0
  1007. {pyrefly-0.16.0 → pyrefly-0.16.1}/rust-toolchain +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyrefly
3
- Version: 0.16.0
3
+ Version: 0.16.1
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Programming Language :: Python
6
6
  Classifier: Programming Language :: Python :: 3
@@ -992,9 +992,9 @@ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
992
992
 
993
993
  [[package]]
994
994
  name = "icu_properties"
995
- version = "2.0.0"
995
+ version = "2.0.1"
996
996
  source = "registry+https://github.com/rust-lang/crates.io-index"
997
- checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a"
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.0"
1011
+ version = "2.0.1"
1012
1012
  source = "registry+https://github.com/rust-lang/crates.io-index"
1013
- checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04"
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.0"
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.1"
2973
+ version = "0.61.2"
2974
2974
  source = "registry+https://github.com/rust-lang/crates.io-index"
2975
- checksum = "46ec44dc15085cea82cf9c78f85a9114c463a369786585ad2882d1ff0b0acf40"
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.3"
3014
+ version = "0.3.4"
3015
3015
  source = "registry+https://github.com/rust-lang/crates.io-index"
3016
- checksum = "4b895b5356fc36103d0f64dd1e94dfa7ac5633f1c9dd6e80fe9ec4adef69e09d"
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.1"
3023
+ version = "0.4.2"
3024
3024
  source = "registry+https://github.com/rust-lang/crates.io-index"
3025
- checksum = "2a7ab927b2637c19b3dbe0965e75d8f2d30bdd697a1516191cad2ec4df8fb28a"
3025
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3026
3026
  dependencies = [
3027
3027
  "windows-link",
3028
3028
  ]
@@ -2,7 +2,7 @@
2
2
 
3
3
  [package]
4
4
  name = "pyrefly"
5
- version = "0.16.0"
5
+ version = "0.16.1"
6
6
  authors = ["Meta"]
7
7
  edition = "2021"
8
8
  repository = "https://github.com/facebook/pyrefly"
@@ -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
- key_tys.push(key_t);
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
- value_tys.push(value_t);
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
- fn intersect(&self, left: &Type, right: &Type) -> Type {
75
- // Get our best approximation of ty & right.
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
- Type::never()
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.intersect(left, &right)
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 {}, got {}",
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 {}, got {}", field.ty, value),
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().deep_force(ty.clone()));
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
- fn expand_var_opt(&self, var: Var) -> Option<Type> {
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
- fn expand_var(&self, var: Var) -> Type {
34
- self.solver().expand(var.to_type())
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.expand_var(key), self.expand_var(value)))
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.expand_var(var))
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.expand_var(yield_ty);
83
- let send_ty = self.expand_var(send_ty);
84
- let return_ty = self.expand_var(return_ty);
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.expand_var(iter_ty))
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.expand_var(iter_ty))
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.expand_var_opt(key);
117
- let value = self.expand_var_opt(value);
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.expand_var_opt(elem)
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.expand_var_opt(elem)
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.expand_var_opt(return_ty)
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.expand_var_opt(yield_ty)
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.expand_var_opt(yield_ty)?;
186
- let send_ty = self.expand_var_opt(send_ty).unwrap_or(Type::None);
187
- let return_ty = self.expand_var_opt(return_ty).unwrap_or(Type::None);
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.expand_var_opt(yield_ty)?;
209
- let send_ty = self.expand_var_opt(send_ty).unwrap_or(Type::None);
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
- module_scope_range: TextRange,
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
- scopes: Scopes::module(module_scope_range, enable_trace),
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 fields = SmallMap::with_capacity(last_scope.stat.0.len());
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
- fields.insert_hashed(
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 !fields.contains_key_hashed(name.as_ref()) {
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
- fields.insert_hashed(
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
- fields.reserve(0); // Attempt to shrink to capacity
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
  }),