summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* gh-121295: Fix blocked console after interrupting a long paste (GH-121815)Marta Gómez Macías2024-07-152-1/+11
* gh-121610: pyrepl - handle extending blocks when multi-statement blocks are p...saucoide2024-07-152-11/+123
* gh-121814: Only check f_trace_opcodes if Python frame exists (#121818)Tian Gao2024-07-152-1/+2
* gh-121605: Fix test hang when pyrepl is not available (GH-121820)Sam Gross2024-07-151-1/+1
* gh-121790: Fix interactive console initialization (#121793)Milan Oberkirch2024-07-156-42/+85
* gh-121794: Don't set `ob_tid` to zero in fast-path dealloc (#121799)Sam Gross2024-07-153-13/+62
* gh-117657: Skip tests that fork with threads under TSan (#121599)Sam Gross2024-07-151-0/+3
* gh-121245: Refactor site.register_readline() (GH-121659)Sergey B Kirpichev2024-07-153-36/+36
* gh-76785: Expand How Interpreter Channels Handle Interpreter Finalization (gh...Eric Snow2024-07-159-306/+898
* gh-121359: make clean environment (no PYTHON* vars) for test_pyrepl.TestMain ...Sergey B Kirpichev2024-07-151-0/+13
* gh-121546: Disable contextvar caching on free-threading build (GH-121740)Ken Jin2024-07-152-0/+16
* gh-76785: Expand How Interpreter Queues Handle Interpreter Finalization (gh-1...Eric Snow2024-07-153-90/+513
* gh-118297: Make Sure All Pending Calls Run in _Py_FinishPendingCalls() (gh-11...Eric Snow2024-07-151-6/+28
* gh-121746: Bind Alt+Enter to "accept" in the REPL (GH-121754)Rodrigo Girão Serrão2024-07-152-1/+2
* gh-121785: Remove unused code from codecs.py (GH-121787)Sebastian Rittau2024-07-151-15/+6
* gh-84978: Add float.from_number() and complex.from_number() (GH-26827)Serhiy Storchaka2024-07-1510-46/+242
* gh-117765: Improve documentation for `mocker.patch.dict` (#121755)Dominic H2024-07-153-2/+5
* fix outdated comments in asyncio (#121783)Kumar Aditya2024-07-153-5/+4
* gh-57141: Make shallow argument to filecmp.dircmp keyword-only (#121767)Jelle Zijlstra2024-07-144-4/+18
* Generalize reusable Windows CI jobs (#121766)Sviatoslav Sydorenko (Святослав Сидоренко)2024-07-142-45/+41
* gh-121731: Fix mimalloc compile error on GNU/Hurd (#121732)Samuel Thibault2024-07-142-0/+2
* gh-121621: Use PyMutex for writes to asyncio state (#121622)Ken Jin2024-07-141-1/+29
* gh-121660: Fix `ga_getitem` by explicitly checking for `NULL` result (#121661)sobolevn2024-07-141-0/+4
* Fix cache restoration for Hypothesis CI job (#121756)Sviatoslav Sydorenko (Святослав Сидоренко)2024-07-141-1/+1
* gh-121749: Fix discrepancy in docs for `PyModule_AddObjectRef` (GH-121750)Dominic H2024-07-142-1/+2
* gh-121698 Emscripten: Use updated WebAssembly type reflection proposal (GH-12...Hood Chatham2024-07-141-2/+12
* gh-121700 Emscripten trampolines not quite right since #106219 (GH-121701)Hood Chatham2024-07-141-7/+1
* gh-121562: optimized hex_from_char (#121563)Bruno Lima2024-07-142-62/+34
* gh-64308: Remove TestProgram from the unittest docs (GH-121675)Jan Musílek2024-07-141-2/+2
* gh-121708: Improve test coverage for `unittest.util` (GH-121713)Tomas R2024-07-141-0/+33
* gh-120642: Move _PyCode_CODE() to the internal C API (#121644)Victor Stinner2024-07-132-3/+3
* gh-73159 Added clarifications in multiprocessing docs on that objects are pic...Ulrik Södergren2024-07-131-0/+10
* gh-121651: Fix pdb header test (#121724)Tian Gao2024-07-131-0/+5
* gh-121652: Handle `allocate_weakref` returning NULL (#121653)Sam Gross2024-07-131-0/+7
* gh-121711: Set `-m asyncio` return_code to 1 for ENOTTY (#121714)Milan Oberkirch2024-07-132-4/+5
* gh-121657: Display correct error message for yield from outside of a function...Gregor2024-07-133-1/+8
* gh-120452: improve documentation about private name mangling (#120451)Bénédikt Tran2024-07-133-15/+69
* gh-120823: Fix doc for ftplib.FTP.retrbinary() (GH-121697)mirelagrigoras2024-07-131-1/+1
* gh-121605: Increase timeout in test_pyrepl.run_repl (#121606)Sam Gross2024-07-131-5/+8
* gh-121671: Increase test coverage of `ast.get_docstring` (GH-121674)Tomas R2024-07-131-0/+9
* gh-96765: Update ConfigParser.read() docs with multi-file read example (#121664)Timon Viola2024-07-131-14/+44
* gh-121499: Fix multi-line history rendering in the REPL (#121531)Pablo Galindo Salgado2024-07-135-0/+62
* gh-121609: Fix pasting of characters containing unicode character joiner (#12...Marta Gómez Macías2024-07-133-1/+7
* gh-121153: Fix some errors with use of _PyLong_CompactValue() (GH-121154)Serhiy Storchaka2024-07-132-15/+57
* gh-99242 Ignore error when running regression tests under certain conditions....Bas Bloemsaat2024-07-132-1/+7
* gh-121497: Make Pyrepl respect correctly the history with input hook set (#12...Pablo Galindo Salgado2024-07-132-2/+4
* gh-95144: Improve error message of `... in None` (GH-119888)Zachary Ware2024-07-124-5/+18
* Update retroactive comments from GH-117741 (segfault in `FutureIter_dealloc`)...Savannah Ostrowski2024-07-122-13/+10
* gh-121103: Put free-threaded libraries in `lib/python3.14t` (#121293)Sam Gross2024-07-1113-40/+77
* gh-117482: Fix Builtin Types Slot Wrappers (gh-121602)Eric Snow2024-07-114-10/+69