summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-100227: Lock Around Use of the Global "atexit" State (gh-105514) (g...Miss Islington (bot)2023-06-084-450/+481
* [3.12] gh-104310: Rename the New Function in importlib.util (gh-105255) (gh-1...Miss Islington (bot)2023-06-083-18/+41
* [3.12] test_types: Replace raw assert statements (GH-105500) (#105507)Miss Islington (bot)2023-06-081-25/+27
* [3.12] Further improve docs for `typing.Annotated` (GH-105498) (#105503)Miss Islington (bot)2023-06-082-61/+85
* [3.12] gh-105431: Remove unused stuff from `test_typing.NewTypeTests` (GH-105...Miss Islington (bot)2023-06-081-7/+0
* [3.12] GH-104996: Defer joining of `pathlib.PurePath()` arguments. (GH-104999...Barney Gale2023-06-072-14/+26
* [3.12] gh-103171: Forward-port new tests for runtime-checkable protocols deco...Miss Islington (bot)2023-06-071-0/+65
* [3.12] gh-105390: Add explicit type cast (GH-105466) (#105472)Miss Islington (bot)2023-06-071-1/+2
* [3.12] gh-94673: Ensure subtypes are readied only once in math.trunc() (gh-10...Miss Islington (bot)2023-06-071-1/+1
* [3.12] gh-90015: Document that PEP-604 unions do not support forward referenc...Miss Islington (bot)2023-06-071-0/+8
* [3.12] Fix grammar and improve clarity for an deprecation message. (GH-105457...Miss Islington (bot)2023-06-071-2/+2
* [3.12] typing: Improve documentation of generic classes and aliases (GH-10536...Miss Islington (bot)2023-06-072-65/+91
* [3.12] gh-105437: Improve tests of type params names for PEP 695 (GH-105438) ...Miss Islington (bot)2023-06-072-4/+12
* [3.12] gh-105430: Remove `typing._Immutable` unused internal helper (GH-10543...Miss Islington (bot)2023-06-071-11/+0
* [3.12] gh-97797: Improve documentation for typing.Annotated (GH-105365) (#105...Miss Islington (bot)2023-06-071-19/+54
* [3.12] Improve docs for `typing.TypeAlias` (GH-105372) (#105446)Miss Islington (bot)2023-06-071-4/+26
* [3.12] gh-105435: Fix spurious NEWLINE token if file ends with comment withou...Miss Islington (bot)2023-06-073-5/+39
* [3.12] gh-105375: Improve error handling in sqlite3 collation callback (GH-10...Miss Islington (bot)2023-06-072-3/+7
* [3.12] gh-105390: Correctly raise TokenError instead of SyntaxError for token...Miss Islington (bot)2023-06-076-24/+35
* [3.12] gh-89886: Use Autoconf quadrigraphs where appropriate (#105226) (#105423)Erlend E. Aasland2023-06-071-44/+44
* [3.12] Improve code examples in `typing.rst` (GH-105346) (#105422)Miss Islington (bot)2023-06-071-30/+75
* [3.12] typing docs: Make the PEPs list an expandable section, hidden by defau...Miss Islington (bot)2023-06-071-1/+11
* [3.12] GH-95088: Clarify rules for parsing an item key for format strings (GH...Miss Islington (bot)2023-06-071-1/+3
* [3.12] `typing.NewType` docs: the future performance improvements are now in ...Miss Islington (bot)2023-06-071-3/+7
* [3.12] gh-105286: Further improvements to `typing.py` docstrings (GH-105363) ...Miss Islington (bot)2023-06-071-25/+43
* Merge branch '3.12' of https://github.com/python/cpython into 3.12Thomas Wouters2023-06-0613-83/+53
|\
| * gh-92658: Fix typo in docs and tests for `HV_GUID_PARENT` (GH-105267)Miss Islington (bot)2023-06-062-2/+2
| * [3.12] sliding_window() recipe: Raise ValueError for non-positive window siz...Miss Islington (bot)2023-06-061-3/+27
| * [3.12] gh-94172: Update keyfile removal documentation (GH-105392) (#105402)Miss Islington (bot)2023-06-065-51/+7
| * [3.12] gh-102304: Fix Py_INCREF() stable ABI in debug mode (#104763) (#105352)Victor Stinner2023-06-065-27/+17
* | Post 3.12.0b2Thomas Wouters2023-06-061-1/+1
* | Python 3.12.0b2v3.12.0b2Thomas Wouters2023-06-0654-234/+1207
|/
* [3.12] GH-105162: Account for `INSTRUMENTED_RESUME` in gen.close/throw. (GH-1...Miss Islington (bot)2023-06-063-3/+52
* [3.12] gh-104411: Update test_getint for Tcl 9.0 (GH-104412) (#105356)Miss Islington (bot)2023-06-061-1/+4
* [3.12] gh-104399: Use newer libtommath APIs when necessary (GH-104407) (#105343)Miss Islington (bot)2023-06-062-2/+25
* [3.12] gh-102304: doc: Add links to Stable ABI and Limited C API (#105345) (#...Victor Stinner2023-06-0616-42/+53
* [3.12] gh-105259: Ensure we don't show newline characters for trailing NEWLIN...Miss Islington (bot)2023-06-065-5/+17
* [3.12] gh-90005: Don't link with libbsd if not needed (#105236) (#105360)Erlend E. Aasland2023-06-063-5/+9
* [3.12] gh-105324: Fix tokenize module main function for stdin (GH-105325) (#1...Miss Islington (bot)2023-06-052-2/+3
* [3.12] gh-89412: Add missing attributes (added in 3.10) to traceback module d...Miss Islington (bot)2023-06-053-2/+18
* [3.12] gh-97908: CAPI docs: Remove repeated struct names from member docs (GH...Miss Islington (bot)2023-06-052-8/+23
* [3.12] What's New in 3.12: List 'Improved Modules' alphabetically (GH-105315)...Hugo van Kemenade2023-06-051-107/+107
* [3.12] Clarify that error messages are better with PEP 701 (GH-105150) (#105169)Miss Islington (bot)2023-06-051-0/+25
* [3.12] gh-105286: Improve `typing.py` docstrings (#105287) (#105319)Alex Waygood2023-06-051-220/+253
* [3.12] gh-105280: Ensure `isinstance([], collections.abc.Mapping)` always eva...Miss Islington (bot)2023-06-053-8/+38
* [3.12] gh-105237: Allow calling `issubclass(X, typing.Protocol)` again (GH-10...Miss Islington (bot)2023-06-053-0/+65
* [3.12] gh-105164: Detect annotations inside match blocks (GH-105177) (#105313)Miss Islington (bot)2023-06-053-0/+123
* [3.12] gh-98963: Restore the ability to have a dict-less property. (GH-105262...Miss Islington (bot)2023-06-053-13/+97
* [3.12] gh-104882: Docs: fix description of relationship between `socket.getbl...Miss Islington (bot)2023-06-041-1/+1
* [3.12] Fix typo in Python 3.12 What's New (GH-105278) (#105282)Miss Islington (bot)2023-06-041-2/+2