master
Commits on Apr 22, 2022
-
Annotate Error and Diagnostics (#7671)
Move cursor class to top of file so it can be used as base class
Commits on Apr 21, 2022
-
unittest.mock: target must be a str (#7672)
See [the CPython source](https://github.com/python/cpython/blob/eaa85cb22fa2d9e7cd31c2eac29a56cd3a8f2f65/Lib/unittest/mock.py#L1754). It calls `_get_target`, and [that](https://github.com/python/cpython/blob/eaa85cb22fa2d9e7cd31c2eac29a56cd3a8f2f65/Lib/unittest/mock.py#L1594) does `target.rsplit('.', 1)`.
-
Commits on Apr 20, 2022
-
Remove paramiko stubs from pytype_exclude_list. (#7669)
Pytype can parse these now.
-
-
-
Commits on Apr 18, 2022
-
-
-
hashlib: update for py311 (#7652)
Co-authored-by: Akuli <[email protected]>
-
Add one more
# noqa
to unblock PyCQA/flake8-pyi#213 (#7659)Missed one.
-
-
-
-
Commits on Apr 17, 2022
-
-
-
-
ast: add TryStar in py311 (#7646)
Co-authored-by: hauntsaninja <>
-
weakref: use positional-only args (#7653)
Co-authored-by: hauntsaninja <>
-
Commits on Apr 16, 2022
-
-
-
Add wsgiref.types (Python 3.11+) (#7644)
_typeshed.wsgi: Import from wsgiref.types in Python 3.11+ Make types match wsgiref.types
-
Read through the code in CPython and made the types more precise where possible. Co-authored-by: Sebastian Rittau <[email protected]>
-
Move code from
decimal.pyi
to_decimal.pyi
(#7640)* Move code from `decimal.pyi` to `_decimal.pyi` The stub previously did `from decimal import *` in `_decimal.pyi`, but the opposite happens at runtime.
-
-