summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-47182: Fix crash by named unicode characters after interpreter reinitiali...Christian Heimes2022-03-311-0/+2
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-311-0/+2
* bpo-47171: Enable installing the py.exe launcher on Windows ARM64 (GH-32203)Steve Dower2022-03-301-0/+1
* bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)Christian Heimes2022-03-301-0/+4
* bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (...Dong-hee Na2022-03-301-0/+3
* Replace with_traceback() with exception chaining and reraising (GH-32074)Oleg Iarygin2022-03-302-0/+8
* bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)Andrew Svetlov2022-03-301-0/+1
* bpo-34861: Make cumtime the default sorting key for cProfile (GH-31929)Daniël van Noord2022-03-301-0/+1
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-301-0/+1
* bpo-33178: Add BigEndianUnion, LittleEndianUnion classes to ctypes (GH-25480)Dave Goncalves2022-03-291-0/+1
* bpo-42340: Document issues around KeyboardInterrupt (GH-23255)benfogle2022-03-291-0/+3
* bpo-14265: Adds fully qualified test name to unittest output (GH-32138)Sam Ezeh2022-03-292-0/+2
* bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)Ma Lin2022-03-291-0/+2
* bpo-46566: Add new py.exe launcher implementation (GH-32062)Steve Dower2022-03-281-0/+6
* bpo-27929: resolve names only for AF_INET/AF_INET6 with asyncio (GH-32131)Vincent Bernat2022-03-281-0/+3
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-281-0/+1
* bpo-26120: make pydoc exclude __future__ imports from the data block of the m...Irit Katriel2022-03-281-0/+1
* bpo-47070: Add _PyBytes_Repeat() (GH-31999)Pieter Eendebak2022-03-281-0/+3
* bpo-44493: Add missing terminated NUL in sockaddr_un's length (GH-26866)ty2022-03-271-0/+3
* bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)Kumar Aditya2022-03-271-0/+1
* bpo-45171: Fix stacklevel handling in logging. (GH-28287)Jouke Witteveen2022-03-271-0/+4
* bpo-47098: Replace Keccak Code Package with tiny_sha3 (GH-32060)Christian Heimes2022-03-261-0/+3
* bpo-47095: Use libb2 to provide blake2 implementation (GH-32059)Christian Heimes2022-03-261-0/+2
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-261-0/+1
* bpo-47117: Don't crash if we fail to decode characters when the tokenizer buf...Pablo Galindo Salgado2022-03-261-0/+2
* bpo-43352: Add a Barrier object in asyncio lib (GH-24903)Duprat2022-03-251-0/+1
* bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)Dennis Sweeney2022-03-251-0/+1
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-0/+2
* bpo-40280: Add wasm32-emscripten and wasm32-wasi SOABI (GH-32095)Christian Heimes2022-03-241-0/+2
* bpo-47062: Implement asyncio.Runner context manager (GH-31799)Andrew Svetlov2022-03-241-0/+1
* bpo-47104: Rewrite asyncio.to_thread tests to use IsolatedAsyncioTestCase (GH...Andrew Svetlov2022-03-231-0/+2
* bpo-47101: list only activated algorithms in hashlib.algorithms_available (GH...Christian Heimes2022-03-231-0/+4
* bpo-31582: Created a new documentation section describing sys.path initializa...Russel Webber2022-03-231-0/+1
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-231-0/+2
* bpo-47012: speed up iteration of bytes and bytearray (GH-31867)Kumar Aditya2022-03-231-0/+1
* bpo-2604: Make doctest.DocTestCase reset globs in teardown (GH-31932)Daniël van Noord2022-03-221-0/+1
* bpo-42885: Optimize search for regular expressions starting with "\A" or "^" ...Serhiy Storchaka2022-03-221-0/+3
* bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910)Andrew Svetlov2022-03-221-0/+1
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-221-0/+3
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-221-0/+2
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+2
* bpo-28080: Add support for the fallback encoding in ZIP files (GH-32007)Serhiy Storchaka2022-03-221-0/+4
* bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documenta...Serhiy Storchaka2022-03-221-1/+1
* bpo-45150: Add hashlib.file_digest() for efficient file hashing (GH-31930)Christian Heimes2022-03-221-0/+1
* bpo-47086: Remove .chm from Windows installer and add HTML docs (GH-32038)Steve Dower2022-03-221-0/+2
* bpo-47061: document module deprecations due to PEP 594 (GH-31984)Brett Cannon2022-03-211-0/+5
* bpo-47067: Optimize calling GenericAlias objects (GH-31996)penguin_wwy2022-03-211-0/+1
* bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)Serhiy Storchaka2022-03-212-0/+3
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-211-0/+2
* bpo-23691: Protect the re.finditer() iterator from re-entering (GH-32012)Serhiy Storchaka2022-03-211-0/+1