summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-105375: Improve error handling in _elementtree (GH-105591) (#105600)Miss Islington (bot)2023-06-092-3/+8
* [3.12] gh-105375: Improve errnomodule error handling (#105590) (#105596)Erlend E. Aasland2023-06-092-2/+6
* [3.12] gh-105375: Improve _pickle error handling (#105475) (#105584)Erlend E. Aasland2023-06-092-12/+28
* [3.12] gh-105375: Improve error handling in compiler_enter_scope() (GH-105494...Miss Islington (bot)2023-06-092-1/+6
* [3.12] gh-105557: Remove duplicate sqlite3 test method (GH-105558) (#105561)Miss Islington (bot)2023-06-091-7/+2
* [3.12] gh-105564: Don't include artificial newlines in the line attribute of ...Miss Islington (bot)2023-06-093-8/+13
* [3.12] Clarify the supported cases in the tokenize module (GH-105569) (#105573)Miss Islington (bot)2023-06-091-0/+9
* [3.12] Miscellaneous improvements to the typing docs (GH-105529) (#105567)Miss Islington (bot)2023-06-093-145/+229
* [3.12] gh-102304: Fix Py_INCREF() for limited C API 3.9 (#105553)Victor Stinner2023-06-092-11/+14
* [3.12] gh-105332: [Enum] Fix unpickling flags in edge-cases (GH-105348) (GH-1...Miss Islington (bot)2023-06-094-23/+47
* [3.12] CI: Configure macOS build as per updated devguide recommendations (GH-...Miss Islington (bot)2023-06-081-3/+2
* [3.12] gh-100227: Lock Around Modification of the Global Allocators State (gh...Miss Islington (bot)2023-06-085-227/+357
* [3.12] gh-102832: IDLE - update stackviewer open (GH-105528) (#105534)Miss Islington (bot)2023-06-081-2/+2
* [3.12] gh-102832: IDLE - remove use of deprecated sys.last_xyzs for stackview...Miss Islington (bot)2023-06-084-52/+22
* [3.12] gh-100227: Lock Around Adding Global Audit Hooks (gh-105515) (gh-105525)Eric Snow2023-06-084-1287/+1321
* [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