Commit Graph

6597 Commits

Author SHA1 Message Date
Shantanu
ffb25d964c deprecated: complete stubs (#8169)
Co-authored-by: hauntsaninja <>
2022-06-26 10:30:22 +01:00
Shantanu
634f18f615 emoji: complete stubs (#8170)
Co-authored-by: hauntsaninja <>
2022-06-26 08:58:00 +01:00
Shantanu
b6379e7c7a Check missing definitions for several packages (#8167)
Co-authored-by: hauntsaninja <>
2022-06-26 08:56:18 +01:00
Anders Kaseorg
9ff393558a Markdown: Fix BlockProcessor method return types (#8166)
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2022-06-26 11:30:39 +05:30
Alex Waygood
f812d71ffa Improve errno stubs on Windows and MacOS (#8142) 2022-06-26 08:29:02 +05:30
Shantanu
288c6ac447 Bump jsonschema to 4.6.* (#8161)
Co-authored-by: AlexWaygood <alex.waygood@gmail.com>
2022-06-26 08:18:41 +05:30
Shantanu
d975734b8b Bump regex to 2022.6.2 (#8162)
Co-authored-by: AlexWaygood <alex.waygood@gmail.com>
2022-06-26 08:18:01 +05:30
Alex Waygood
ca2f83a4cf typing_extensions: harmonise __all__ with __all__ at runtime (#8165) 2022-06-25 19:16:23 -07:00
Alex Waygood
f5f37fed3a Upgrade pytype (#8164) 2022-06-25 18:15:43 +01:00
Shantanu
98882d3cbe PyYAML: check missing defs (#8159) 2022-06-25 18:05:23 +01:00
Shantanu
9113e16c0c [stubsabot] Bump pycurl to 7.45.* (#8163)
Co-authored-by: hauntsaninja <>
2022-06-25 18:02:59 +01:00
Shantanu
a9fb8c5119 stubsabot: add project links (#8158)
See https://github.com/python/typeshed/pull/8157 for an example
2022-06-25 06:42:48 -07:00
Shantanu
564347b04e chardet: improve stubs (#8155) 2022-06-25 06:40:58 -07:00
Shantanu
14628b519a [stubsabot] Bump entrypoints to 0.4.* (#8157)
Co-authored-by: hauntsaninja <>
2022-06-25 08:25:38 +01:00
Shantanu
22532ba504 dj-database-url, docopt, editdistance, first: check missing defs (#8154) 2022-06-25 08:16:59 +01:00
Shantanu
74687b1fa0 ujson, pyfarmhash, toposort: check for missing definitions (#8153)
Co-authored-by: hauntsaninja <>
2022-06-25 08:15:44 +01:00
Shantanu
8b422ff01d appdirs, tabulate, termcolor, xmltodict: check missing defs (#8156)
complete termcolor, xmltodict
2022-06-25 08:09:25 +01:00
Shantanu
4415e9cc0b [stubsabot] Bump requests to 2.28.* (#8152)
Co-authored-by: hauntsaninja <>
2022-06-25 12:01:22 +05:30
Shantanu
6021a9ec6b [stubsabot] Bump flake8-bugbear to 22.6.22 (#8151)
Co-authored-by: hauntsaninja <>
2022-06-25 12:01:16 +05:30
Shantanu
4f5d6743f5 [stubsabot] Bump chardet to 5.0.* (#8150)
Co-authored-by: hauntsaninja <>
2022-06-25 12:01:06 +05:30
Alex Waygood
b550d463c7 Fix stubtest failures on SQLAlchemy (#8148) 2022-06-25 11:34:47 +05:30
Eric Werner
ec64372348 re-export HTTPError in urllib.request (#8146)
See cpython/#94204
2022-06-24 16:37:09 +02:00
Alex Waygood
64d91ef414 mypy_test.py: Add command-line argument to enable selecting which parts of the test to run (#8143) 2022-06-23 10:21:32 -07:00
Pierre-Marie de Rodat
6a5abd38cf Various fixes in gdb (#8144)
* gdb.events.BreakpointEvent: fix various typos

* gdb.printing: remove GenPrinterFunction

This was meant to be a private type alias, but it is unused and a
duplicate of the better named gdb._PrettyPrinterLookupFunction.
2022-06-23 14:03:03 +01:00
Nikita Sobolev
780269823b Improve redis/asyncio/client.pyi (#8141) 2022-06-23 11:52:56 +01:00
Rohit Patil
d96581ec0f stdlib.xml: re-export ContentHandler & ErrorHandler (#8140)
fixes python/typeshed#8107
2022-06-22 21:22:33 +01:00
Alex Waygood
610d2908bd mypy_test.py: Allow passing in multiple platforms from the command line (#8138) 2022-06-22 20:13:01 +01:00
Alex Waygood
15a17d1301 mypy_test.py: Add argument validation, improve type hints (#8135) 2022-06-22 18:03:29 +01:00
Alex Waygood
09141ec3dc mypy_test.py: Fix argument-parsing for --python-version (#8134)
* mypy_test.py: Fix argument-parsing for `--python-version`

* Bump min version required in the README
2022-06-22 15:08:56 +01:00
Alex Waygood
a527bf27d5 Run mypy on the scripts directory in CI (#8133) 2022-06-22 14:13:38 +01:00
Alex Waygood
89f4dee452 Improve several __hash__ methods (#8128) 2022-06-22 11:58:00 +01:00
Sebastian Rittau
9eed3275c3 tabulate: Add maxcolwidths arguments (#8132) 2022-06-22 11:48:48 +01:00
Alex Waygood
8826d3a36f Rename some confusingly named type aliases (#8129) 2022-06-21 20:51:05 +01:00
Theo Belaire
73ec67587c Replace str with bytes for imaplib append and ParseFlags (#8130)
Last Argument of APPEND
https://github.com/python/cpython/blob/main/Lib/imaplib.py#L1497
https://github.com/python/cpython/blob/main/Lib/imaplib.py#L413
You can see it's parsed with the bytes regex MapCLRF re.compile(br'\r\n|\r|\n')

https://github.com/python/cpython/blob/main/Lib/imaplib.py#L1497
You can see it's parsed with the bytes regex Flags
re.compile(br'.*FLAGS \((?P<flags>[^\)]*)\)')
2022-06-21 12:16:36 -07:00
Alex Waygood
3fe1f5d6c4 requests, regex: use re-exports instead of assignments in a few places (#8127) 2022-06-21 08:20:13 -07:00
Alex Waygood
67f377898b Add process_group argument to subprocess.{run, call, check_call, check_output} (#8125) 2022-06-21 07:44:20 -07:00
Alex Waygood
0740d1c48e asyncio.gather: Add overload for if no positional arguments are provided (#8126) 2022-06-21 15:31:40 +01:00
Alex Waygood
a01e0260b3 Add pipesize argument to subprocess.{run, call, check_call, check_output} (#8124) 2022-06-21 05:59:26 -07:00
Alex Waygood
cad42c7c7b asyncio.gather: Remove default values for return_exceptions: bool overloads (#8123) 2022-06-21 05:57:06 -07:00
Shantanu
305f10b808 stubtest: per project --ignore-missing-stub (#8122) 2022-06-21 05:52:24 -07:00
Alex Waygood
f9e24680c3 Add new-in-3.9 parameters to subprocess.{run, call, check_call, check_output} (#8071) 2022-06-21 04:35:50 -07:00
Sebastian Rittau
678c231e5b Add types for zxcvbn (#8089) 2022-06-21 04:34:48 -07:00
Shantanu
7ee3b5672c Update cachetools to 5.2.* (#8119) 2022-06-21 09:02:00 +02:00
Shantanu
b36c7705a7 [stubsabot] Bump pytz to 2022.1 (#8121)
Co-authored-by: hauntsaninja <>
2022-06-20 22:16:45 -07:00
Shantanu
ec33d7ba87 [stubsabot] Bump editdistance to 0.6.* (#8120)
Co-authored-by: hauntsaninja <>
2022-06-20 22:16:34 -07:00
Shantanu
a1323510f3 Bump parsimonious to 0.9.* (#8117) 2022-06-20 21:38:52 -07:00
Shantanu
6c63c323ae [stubsabot] Bump humanfriendly to 10.0.* (#8118)
Co-authored-by: hauntsaninja <>
2022-06-20 21:37:42 -07:00
Shantanu
58d486978e Bump mysqlclient to 2.1.* (#8116) 2022-06-20 21:36:21 -07:00
Shantanu
432fc3ff00 Bump invoke to 1.7.* (#8111) 2022-06-20 21:06:53 -07:00
Shantanu
05ac6a7215 Bump waitress to 2.1.* (#8113) 2022-06-20 21:06:15 -07:00