summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-3115-113/+147
* bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698)Erlend Egeberg Aasland2022-03-3110-517/+402
* bpo-47164: Add _PyCFunctionObject_CAST() macr (GH-32190)Victor Stinner2022-03-311-6/+11
* bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)Victor Stinner2022-03-318-36/+57
* bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)Victor Stinner2022-03-318-78/+76
* bpo-47146: Avoid Using make Recursively (gh-32206)Eric Snow2022-03-312-10/+24
* bpo-46566: Make test_launcher more robust to a variety of installs (GH-32204)Steve Dower2022-03-301-6/+32
* bpo-47171: Enable installing the py.exe launcher on Windows ARM64 (GH-32203)Steve Dower2022-03-304-22/+10
* bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)Christian Heimes2022-03-308-18/+99
* Add CODEOWNERS entry for pathlib (GH-32202)Brett Cannon2022-03-301-0/+3
* bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (...Dong-hee Na2022-03-302-8/+4
* Replace with_traceback() with exception chaining and reraising (GH-32074)Oleg Iarygin2022-03-306-12/+16
* bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)Andrew Svetlov2022-03-304-2/+122
* Merge deoptimization blocks in interpreter (GH-32155)Mark Shannon2022-03-303-36/+28
* bpo-34861: Make cumtime the default sorting key for cProfile (GH-31929)Daniël van Noord2022-03-303-12/+14
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-3024-29/+28
* bpo-46864: Suppress even more ob_shash deprecation warnings (GH-32176)Christian Heimes2022-03-301-0/+5
* bpo-26120: do not exclude __future__ import in pydoc of the __future__ module...Irit Katriel2022-03-292-1/+18
* asyncio.Task: rename internal nested variable to don't hide another declarati...Andrew Svetlov2022-03-291-13/+13
* bpo-33178: Add BigEndianUnion, LittleEndianUnion classes to ctypes (GH-25480)Dave Goncalves2022-03-295-38/+118
* Update glossary.rst (GH-32093)Géry Ogam2022-03-291-8/+7
* bpo-42340: Document issues around KeyboardInterrupt (GH-23255)benfogle2022-03-293-0/+82
* bpo-14265: Adds fully qualified test name to unittest output (GH-32138)Sam Ezeh2022-03-295-49/+63
* bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)Ma Lin2022-03-295-19/+152
* bpo-47053: Refactor BINARY_OP_INPLACE_ADD_UNICODE (GH-32122)Dennis Sweeney2022-03-291-14/+18
* bpo-46566: Add new py.exe launcher implementation (GH-32062)Steve Dower2022-03-2810-16/+2821
* bpo-27929: resolve names only for AF_INET/AF_INET6 with asyncio (GH-32131)Vincent Bernat2022-03-282-1/+5
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-283-11/+35
* bpo-26120: make pydoc exclude __future__ imports from the data block of the m...Irit Katriel2022-03-283-0/+10
* bpo-47146: Eliminate a race between make regen-deepfreeze and make regen-glob...Eric Snow2022-03-281-7/+8
* bpo-47138: Ensure Windows docs build uses the same pinned version as other pl...Steve Dower2022-03-281-1/+3
* Fix typo in the sqlite3 docs (GH-31915)Jonathan2022-03-281-1/+1
* bpo-47070: Add _PyBytes_Repeat() (GH-31999)Pieter Eendebak2022-03-286-103/+81
* bpo-28516: document contextlib.ExitStack.__enter__ behavior (GH-31636)vidhya2022-03-281-0/+3
* ctypes docs: Fix array-length reference to "non-negative" from "positive" (GH...Yonatan Goldschmidt2022-03-281-1/+1
* bpo-44493: Add missing terminated NUL in sockaddr_un's length (GH-26866)ty2022-03-272-1/+9
* bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)Kumar Aditya2022-03-276-37/+77
* bpo-46429: tweak deepfreeze output (#32107)Kumar Aditya2022-03-271-0/+6
* bpo-45171: Remove tests of deprecated logger.warn(). (GH-32139)Jouke Witteveen2022-03-272-4/+1
* bpo-45171: Fix stacklevel handling in logging. (GH-28287)Jouke Witteveen2022-03-273-33/+51
* bpo-47098: Replace Keccak Code Package with tiny_sha3 (GH-32060)Christian Heimes2022-03-2625-5634/+346
* bpo-47095: Use libb2 to provide blake2 implementation (GH-32059)Christian Heimes2022-03-2619-17791/+149
* bpo-47116: use _PyLong_FromUnsignedChar instead of PyLong_FromLong (GH-32110)Pieter Eendebak2022-03-262-5/+5
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-2612-2128/+3056
* bpo-47117: Don't crash if we fail to decode characters when the tokenizer buf...Pablo Galindo Salgado2022-03-262-2/+9
* bpo-47105: Cite grp.h instead of pwd.h in grp docs (GH-32091)Alex Hedges2022-03-261-1/+1
* bpo-47062: Rename factory argument to loop_factory (GH-32113)Andrew Svetlov2022-03-253-8/+8
* bpo-43352: Add a Barrier object in asyncio lib (GH-24903)Duprat2022-03-256-5/+856
* bpo-47118: Fix asyncio.Runner tests error (32117)Andrew Svetlov2022-03-251-1/+1
* Fix some typos in whatsnew (GH-32098)Kurt McKee2022-03-251-4/+4