basedpyright 1.31.2-8570d72d2f435379435b640deeec8b07b97d855a → 1.31.3

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 (616) hide show
  1. package/dist/pyright-langserver.js +1 -1
  2. package/dist/pyright-langserver.js.map +1 -1
  3. package/dist/pyright.js +1 -1
  4. package/dist/pyright.js.map +1 -1
  5. package/dist/typeshed-fallback/README.md +3 -3
  6. package/dist/typeshed-fallback/commit.txt +1 -1
  7. package/dist/typeshed-fallback/stdlib/VERSIONS +1 -0
  8. package/dist/typeshed-fallback/stdlib/_compression.pyi +2 -1
  9. package/dist/typeshed-fallback/stdlib/_contextvars.pyi +1 -1
  10. package/dist/typeshed-fallback/stdlib/_ctypes.pyi +4 -1
  11. package/dist/typeshed-fallback/stdlib/_frozen_importlib.pyi +11 -0
  12. package/dist/typeshed-fallback/stdlib/_frozen_importlib_external.pyi +14 -3
  13. package/dist/typeshed-fallback/stdlib/_gdbm.pyi +2 -1
  14. package/dist/typeshed-fallback/stdlib/_heapq.pyi +4 -5
  15. package/dist/typeshed-fallback/stdlib/_interpchannels.pyi +6 -6
  16. package/dist/typeshed-fallback/stdlib/_interpreters.pyi +9 -6
  17. package/dist/typeshed-fallback/stdlib/_io.pyi +1 -0
  18. package/dist/typeshed-fallback/stdlib/_json.pyi +3 -3
  19. package/dist/typeshed-fallback/stdlib/_markupbase.pyi +2 -2
  20. package/dist/typeshed-fallback/stdlib/_msi.pyi +5 -0
  21. package/dist/typeshed-fallback/stdlib/_operator.pyi +8 -1
  22. package/dist/typeshed-fallback/stdlib/_pickle.pyi +1 -0
  23. package/dist/typeshed-fallback/stdlib/_socket.pyi +524 -529
  24. package/dist/typeshed-fallback/stdlib/_sqlite3.pyi +179 -178
  25. package/dist/typeshed-fallback/stdlib/_ssl.pyi +108 -106
  26. package/dist/typeshed-fallback/stdlib/_thread.pyi +1 -1
  27. package/dist/typeshed-fallback/stdlib/_tkinter.pyi +2 -1
  28. package/dist/typeshed-fallback/stdlib/_typeshed/__init__.pyi +10 -8
  29. package/dist/typeshed-fallback/stdlib/_winapi.pyi +3 -0
  30. package/dist/typeshed-fallback/stdlib/argparse.pyi +46 -21
  31. package/dist/typeshed-fallback/stdlib/array.pyi +25 -6
  32. package/dist/typeshed-fallback/stdlib/ast.pyi +40 -19
  33. package/dist/typeshed-fallback/stdlib/asyncio/__init__.pyi +0 -7
  34. package/dist/typeshed-fallback/stdlib/asyncio/base_futures.pyi +3 -5
  35. package/dist/typeshed-fallback/stdlib/asyncio/coroutines.pyi +2 -1
  36. package/dist/typeshed-fallback/stdlib/asyncio/events.pyi +5 -4
  37. package/dist/typeshed-fallback/stdlib/asyncio/format_helpers.pyi +2 -1
  38. package/dist/typeshed-fallback/stdlib/asyncio/futures.pyi +2 -6
  39. package/dist/typeshed-fallback/stdlib/asyncio/queues.pyi +2 -1
  40. package/dist/typeshed-fallback/stdlib/asyncio/streams.pyi +2 -1
  41. package/dist/typeshed-fallback/stdlib/asyncio/tasks.pyi +4 -1
  42. package/dist/typeshed-fallback/stdlib/asyncio/trsock.pyi +30 -1
  43. package/dist/typeshed-fallback/stdlib/asyncio/unix_events.pyi +1 -1
  44. package/dist/typeshed-fallback/stdlib/bdb.pyi +2 -2
  45. package/dist/typeshed-fallback/stdlib/binascii.pyi +5 -1
  46. package/dist/typeshed-fallback/stdlib/builtins.pyi +26 -4
  47. package/dist/typeshed-fallback/stdlib/bz2.pyi +3 -1
  48. package/dist/typeshed-fallback/stdlib/cgi.pyi +2 -2
  49. package/dist/typeshed-fallback/stdlib/codecs.pyi +11 -1
  50. package/dist/typeshed-fallback/stdlib/collections/__init__.pyi +4 -1
  51. package/dist/typeshed-fallback/stdlib/compileall.pyi +2 -1
  52. package/dist/typeshed-fallback/stdlib/concurrent/futures/__init__.pyi +2 -2
  53. package/dist/typeshed-fallback/stdlib/concurrent/futures/_base.pyi +2 -1
  54. package/dist/typeshed-fallback/stdlib/concurrent/futures/interpreter.pyi +19 -40
  55. package/dist/typeshed-fallback/stdlib/concurrent/interpreters/__init__.pyi +68 -0
  56. package/dist/typeshed-fallback/stdlib/concurrent/interpreters/_crossinterp.pyi +29 -0
  57. package/dist/typeshed-fallback/stdlib/concurrent/interpreters/_queues.pyi +58 -0
  58. package/dist/typeshed-fallback/stdlib/configparser.pyi +29 -10
  59. package/dist/typeshed-fallback/stdlib/contextlib.pyi +3 -2
  60. package/dist/typeshed-fallback/stdlib/copy.pyi +2 -1
  61. package/dist/typeshed-fallback/stdlib/ctypes/__init__.pyi +2 -1
  62. package/dist/typeshed-fallback/stdlib/dataclasses.pyi +1 -0
  63. package/dist/typeshed-fallback/stdlib/datetime.pyi +24 -24
  64. package/dist/typeshed-fallback/stdlib/dbm/__init__.pyi +1 -0
  65. package/dist/typeshed-fallback/stdlib/difflib.pyi +8 -1
  66. package/dist/typeshed-fallback/stdlib/email/headerregistry.pyi +2 -1
  67. package/dist/typeshed-fallback/stdlib/email/message.pyi +3 -1
  68. package/dist/typeshed-fallback/stdlib/encodings/__init__.pyi +4 -0
  69. package/dist/typeshed-fallback/stdlib/enum.pyi +5 -0
  70. package/dist/typeshed-fallback/stdlib/fcntl.pyi +86 -86
  71. package/dist/typeshed-fallback/stdlib/fileinput.pyi +2 -1
  72. package/dist/typeshed-fallback/stdlib/fractions.pyi +2 -1
  73. package/dist/typeshed-fallback/stdlib/functools.pyi +5 -1
  74. package/dist/typeshed-fallback/stdlib/gettext.pyi +20 -2
  75. package/dist/typeshed-fallback/stdlib/glob.pyi +10 -2
  76. package/dist/typeshed-fallback/stdlib/gzip.pyi +5 -2
  77. package/dist/typeshed-fallback/stdlib/hashlib.pyi +3 -1
  78. package/dist/typeshed-fallback/stdlib/html/parser.pyi +13 -3
  79. package/dist/typeshed-fallback/stdlib/imghdr.pyi +2 -1
  80. package/dist/typeshed-fallback/stdlib/imp.pyi +2 -1
  81. package/dist/typeshed-fallback/stdlib/importlib/__init__.pyi +2 -0
  82. package/dist/typeshed-fallback/stdlib/importlib/_abc.pyi +5 -0
  83. package/dist/typeshed-fallback/stdlib/importlib/abc.pyi +4 -0
  84. package/dist/typeshed-fallback/stdlib/importlib/metadata/__init__.pyi +3 -2
  85. package/dist/typeshed-fallback/stdlib/importlib/resources/abc.pyi +5 -19
  86. package/dist/typeshed-fallback/stdlib/importlib/util.pyi +13 -1
  87. package/dist/typeshed-fallback/stdlib/inspect.pyi +9 -3
  88. package/dist/typeshed-fallback/stdlib/ipaddress.pyi +2 -2
  89. package/dist/typeshed-fallback/stdlib/locale.pyi +7 -1
  90. package/dist/typeshed-fallback/stdlib/logging/__init__.pyi +3 -1
  91. package/dist/typeshed-fallback/stdlib/logging/handlers.pyi +2 -1
  92. package/dist/typeshed-fallback/stdlib/mailbox.pyi +4 -1
  93. package/dist/typeshed-fallback/stdlib/math.pyi +5 -2
  94. package/dist/typeshed-fallback/stdlib/mmap.pyi +55 -50
  95. package/dist/typeshed-fallback/stdlib/multiprocessing/heap.pyi +2 -1
  96. package/dist/typeshed-fallback/stdlib/multiprocessing/sharedctypes.pyi +2 -2
  97. package/dist/typeshed-fallback/stdlib/nt.pyi +3 -0
  98. package/dist/typeshed-fallback/stdlib/numbers.pyi +4 -1
  99. package/dist/typeshed-fallback/stdlib/optparse.pyi +1 -2
  100. package/dist/typeshed-fallback/stdlib/os/__init__.pyi +7 -5
  101. package/dist/typeshed-fallback/stdlib/pathlib/__init__.pyi +15 -5
  102. package/dist/typeshed-fallback/stdlib/pkgutil.pyi +10 -4
  103. package/dist/typeshed-fallback/stdlib/platform.pyi +19 -4
  104. package/dist/typeshed-fallback/stdlib/pprint.pyi +58 -11
  105. package/dist/typeshed-fallback/stdlib/pty.pyi +8 -4
  106. package/dist/typeshed-fallback/stdlib/pydoc.pyi +2 -1
  107. package/dist/typeshed-fallback/stdlib/queue.pyi +3 -2
  108. package/dist/typeshed-fallback/stdlib/quopri.pyi +2 -1
  109. package/dist/typeshed-fallback/stdlib/re.pyi +7 -5
  110. package/dist/typeshed-fallback/stdlib/shutil.pyi +2 -1
  111. package/dist/typeshed-fallback/stdlib/signal.pyi +49 -49
  112. package/dist/typeshed-fallback/stdlib/smtpd.pyi +2 -1
  113. package/dist/typeshed-fallback/stdlib/smtplib.pyi +2 -2
  114. package/dist/typeshed-fallback/stdlib/socket.pyi +3 -4
  115. package/dist/typeshed-fallback/stdlib/sqlite3/__init__.pyi +19 -13
  116. package/dist/typeshed-fallback/stdlib/sqlite3/dbapi2.pyi +2 -1
  117. package/dist/typeshed-fallback/stdlib/ssl.pyi +130 -127
  118. package/dist/typeshed-fallback/stdlib/string/templatelib.pyi +9 -4
  119. package/dist/typeshed-fallback/stdlib/sys/__init__.pyi +9 -1
  120. package/dist/typeshed-fallback/stdlib/sys/_monitoring.pyi +38 -26
  121. package/dist/typeshed-fallback/stdlib/tarfile.pyi +50 -46
  122. package/dist/typeshed-fallback/stdlib/tempfile.pyi +2 -1
  123. package/dist/typeshed-fallback/stdlib/termios.pyi +267 -266
  124. package/dist/typeshed-fallback/stdlib/threading.pyi +1 -1
  125. package/dist/typeshed-fallback/stdlib/time.pyi +2 -1
  126. package/dist/typeshed-fallback/stdlib/tkinter/__init__.pyi +6 -0
  127. package/dist/typeshed-fallback/stdlib/tkinter/dnd.pyi +2 -1
  128. package/dist/typeshed-fallback/stdlib/tkinter/font.pyi +3 -1
  129. package/dist/typeshed-fallback/stdlib/tkinter/ttk.pyi +5 -1
  130. package/dist/typeshed-fallback/stdlib/tty.pyi +7 -7
  131. package/dist/typeshed-fallback/stdlib/turtle.pyi +5 -13
  132. package/dist/typeshed-fallback/stdlib/typing.pyi +17 -15
  133. package/dist/typeshed-fallback/stdlib/typing_extensions.pyi +5 -11
  134. package/dist/typeshed-fallback/stdlib/unittest/case.pyi +4 -13
  135. package/dist/typeshed-fallback/stdlib/unittest/main.pyi +2 -1
  136. package/dist/typeshed-fallback/stdlib/unittest/mock.pyi +35 -8
  137. package/dist/typeshed-fallback/stdlib/unittest/runner.pyi +3 -1
  138. package/dist/typeshed-fallback/stdlib/urllib/request.pyi +4 -3
  139. package/dist/typeshed-fallback/stdlib/uuid.pyi +1 -1
  140. package/dist/typeshed-fallback/stdlib/winreg.pyi +1 -1
  141. package/dist/typeshed-fallback/stdlib/xml/dom/minidom.pyi +3 -1
  142. package/dist/typeshed-fallback/stdlib/xml/etree/ElementInclude.pyi +2 -1
  143. package/dist/typeshed-fallback/stdlib/xml/etree/ElementTree.pyi +1 -0
  144. package/dist/typeshed-fallback/stdlib/xml/sax/__init__.pyi +2 -1
  145. package/dist/typeshed-fallback/stdlib/xmlrpc/client.pyi +2 -1
  146. package/dist/typeshed-fallback/stdlib/xmlrpc/server.pyi +7 -1
  147. package/dist/typeshed-fallback/stdlib/zipfile/__init__.pyi +9 -4
  148. package/dist/typeshed-fallback/stdlib/zipimport.pyi +12 -4
  149. package/dist/typeshed-fallback/stdlib/zlib.pyi +8 -4
  150. package/dist/typeshed-fallback/stdlib/zoneinfo/_common.pyi +2 -1
  151. package/dist/typeshed-fallback/stubs/Authlib/METADATA.toml +1 -0
  152. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/token.pyi +2 -1
  153. package/dist/typeshed-fallback/stubs/Flask-Cors/flask_cors/core.pyi +2 -1
  154. package/dist/typeshed-fallback/stubs/Flask-Migrate/flask_migrate/__init__.pyi +2 -1
  155. package/dist/typeshed-fallback/stubs/Flask-SocketIO/flask_socketio/__init__.pyi +6 -1
  156. package/dist/typeshed-fallback/stubs/Flask-SocketIO/flask_socketio/namespace.pyi +2 -1
  157. package/dist/typeshed-fallback/stubs/Flask-SocketIO/flask_socketio/test_client.pyi +2 -1
  158. package/dist/typeshed-fallback/stubs/JACK-Client/METADATA.toml +1 -1
  159. package/dist/typeshed-fallback/stubs/JACK-Client/jack/__init__.pyi +5 -3
  160. package/dist/typeshed-fallback/stubs/Markdown/markdown/extensions/toc.pyi +3 -1
  161. package/dist/typeshed-fallback/stubs/Markdown/markdown/util.pyi +2 -1
  162. package/dist/typeshed-fallback/stubs/PyMySQL/pymysql/__init__.pyi +4 -5
  163. package/dist/typeshed-fallback/stubs/PyScreeze/METADATA.toml +1 -1
  164. package/dist/typeshed-fallback/stubs/PyYAML/yaml/emitter.pyi +2 -1
  165. package/dist/typeshed-fallback/stubs/Pygments/pygments/formatters/other.pyi +1 -1
  166. package/dist/typeshed-fallback/stubs/Pygments/pygments/style.pyi +2 -1
  167. package/dist/typeshed-fallback/stubs/RPi.GPIO/METADATA.toml +5 -3
  168. package/dist/typeshed-fallback/stubs/WTForms/wtforms/fields/core.pyi +3 -1
  169. package/dist/typeshed-fallback/stubs/WTForms/wtforms/form.pyi +2 -1
  170. package/dist/typeshed-fallback/stubs/WTForms/wtforms/i18n.pyi +2 -1
  171. package/dist/typeshed-fallback/stubs/WTForms/wtforms/meta.pyi +5 -1
  172. package/dist/typeshed-fallback/stubs/WebOb/webob/acceptparse.pyi +2 -1
  173. package/dist/typeshed-fallback/stubs/WebOb/webob/cookies.pyi +2 -1
  174. package/dist/typeshed-fallback/stubs/WebOb/webob/dec.pyi +2 -1
  175. package/dist/typeshed-fallback/stubs/WebOb/webob/exc.pyi +2 -1
  176. package/dist/typeshed-fallback/stubs/WebOb/webob/multidict.pyi +2 -1
  177. package/dist/typeshed-fallback/stubs/WebOb/webob/request.pyi +3 -1
  178. package/dist/typeshed-fallback/stubs/WebOb/webob/response.pyi +3 -1
  179. package/dist/typeshed-fallback/stubs/aiofiles/METADATA.toml +1 -1
  180. package/dist/typeshed-fallback/stubs/aiofiles/aiofiles/threadpool/binary.pyi +2 -0
  181. package/dist/typeshed-fallback/stubs/aiofiles/aiofiles/threadpool/text.pyi +2 -1
  182. package/dist/typeshed-fallback/stubs/antlr4-python3-runtime/METADATA.toml +1 -1
  183. package/dist/typeshed-fallback/stubs/bleach/bleach/callbacks.pyi +2 -1
  184. package/dist/typeshed-fallback/stubs/bleach/bleach/html5lib_shim.pyi +2 -1
  185. package/dist/typeshed-fallback/stubs/boltons/boltons/setutils.pyi +2 -1
  186. package/dist/typeshed-fallback/stubs/boltons/boltons/typeutils.pyi +2 -1
  187. package/dist/typeshed-fallback/stubs/braintree/METADATA.toml +1 -1
  188. package/dist/typeshed-fallback/stubs/braintree/braintree/__init__.pyi +1 -0
  189. package/dist/typeshed-fallback/stubs/braintree/braintree/attribute_getter.pyi +1 -1
  190. package/dist/typeshed-fallback/stubs/braintree/braintree/transaction.pyi +2 -0
  191. package/dist/typeshed-fallback/stubs/braintree/braintree/transfer.pyi +4 -0
  192. package/dist/typeshed-fallback/stubs/braintree/braintree/util/graphql_client.pyi +5 -1
  193. package/dist/typeshed-fallback/stubs/braintree/braintree/webhook_notification.pyi +1 -0
  194. package/dist/typeshed-fallback/stubs/cachetools/METADATA.toml +1 -1
  195. package/dist/typeshed-fallback/stubs/cffi/METADATA.toml +1 -1
  196. package/dist/typeshed-fallback/stubs/cffi/_cffi_backend.pyi +28 -24
  197. package/dist/typeshed-fallback/stubs/channels/METADATA.toml +8 -0
  198. package/dist/typeshed-fallback/stubs/channels/channels/__init__.pyi +4 -0
  199. package/dist/typeshed-fallback/stubs/channels/channels/apps.pyi +7 -0
  200. package/dist/typeshed-fallback/stubs/channels/channels/auth.pyi +26 -0
  201. package/dist/typeshed-fallback/stubs/channels/channels/consumer.pyi +75 -0
  202. package/dist/typeshed-fallback/stubs/channels/channels/db.pyi +32 -0
  203. package/dist/typeshed-fallback/stubs/channels/channels/exceptions.pyi +8 -0
  204. package/dist/typeshed-fallback/stubs/channels/channels/generic/__init__.pyi +0 -0
  205. package/dist/typeshed-fallback/stubs/channels/channels/generic/http.pyi +19 -0
  206. package/dist/typeshed-fallback/stubs/channels/channels/generic/websocket.pyi +61 -0
  207. package/dist/typeshed-fallback/stubs/channels/channels/layers.pyi +91 -0
  208. package/dist/typeshed-fallback/stubs/channels/channels/management/__init__.pyi +0 -0
  209. package/dist/typeshed-fallback/stubs/channels/channels/management/commands/__init__.pyi +0 -0
  210. package/dist/typeshed-fallback/stubs/channels/channels/management/commands/runworker.pyi +25 -0
  211. package/dist/typeshed-fallback/stubs/channels/channels/middleware.pyi +12 -0
  212. package/dist/typeshed-fallback/stubs/channels/channels/routing.pyi +31 -0
  213. package/dist/typeshed-fallback/stubs/channels/channels/security/__init__.pyi +0 -0
  214. package/dist/typeshed-fallback/stubs/channels/channels/security/websocket.pyi +25 -0
  215. package/dist/typeshed-fallback/stubs/channels/channels/sessions.pyi +56 -0
  216. package/dist/typeshed-fallback/stubs/channels/channels/testing/__init__.pyi +6 -0
  217. package/dist/typeshed-fallback/stubs/channels/channels/testing/application.pyi +21 -0
  218. package/dist/typeshed-fallback/stubs/channels/channels/testing/http.pyi +41 -0
  219. package/dist/typeshed-fallback/stubs/channels/channels/testing/live.pyi +26 -0
  220. package/dist/typeshed-fallback/stubs/channels/channels/testing/websocket.pyi +54 -0
  221. package/dist/typeshed-fallback/stubs/channels/channels/utils.pyi +20 -0
  222. package/dist/typeshed-fallback/stubs/channels/channels/worker.pyi +13 -0
  223. package/dist/typeshed-fallback/stubs/click-spinner/click_spinner/__init__.pyi +2 -1
  224. package/dist/typeshed-fallback/stubs/colorama/METADATA.toml +1 -1
  225. package/dist/typeshed-fallback/stubs/croniter/croniter/croniter.pyi +2 -1
  226. package/dist/typeshed-fallback/stubs/dateparser/dateparser/__init__.pyi +2 -1
  227. package/dist/typeshed-fallback/stubs/defusedxml/defusedxml/lxml.pyi +2 -1
  228. package/dist/typeshed-fallback/stubs/defusedxml/defusedxml/xmlrpc.pyi +2 -2
  229. package/dist/typeshed-fallback/stubs/django-filter/METADATA.toml +7 -0
  230. package/dist/typeshed-fallback/stubs/django-filter/django_filters/__init__.pyi +10 -0
  231. package/dist/typeshed-fallback/stubs/django-filter/django_filters/compat.pyi +1 -0
  232. package/dist/typeshed-fallback/stubs/django-filter/django_filters/conf.pyi +17 -0
  233. package/dist/typeshed-fallback/stubs/django-filter/django_filters/constants.pyi +6 -0
  234. package/dist/typeshed-fallback/stubs/django-filter/django_filters/exceptions.pyi +8 -0
  235. package/dist/typeshed-fallback/stubs/django-filter/django_filters/fields.pyi +100 -0
  236. package/dist/typeshed-fallback/stubs/django-filter/django_filters/filters.pyi +234 -0
  237. package/dist/typeshed-fallback/stubs/django-filter/django_filters/filterset.pyi +85 -0
  238. package/dist/typeshed-fallback/stubs/django-filter/django_filters/rest_framework/__init__.pyi +3 -0
  239. package/dist/typeshed-fallback/stubs/django-filter/django_filters/rest_framework/backends.pyi +30 -0
  240. package/dist/typeshed-fallback/stubs/django-filter/django_filters/rest_framework/filters.pyi +71 -0
  241. package/dist/typeshed-fallback/stubs/django-filter/django_filters/rest_framework/filterset.pyi +17 -0
  242. package/dist/typeshed-fallback/stubs/django-filter/django_filters/utils.pyi +36 -0
  243. package/dist/typeshed-fallback/stubs/django-filter/django_filters/views.pyi +38 -0
  244. package/dist/typeshed-fallback/stubs/django-filter/django_filters/widgets.pyi +86 -0
  245. package/dist/typeshed-fallback/stubs/django-import-export/import_export/templatetags/import_export_tags.pyi +1 -1
  246. package/dist/typeshed-fallback/stubs/docker/docker/models/containers.pyi +2 -1
  247. package/dist/typeshed-fallback/stubs/docker/docker/utils/proxy.pyi +3 -1
  248. package/dist/typeshed-fallback/stubs/dockerfile-parse/dockerfile_parse/parser.pyi +2 -1
  249. package/dist/typeshed-fallback/stubs/docutils/METADATA.toml +0 -4
  250. package/dist/typeshed-fallback/stubs/docutils/docutils/__main__.pyi +9 -0
  251. package/dist/typeshed-fallback/stubs/docutils/docutils/core.pyi +15 -15
  252. package/dist/typeshed-fallback/stubs/docutils/docutils/languages/eo.pyi +5 -5
  253. package/dist/typeshed-fallback/stubs/docutils/docutils/nodes.pyi +4 -1
  254. package/dist/typeshed-fallback/stubs/docutils/docutils/parsers/rst/directives/misc.pyi +3 -0
  255. package/dist/typeshed-fallback/stubs/docutils/docutils/parsers/rst/directives/tables.pyi +6 -5
  256. package/dist/typeshed-fallback/stubs/docutils/docutils/parsers/rst/states.pyi +5 -2
  257. package/dist/typeshed-fallback/stubs/docutils/docutils/readers/standalone.pyi +2 -2
  258. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/__init__.pyi +30 -8
  259. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/components.pyi +9 -0
  260. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/frontmatter.pyi +34 -0
  261. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/misc.pyi +19 -0
  262. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/parts.pyi +34 -0
  263. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/peps.pyi +43 -0
  264. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/references.pyi +75 -0
  265. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/universal.pyi +52 -0
  266. package/dist/typeshed-fallback/stubs/docutils/docutils/transforms/writer_aux.pyi +17 -0
  267. package/dist/typeshed-fallback/stubs/docutils/docutils/utils/math/math2html.pyi +2 -0
  268. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/__init__.pyi +6 -4
  269. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/_html_base.pyi +302 -0
  270. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/docutils_xml.pyi +45 -1
  271. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/html4css1/__init__.pyi +125 -0
  272. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/html5_polyglot/__init__.pyi +16 -0
  273. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/latex2e/__init__.pyi +412 -0
  274. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/manpage.pyi +235 -7
  275. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/null.pyi +9 -1
  276. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/odf_odt/__init__.pyi +424 -0
  277. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/odf_odt/prepstyles.pyi +7 -0
  278. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/odf_odt/pygmentsformatter.pyi +31 -0
  279. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/pep_html/__init__.pyi +20 -0
  280. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/pseudoxml.pyi +9 -1
  281. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/s5_html/__init__.pyi +42 -0
  282. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/xetex/__init__.pyi +29 -0
  283. package/dist/typeshed-fallback/stubs/fanstatic/fanstatic/injector.pyi +4 -1
  284. package/dist/typeshed-fallback/stubs/fpdf2/METADATA.toml +1 -1
  285. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/encryption.pyi +2 -1
  286. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/enums.pyi +91 -10
  287. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/fonts.pyi +1 -0
  288. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/fpdf.pyi +1 -1
  289. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/html.pyi +9 -7
  290. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/svg.pyi +10 -5
  291. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/syntax.pyi +1 -0
  292. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/table.pyi +0 -1
  293. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/template.pyi +1 -1
  294. package/dist/typeshed-fallback/stubs/gdb/METADATA.toml +2 -2
  295. package/dist/typeshed-fallback/stubs/gdb/gdb/__init__.pyi +81 -54
  296. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/__init__.pyi +16 -8
  297. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/breakpoint.pyi +49 -1
  298. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/bt.pyi +49 -1
  299. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/disassemble.pyi +22 -1
  300. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/evaluate.pyi +31 -1
  301. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/events.pyi +12 -1
  302. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/frames.pyi +7 -1
  303. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/io.pyi +16 -1
  304. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/launch.pyi +14 -1
  305. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/locations.pyi +16 -1
  306. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/memory.pyi +10 -1
  307. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/modules.pyi +21 -1
  308. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/next.pyi +14 -1
  309. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/pause.pyi +3 -1
  310. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/scopes.pyi +47 -1
  311. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/server.pyi +77 -1
  312. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/sources.pyi +24 -1
  313. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/startup.pyi +44 -1
  314. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/state.pyi +1 -1
  315. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/threads.pyi +14 -1
  316. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/typecheck.pyi +6 -1
  317. package/dist/typeshed-fallback/stubs/gdb/gdb/dap/varref.pyi +70 -1
  318. package/dist/typeshed-fallback/stubs/gdb/gdb/disassembler.pyi +15 -14
  319. package/dist/typeshed-fallback/stubs/gdb/gdb/events.pyi +1 -0
  320. package/dist/typeshed-fallback/stubs/gdb/gdb/missing_debug.pyi +4 -8
  321. package/dist/typeshed-fallback/stubs/gdb/gdb/missing_files.pyi +13 -0
  322. package/dist/typeshed-fallback/stubs/gdb/gdb/missing_objfile.pyi +7 -0
  323. package/dist/typeshed-fallback/stubs/gdb/gdb/types.pyi +3 -2
  324. package/dist/typeshed-fallback/stubs/gdb/gdb/xmethod.pyi +3 -2
  325. package/dist/typeshed-fallback/stubs/geopandas/geopandas/io/file.pyi +2 -2
  326. package/dist/typeshed-fallback/stubs/geopandas/geopandas/io/sql.pyi +5 -1
  327. package/dist/typeshed-fallback/stubs/gevent/METADATA.toml +1 -1
  328. package/dist/typeshed-fallback/stubs/gevent/gevent/_config.pyi +2 -1
  329. package/dist/typeshed-fallback/stubs/gevent/gevent/_ffi/loop.pyi +2 -1
  330. package/dist/typeshed-fallback/stubs/gevent/gevent/_hub_primitives.pyi +2 -1
  331. package/dist/typeshed-fallback/stubs/gevent/gevent/baseserver.pyi +11 -13
  332. package/dist/typeshed-fallback/stubs/gevent/gevent/event.pyi +2 -1
  333. package/dist/typeshed-fallback/stubs/gevent/gevent/events.pyi +2 -1
  334. package/dist/typeshed-fallback/stubs/gevent/gevent/hub.pyi +2 -1
  335. package/dist/typeshed-fallback/stubs/gevent/gevent/local.pyi +3 -3
  336. package/dist/typeshed-fallback/stubs/gevent/gevent/pywsgi.pyi +2 -1
  337. package/dist/typeshed-fallback/stubs/gevent/gevent/resolver/ares.pyi +2 -1
  338. package/dist/typeshed-fallback/stubs/gevent/gevent/server.pyi +4 -3
  339. package/dist/typeshed-fallback/stubs/gevent/gevent/timeout.pyi +2 -1
  340. package/dist/typeshed-fallback/stubs/greenlet/greenlet/_greenlet.pyi +2 -1
  341. package/dist/typeshed-fallback/stubs/hdbcli/METADATA.toml +1 -1
  342. package/dist/typeshed-fallback/stubs/hdbcli/hdbcli/__init__.pyi +3 -1
  343. package/dist/typeshed-fallback/stubs/hdbcli/hdbcli/dbapi.pyi +3 -2
  344. package/dist/typeshed-fallback/stubs/hdbcli/hdbcli/resultrow.pyi +2 -2
  345. package/dist/typeshed-fallback/stubs/html5lib/html5lib/_inputstream.pyi +2 -1
  346. package/dist/typeshed-fallback/stubs/hvac/hvac/adapters.pyi +2 -1
  347. package/dist/typeshed-fallback/stubs/hvac/hvac/utils.pyi +2 -1
  348. package/dist/typeshed-fallback/stubs/icalendar/icalendar/prop.pyi +2 -1
  349. package/dist/typeshed-fallback/stubs/jmespath/jmespath/ast.pyi +3 -2
  350. package/dist/typeshed-fallback/stubs/jmespath/jmespath/exceptions.pyi +1 -1
  351. package/dist/typeshed-fallback/stubs/jmespath/jmespath/functions.pyi +2 -1
  352. package/dist/typeshed-fallback/stubs/jmespath/jmespath/lexer.pyi +2 -1
  353. package/dist/typeshed-fallback/stubs/jmespath/jmespath/visitor.pyi +8 -4
  354. package/dist/typeshed-fallback/stubs/jsonschema/METADATA.toml +1 -1
  355. package/dist/typeshed-fallback/stubs/jsonschema/jsonschema/validators.pyi +2 -1
  356. package/dist/typeshed-fallback/stubs/keyboard/METADATA.toml +1 -1
  357. package/dist/typeshed-fallback/stubs/mock/mock/mock.pyi +2 -1
  358. package/dist/typeshed-fallback/stubs/networkx/networkx/_typing.pyi +13 -0
  359. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/components/attracting.pyi +3 -5
  360. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/components/biconnected.pyi +3 -4
  361. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/components/connected.pyi +3 -4
  362. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/components/semiconnected.pyi +3 -2
  363. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/components/strongly_connected.pyi +7 -7
  364. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/components/weakly_connected.pyi +5 -4
  365. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/cycles.pyi +11 -16
  366. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/distance_measures.pyi +30 -15
  367. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/flow/mincost.pyi +6 -4
  368. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/shortest_paths/astar.pyi +7 -8
  369. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/shortest_paths/generic.pyi +105 -31
  370. package/dist/typeshed-fallback/stubs/networkx/networkx/algorithms/shortest_paths/weighted.pyi +55 -97
  371. package/dist/typeshed-fallback/stubs/networkx/networkx/classes/graph.pyi +17 -13
  372. package/dist/typeshed-fallback/stubs/networkx/networkx/classes/multidigraph.pyi +2 -1
  373. package/dist/typeshed-fallback/stubs/networkx/networkx/classes/multigraph.pyi +31 -14
  374. package/dist/typeshed-fallback/stubs/networkx/networkx/drawing/nx_agraph.pyi +29 -19
  375. package/dist/typeshed-fallback/stubs/networkx/networkx/linalg/algebraicconnectivity.pyi +33 -16
  376. package/dist/typeshed-fallback/stubs/networkx/networkx/linalg/attrmatrix.pyi +35 -2
  377. package/dist/typeshed-fallback/stubs/networkx/networkx/linalg/bethehessianmatrix.pyi +3 -2
  378. package/dist/typeshed-fallback/stubs/networkx/networkx/linalg/graphmatrix.pyi +24 -4
  379. package/dist/typeshed-fallback/stubs/networkx/networkx/linalg/laplacianmatrix.pyi +22 -7
  380. package/dist/typeshed-fallback/stubs/networkx/networkx/linalg/modularitymatrix.pyi +10 -3
  381. package/dist/typeshed-fallback/stubs/networkx/networkx/linalg/spectrum.pyi +8 -5
  382. package/dist/typeshed-fallback/stubs/networkx/networkx/utils/__init__.pyi +0 -2
  383. package/dist/typeshed-fallback/stubs/oauthlib/oauthlib/oauth2/rfc6749/request_validator.pyi +3 -1
  384. package/dist/typeshed-fallback/stubs/openpyxl/openpyxl/__init__.pyi +2 -1
  385. package/dist/typeshed-fallback/stubs/openpyxl/openpyxl/descriptors/sequence.pyi +4 -1
  386. package/dist/typeshed-fallback/stubs/openpyxl/openpyxl/descriptors/serialisable.pyi +4 -1
  387. package/dist/typeshed-fallback/stubs/openpyxl/openpyxl/worksheet/_writer.pyi +2 -1
  388. package/dist/typeshed-fallback/stubs/openpyxl/openpyxl/worksheet/datavalidation.pyi +2 -1
  389. package/dist/typeshed-fallback/stubs/paramiko/METADATA.toml +2 -2
  390. package/dist/typeshed-fallback/stubs/paramiko/paramiko/__init__.pyi +6 -47
  391. package/dist/typeshed-fallback/stubs/paramiko/paramiko/agent.pyi +2 -1
  392. package/dist/typeshed-fallback/stubs/paramiko/paramiko/client.pyi +2 -1
  393. package/dist/typeshed-fallback/stubs/paramiko/paramiko/hostkeys.pyi +3 -1
  394. package/dist/typeshed-fallback/stubs/paramiko/paramiko/message.pyi +2 -1
  395. package/dist/typeshed-fallback/stubs/paramiko/paramiko/pipe.pyi +3 -1
  396. package/dist/typeshed-fallback/stubs/paramiko/paramiko/ssh_gss.pyi +0 -2
  397. package/dist/typeshed-fallback/stubs/paramiko/paramiko/transport.pyi +2 -1
  398. package/dist/typeshed-fallback/stubs/peewee/METADATA.toml +1 -1
  399. package/dist/typeshed-fallback/stubs/pexpect/pexpect/spawnbase.pyi +2 -1
  400. package/dist/typeshed-fallback/stubs/pika/pika/credentials.pyi +2 -1
  401. package/dist/typeshed-fallback/stubs/pika/pika/exchange_type.pyi +18 -6
  402. package/dist/typeshed-fallback/stubs/pony/METADATA.toml +3 -0
  403. package/dist/typeshed-fallback/stubs/pony/pony/__init__.pyi +14 -0
  404. package/dist/typeshed-fallback/stubs/pony/pony/converting.pyi +48 -0
  405. package/dist/typeshed-fallback/stubs/pony/pony/flask/__init__.pyi +17 -0
  406. package/dist/typeshed-fallback/stubs/pony/pony/flask/example/__init__.pyi +0 -0
  407. package/dist/typeshed-fallback/stubs/pony/pony/flask/example/app.pyi +8 -0
  408. package/dist/typeshed-fallback/stubs/pony/pony/flask/example/config.pyi +1 -0
  409. package/dist/typeshed-fallback/stubs/pony/pony/flask/example/models.pyi +10 -0
  410. package/dist/typeshed-fallback/stubs/pony/pony/flask/example/views.pyi +4 -0
  411. package/dist/typeshed-fallback/stubs/pony/pony/options.pyi +39 -0
  412. package/dist/typeshed-fallback/stubs/pony/pony/orm/__init__.pyi +1 -0
  413. package/dist/typeshed-fallback/stubs/pony/pony/orm/asttranslation.pyi +139 -0
  414. package/dist/typeshed-fallback/stubs/pony/pony/orm/core.pyi +823 -0
  415. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbapiprovider.pyi +216 -0
  416. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbproviders/__init__.pyi +0 -0
  417. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbproviders/cockroach.pyi +49 -0
  418. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbproviders/mysql.pyi +101 -0
  419. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbproviders/oracle.pyi +159 -0
  420. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbproviders/postgres.pyi +105 -0
  421. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbproviders/sqlite.pyi +219 -0
  422. package/dist/typeshed-fallback/stubs/pony/pony/orm/dbschema.pyi +86 -0
  423. package/dist/typeshed-fallback/stubs/pony/pony/orm/decompiling.pyi +135 -0
  424. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/__init__.pyi +0 -0
  425. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/alessandro_bug.pyi +48 -0
  426. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/bottle_example.pyi +6 -0
  427. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/bug_ben.pyi +19 -0
  428. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/compositekeys.pyi +78 -0
  429. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/demo.pyi +30 -0
  430. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/estore.pyi +58 -0
  431. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/inheritance1.pyi +39 -0
  432. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/numbers.pyi +20 -0
  433. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/session01.pyi +15 -0
  434. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/university1.pyi +43 -0
  435. package/dist/typeshed-fallback/stubs/pony/pony/orm/examples/university2.pyi +87 -0
  436. package/dist/typeshed-fallback/stubs/pony/pony/orm/integration/__init__.pyi +0 -0
  437. package/dist/typeshed-fallback/stubs/pony/pony/orm/integration/bottle_plugin.pyi +6 -0
  438. package/dist/typeshed-fallback/stubs/pony/pony/orm/ormtypes.pyi +153 -0
  439. package/dist/typeshed-fallback/stubs/pony/pony/orm/serialization.pyi +32 -0
  440. package/dist/typeshed-fallback/stubs/pony/pony/orm/sqlbuilding.pyi +162 -0
  441. package/dist/typeshed-fallback/stubs/pony/pony/orm/sqlsymbols.pyi +88 -0
  442. package/dist/typeshed-fallback/stubs/pony/pony/orm/sqltranslation.pyi +773 -0
  443. package/dist/typeshed-fallback/stubs/pony/pony/py23compat.pyi +13 -0
  444. package/dist/typeshed-fallback/stubs/pony/pony/thirdparty/__init__.pyi +0 -0
  445. package/dist/typeshed-fallback/stubs/pony/pony/thirdparty/decorator.pyi +31 -0
  446. package/dist/typeshed-fallback/stubs/pony/pony/utils/__init__.pyi +2 -0
  447. package/dist/typeshed-fallback/stubs/pony/pony/utils/properties.pyi +16 -0
  448. package/dist/typeshed-fallback/stubs/pony/pony/utils/utils.pyi +86 -0
  449. package/dist/typeshed-fallback/stubs/protobuf/google/_upb/_message.pyi +38 -38
  450. package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/internal/containers.pyi +2 -1
  451. package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/internal/enum_type_wrapper.pyi +2 -1
  452. package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/internal/extension_dict.pyi +2 -1
  453. package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/internal/well_known_types.pyi +0 -9
  454. package/dist/typeshed-fallback/stubs/psutil/METADATA.toml +1 -1
  455. package/dist/typeshed-fallback/stubs/psycopg2/psycopg2/_psycopg.pyi +4 -2
  456. package/dist/typeshed-fallback/stubs/psycopg2/psycopg2/extras.pyi +3 -1
  457. package/dist/typeshed-fallback/stubs/pyaudio/METADATA.toml +1 -1
  458. package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/__init__.pyi +2 -1
  459. package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/coco.pyi +7 -1
  460. package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/cocoeval.pyi +3 -1
  461. package/dist/typeshed-fallback/stubs/pycurl/METADATA.toml +1 -1
  462. package/dist/typeshed-fallback/stubs/pyinstaller/METADATA.toml +1 -1
  463. package/dist/typeshed-fallback/stubs/pyinstaller/PyInstaller/compat.pyi +1 -0
  464. package/dist/typeshed-fallback/stubs/pyinstaller/PyInstaller/utils/hooks/conda.pyi +2 -1
  465. package/dist/typeshed-fallback/stubs/pynput/METADATA.toml +1 -1
  466. package/dist/typeshed-fallback/stubs/pynput/pynput/_util.pyi +2 -1
  467. package/dist/typeshed-fallback/stubs/pyperclip/METADATA.toml +1 -1
  468. package/dist/typeshed-fallback/stubs/pyserial/METADATA.toml +1 -1
  469. package/dist/typeshed-fallback/stubs/pyserial/serial/urlhandler/protocol_spy.pyi +2 -2
  470. package/dist/typeshed-fallback/stubs/pysftp/METADATA.toml +3 -0
  471. package/dist/typeshed-fallback/stubs/python-crontab/METADATA.toml +1 -1
  472. package/dist/typeshed-fallback/stubs/python-crontab/cronlog.pyi +3 -0
  473. package/dist/typeshed-fallback/stubs/python-crontab/crontab.pyi +21 -19
  474. package/dist/typeshed-fallback/stubs/python-dateutil/dateutil/tz/_common.pyi +0 -4
  475. package/dist/typeshed-fallback/stubs/python-dateutil/dateutil/tz/tz.pyi +5 -1
  476. package/dist/typeshed-fallback/stubs/python-jenkins/METADATA.toml +1 -1
  477. package/dist/typeshed-fallback/stubs/python-jenkins/jenkins/__init__.pyi +8 -3
  478. package/dist/typeshed-fallback/stubs/python-nmap/nmap/nmap.pyi +9 -1
  479. package/dist/typeshed-fallback/stubs/python-xlib/Xlib/display.pyi +2 -1
  480. package/dist/typeshed-fallback/stubs/python-xlib/Xlib/rdb.pyi +2 -1
  481. package/dist/typeshed-fallback/stubs/pytz/pytz/__init__.pyi +2 -1
  482. package/dist/typeshed-fallback/stubs/pywin32/METADATA.toml +3 -2
  483. package/dist/typeshed-fallback/stubs/pywin32/_win32typing.pyi +1 -1
  484. package/dist/typeshed-fallback/stubs/pywin32/pythoncom.pyi +2 -2
  485. package/dist/typeshed-fallback/stubs/pywin32/win32/lib/win32con.pyi +2 -0
  486. package/dist/typeshed-fallback/stubs/pywin32/win32/win32security.pyi +1 -1
  487. package/dist/typeshed-fallback/stubs/pywin32/win32com/client/__init__.pyi +8 -7
  488. package/dist/typeshed-fallback/stubs/pywin32/win32com/server/factory.pyi +9 -0
  489. package/dist/typeshed-fallback/stubs/pywin32/win32com/server/localserver.pyi +9 -0
  490. package/dist/typeshed-fallback/stubs/pywin32/win32com/server/register.pyi +68 -0
  491. package/dist/typeshed-fallback/stubs/pywin32/win32comext/propsys/pscon.pyi +1 -0
  492. package/dist/typeshed-fallback/stubs/regex/METADATA.toml +1 -1
  493. package/dist/typeshed-fallback/stubs/reportlab/reportlab/graphics/barcode/qr.pyi +3 -0
  494. package/dist/typeshed-fallback/stubs/reportlab/reportlab/graphics/shapes.pyi +11 -1
  495. package/dist/typeshed-fallback/stubs/reportlab/reportlab/lib/colors.pyi +3 -2
  496. package/dist/typeshed-fallback/stubs/reportlab/reportlab/lib/rparsexml.pyi +2 -0
  497. package/dist/typeshed-fallback/stubs/reportlab/reportlab/lib/utils.pyi +2 -1
  498. package/dist/typeshed-fallback/stubs/reportlab/reportlab/platypus/doctemplate.pyi +2 -1
  499. package/dist/typeshed-fallback/stubs/reportlab/reportlab/platypus/flowables.pyi +2 -1
  500. package/dist/typeshed-fallback/stubs/reportlab/reportlab/platypus/para.pyi +4 -1
  501. package/dist/typeshed-fallback/stubs/reportlab/reportlab/platypus/tableofcontents.pyi +3 -1
  502. package/dist/typeshed-fallback/stubs/requests/requests/adapters.pyi +3 -1
  503. package/dist/typeshed-fallback/stubs/requests/requests/help.pyi +7 -1
  504. package/dist/typeshed-fallback/stubs/requests/requests/sessions.pyi +2 -1
  505. package/dist/typeshed-fallback/stubs/requests-oauthlib/requests_oauthlib/oauth1_session.pyi +2 -1
  506. package/dist/typeshed-fallback/stubs/requests-oauthlib/requests_oauthlib/oauth2_session.pyi +5 -1
  507. package/dist/typeshed-fallback/stubs/seaborn/seaborn/_core/groupby.pyi +0 -1
  508. package/dist/typeshed-fallback/stubs/seaborn/seaborn/_stats/aggregation.pyi +1 -1
  509. package/dist/typeshed-fallback/stubs/seaborn/seaborn/distributions.pyi +2 -1
  510. package/dist/typeshed-fallback/stubs/seaborn/seaborn/external/kde.pyi +2 -1
  511. package/dist/typeshed-fallback/stubs/seaborn/seaborn/matrix.pyi +81 -58
  512. package/dist/typeshed-fallback/stubs/setuptools/METADATA.toml +1 -1
  513. package/dist/typeshed-fallback/stubs/setuptools/setuptools/command/editable_wheel.pyi +0 -1
  514. package/dist/typeshed-fallback/stubs/setuptools/setuptools/config/pyprojecttoml.pyi +0 -4
  515. package/dist/typeshed-fallback/stubs/shapely/shapely/__init__.pyi +1 -0
  516. package/dist/typeshed-fallback/stubs/shapely/shapely/_coverage.pyi +15 -0
  517. package/dist/typeshed-fallback/stubs/shapely/shapely/constructive.pyi +37 -26
  518. package/dist/typeshed-fallback/stubs/shapely/shapely/creation.pyi +23 -23
  519. package/dist/typeshed-fallback/stubs/shapely/shapely/decorators.pyi +2 -2
  520. package/dist/typeshed-fallback/stubs/shapely/shapely/geometry/base.pyi +4 -4
  521. package/dist/typeshed-fallback/stubs/shapely/shapely/io.pyi +14 -10
  522. package/dist/typeshed-fallback/stubs/shapely/shapely/lib.pyi +6 -6
  523. package/dist/typeshed-fallback/stubs/shapely/shapely/measurement.pyi +5 -5
  524. package/dist/typeshed-fallback/stubs/shapely/shapely/set_operations.pyi +4 -4
  525. package/dist/typeshed-fallback/stubs/shapely/shapely/vectorized/__init__.pyi +9 -0
  526. package/dist/typeshed-fallback/stubs/singledispatch/singledispatch.pyi +2 -1
  527. package/dist/typeshed-fallback/stubs/toposort/toposort.pyi +2 -1
  528. package/dist/typeshed-fallback/stubs/tqdm/tqdm/dask.pyi +2 -1
  529. package/dist/typeshed-fallback/stubs/tqdm/tqdm/rich.pyi +2 -1
  530. package/dist/typeshed-fallback/stubs/tqdm/tqdm/utils.pyi +2 -1
  531. package/dist/typeshed-fallback/stubs/translationstring/translationstring/__init__.pyi +7 -1
  532. package/dist/typeshed-fallback/stubs/uWSGI/METADATA.toml +1 -1
  533. package/dist/typeshed-fallback/stubs/uWSGI/uwsgi.pyi +2 -1
  534. package/dist/typeshed-fallback/stubs/waitress/METADATA.toml +1 -1
  535. package/dist/typeshed-fallback/stubs/watchpoints/watchpoints/watch.pyi +2 -1
  536. package/dist/typeshed-fallback/stubs/wurlitzer/wurlitzer.pyi +2 -1
  537. package/dist/typeshed-fallback/stubs/yt-dlp/METADATA.toml +3 -0
  538. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/YoutubeDL.pyi +126 -0
  539. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/__init__.pyi +256 -0
  540. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/aes.pyi +42 -0
  541. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/cache.pyi +21 -0
  542. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/compat/__init__.pyi +12 -0
  543. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/compat/compat_utils.pyi +21 -0
  544. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/compat/imghdr.pyi +3 -0
  545. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/cookies.pyi +104 -0
  546. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/__init__.pyi +31 -0
  547. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/bunnycdn.pyi +17 -0
  548. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/common.pyi +88 -0
  549. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/dash.pyi +8 -0
  550. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/external.pyi +62 -0
  551. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/f4m.pyi +32 -0
  552. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/fc2.pyi +3 -0
  553. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/fragment.pyi +37 -0
  554. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/hls.pyi +7 -0
  555. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/http.pyi +3 -0
  556. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/ism.pyi +29 -0
  557. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/mhtml.pyi +3 -0
  558. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/niconico.pyi +3 -0
  559. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/rtmp.pyi +5 -0
  560. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/rtsp.pyi +5 -0
  561. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/websocket.pyi +11 -0
  562. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/downloader/youtube_live_chat.pyi +9 -0
  563. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/extractor/__init__.pyi +8 -0
  564. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/extractor/common.pyi +862 -0
  565. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/extractor/commonmistakes.pyi +10 -0
  566. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/extractor/commonprotocols.pyi +10 -0
  567. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/globals.pyi +20 -0
  568. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/jsinterp.pyi +72 -0
  569. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/minicurses.pyi +23 -0
  570. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/networking/__init__.pyi +9 -0
  571. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/networking/_helper.pyi +47 -0
  572. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/networking/common.pyi +162 -0
  573. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/networking/exceptions.pyi +43 -0
  574. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/networking/impersonate.pyi +35 -0
  575. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/networking/websocket.pyi +11 -0
  576. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/options.pyi +16 -0
  577. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/plugins.pyi +45 -0
  578. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/postprocessor/__init__.pyi +7 -0
  579. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/postprocessor/common.pyi +38 -0
  580. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/socks.pyi +74 -0
  581. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/update.pyi +34 -0
  582. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/__init__.pyi +263 -0
  583. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/_legacy.pyi +125 -0
  584. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/_utils.pyi +728 -0
  585. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/jslib/__init__.pyi +0 -0
  586. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/jslib/devalue.pyi +9 -0
  587. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/networking.pyi +44 -0
  588. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/progress.pyi +22 -0
  589. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/traversal.pyi +88 -0
  590. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/version.pyi +6 -0
  591. package/dist/typeshed-fallback/stubs/yt-dlp/yt_dlp/webvtt.pyi +49 -0
  592. package/dist/typeshed-fallback/stubs/zxcvbn/zxcvbn/__init__.pyi +2 -1
  593. package/dist/typeshed-fallback/stubs/zxcvbn/zxcvbn/feedback.pyi +2 -1
  594. package/dist/typeshed-fallback/stubs/zxcvbn/zxcvbn/matching.pyi +4 -2
  595. package/dist/typeshed-fallback/stubs/zxcvbn/zxcvbn/scoring.pyi +2 -1
  596. package/dist/typeshed-fallback/stubs/zxcvbn/zxcvbn/time_estimates.pyi +4 -1
  597. package/package.json +1 -1
  598. package/dist/typeshed-fallback/stubs/beautifulsoup4/METADATA.toml +0 -9
  599. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/__init__.pyi +0 -82
  600. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/builder/__init__.pyi +0 -64
  601. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/builder/_html5lib.pyi +0 -76
  602. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/builder/_htmlparser.pyi +0 -34
  603. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/builder/_lxml.pyi +0 -45
  604. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/dammit.pyi +0 -85
  605. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/diagnose.pyi +0 -22
  606. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/element.pyi +0 -391
  607. package/dist/typeshed-fallback/stubs/beautifulsoup4/bs4/formatter.pyi +0 -50
  608. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/html4css1.pyi +0 -1
  609. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/html5_polyglot.pyi +0 -1
  610. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/latex2e.pyi +0 -19
  611. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/odf_odt.pyi +0 -1
  612. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/pep_html.pyi +0 -1
  613. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/s5_html.pyi +0 -1
  614. package/dist/typeshed-fallback/stubs/docutils/docutils/writers/xetex.pyi +0 -1
  615. package/dist/typeshed-fallback/stubs/paramiko/paramiko/_version.pyi +0 -2
  616. package/dist/typeshed-fallback/stubs/paramiko/paramiko/dsskey.pyi +0 -35

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.