summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* gh-121621: Move asyncio_running_loop to private struct (#121939)Sam Gross2024-07-174-8/+8
* Add note about PYTHON_JIT environment variable to JIT README (GH-121635)Savannah Ostrowski2024-07-171-2/+6
* gh-121266: Change dict check_lookup() return type to int (#121581)Victor Stinner2024-07-171-11/+11
* gh-121528: Fix _PyObject_Init() assertion for stable ABI (#121725)Victor Stinner2024-07-171-2/+26
* gh-121925: Fix uninitialized variables in `main.c` (#121926)sobolevn2024-07-171-2/+6
* gh-120678: Guard against stdin.fileno() being unavailable (#121924)Łukasz Langa2024-07-171-6/+14
* gh-120678: pyrepl: Include globals from modules passed with `-i` (GH-120904)Alex Waygood2024-07-176-11/+178
* gh-78889: Stop IDLE Shell freezes from sys.stdout.shell.xyz (#121876)Terry Jan Reedy2024-07-173-0/+8
* gh-119698: fix a special case in `symtable.Class.get_methods` (#121802)Bénédikt Tran2024-07-172-2/+68
* gh-121863: Immortalize names in code objects to avoid crash (GH-121903)Petr Viktorin2024-07-172-1/+25
* gh-121849: Fix PyUnicodeWriter_WriteSubstring() crash if len=0 (#121896)Victor Stinner2024-07-172-12/+17
* Remove duplicate "it" in whatsnew 3.13 (#121580)Rafael Fontenelle2024-07-171-1/+1
* Fix Several Typos in Readme & Tests (#121559)Michael2024-07-172-4/+4
* gh-121834: Improve `complex` C-API docs (#121835)sobolevn2024-07-171-9/+22
* gh-121842: Improve coverage of `PyBytes_FromStringAndSize` (#121843)sobolevn2024-07-171-0/+2
* gh-121453: Update the `Doc/templates/download.html` download files size estim...Wulian2332024-07-171-10/+14
* gh-121871: Allow overriding docs build date with SOURCE_DATE_EPOCH (#121872)Bernhard M. Wiedemann2024-07-171-1/+2
* GH-121583: Remove dependency from pystats.h to internal header file (GH-121587)Michael Droettboom2024-07-162-5/+9
* gh-83648: Use versionadded in 'deprecated' description (GH-121877)Zachary Ware2024-07-161-1/+1
* GH-120371: Add WASI SDK 22 support (GH-121870)Brett Cannon2024-07-164-2/+12
* gh-118934: Make PyEval_GetLocals return borrowed reference (#119769)Tian Gao2024-07-165-2/+42
* gh-121860: Fix crash when materializing managed dict (#121866)Sam Gross2024-07-163-5/+31
* gh-121130: Fix f-string format specifiers with debug expressions (#121150)Pablo Galindo Salgado2024-07-168-31/+75
* gh-121621: Move asyncio running loop to thread state (GH-121695)Ken Jin2024-07-167-111/+18
* gh-59022: Added tests for `pkgutil.extend_path` (#59022) (GH-121673)Andreas Stocker2024-07-163-4/+41
* gh-121160: Add some tests for readline.set_history_length (GH-121326)Petr Viktorin2024-07-162-0/+48
* gh-113993: Don't immortalize in PyUnicode_InternInPlace; keep immortalizing i...Petr Viktorin2024-07-166-10/+82
* GH-105879: Note exec/eval keyword change in What's New (GH-121831)Alyssa Coghlan2024-07-161-0/+4
* gh-113993: For string interning, do not rely on (or assert) _Py_IsImmortal (G...Petr Viktorin2024-07-162-7/+10
* 🧪🚑 Fix using `check_source` flags as bool (#121848)Sviatoslav Sydorenko (Святослав Сидоренко)2024-07-162-5/+25
* gh-120522: Revert "Add a `--with-app-store-compliance` configure option to pa...Ned Deily2024-07-169-238/+2
* gh-120317: Lock around global state in the tokenize module (#120318)Lysandros Nikolaou2024-07-162-43/+129
* gh-121791: Check for `NULL` in `MethodDescriptor2_new` in `_testcapi` (#121792)sobolevn2024-07-161-0/+3
* gh-85453: Fix 'timezone' vs. 'time zone' spelling issues in datetime.rst (#11...edson duarte2024-07-161-24/+24
* gh-120831: Increase the default minimum supported iOS version to 13.0 (#121250)Russell Keith-Magee2024-07-165-5/+23
* gh-121403: Add notes for PyList_GetXXX APIs about the need for init (gh-121626)Donghee Na2024-07-161-3/+6
* 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