summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* [3.13] gh-125235: Keep `_tkinter` TCL paths pointing to base installation on ...Miss Islington (bot)2024-10-111-1/+1
* [3.13] gh-124969: Fix locale.nl_langinfo(locale.ALT_DIGITS) (GH-124974) (#125...Serhiy Storchaka2024-10-101-1/+28
* [3.13] gh-125118: don't copy arbitrary values to _Bool in the struct module (...Sergey B Kirpichev2024-10-101-3/+2
* [3.13] Tee of tee was not producing n independent iterators (gh-123884) (gh-1...Raymond Hettinger2024-10-081-27/+10
* [3.13] gh-117721: use PyMutex in `_thread.lock` (#125110) (#125116)Kumar Aditya2024-10-081-44/+10
* [3.13] gh-102511: Change the `os.path.splitroot` param name from `path` back ...Jelle Zijlstra2024-10-082-6/+6
* [3.13] gh-120378: Fix crash caused by integer overflow in `curses` (GH-124555...Miss Islington (bot)2024-10-072-27/+87
* [3.13] gh-116810: fix memory leak in ssl module (GH-123249) (#124800)Miss Islington (bot)2024-10-071-63/+13
* [3.13] Fix typos (#123775) (#123866)Victor Stinner2024-10-071-2/+2
* [3.13] GH-124567: Revert the Incremental GC in 3.13 (#124770)T. Wouters2024-09-301-10/+15
* [3.13] gh-123836: workaround fmod(x, y) bug on Windows (GH-124171) (#124187)Sergey B Kirpichev2024-09-301-0/+9
* [3.13] gh-123797: Check for runtime availability of `ptsname_r` on macos (GH-...Miss Islington (bot)2024-09-301-10/+36
* [3.13] gh-124248: Fix crash in struct when processing 0p fields (GH-124251) (...Miss Islington (bot)2024-09-301-4/+15
* [3.13] gh-123017: Add Android to the list of platforms where `strftime` doesn...Miss Islington (bot)2024-09-271-1/+6
* [3.13] gh-123014: Disable pidfd API on older Android versions (GH-124458) (#1...Malcolm Smith2024-09-264-8/+13
* [3.13] gh-121023: Improve `_xxtestfuzz/README.rst` (GH-121024) (#124140)Miss Islington (bot)2024-09-241-3/+5
* [3.13] gh-123880: Allow recursive import of single-phase-init modules (GH-123...Miss Islington (bot)2024-09-231-2/+61
* [3.13] gh-123657: Fix crash and refleak in `decimal.getcontext()` (GH-123703)...Miss Islington (bot)2024-09-061-10/+16
* [3.13] gh-123678: Upgrade libexpat 2.6.3 (GH-123689) (GH-123707)Miss Islington (bot)2024-09-053-15/+35
* [3.13] gh-123091: Use more _Py_IsImmortalLoose() (GH-123602) (GH-123622)Petr Viktorin2024-09-031-1/+1
* [3.13] gh-123431: Harmonize extension code checks in pickle (GH-123434) (#123...Miss Islington (bot)2024-09-021-21/+11
* [3.13] gh-111495: Add tests for PyNumber C API (GH-111996) (#123375)Miss Islington (bot)2024-09-021-0/+161
* [3.13] gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment t...Miss Islington (bot)2024-09-021-10/+2
* [3.13] gh-122688: Fix support of var-positional parameter in Argument Clinic ...Serhiy Storchaka2024-09-022-57/+94
* [3.13] gh-100256: Skip inaccessible registry keys in the WinAPI mimetype impl...Miss Islington (bot)2024-09-021-1/+1
* [3.13] gh-123448: Move `_PyNoDefault_Type` to the static types array (GH-1234...Miss Islington (bot)2024-08-291-3/+0
* [3.13] gh-111495: Add tests for PyTuple C API (GH-118757) (GH-123371)Sergey B Kirpichev2024-08-275-2/+249
* [3.13] gh-123243: Fix reference leak in `_decimal` (GH-123244) (#123280)Miss Islington (bot)2024-08-241-2/+24
* [3.13] gh-122081: fixed crash in decimal.IEEEContext() (GH-122082) (#123136)Miss Islington (bot)2024-08-191-2/+2
* [3.13] gh-116622: Don't expose `FICLONE` ioctl on Android (GH-122522) (#122539)Miss Islington (bot)2024-08-161-0/+5
* [3.13] gh-116622: Rename build variable MODULE_LDFLAGS back to LIBPYTHON (GH-...Miss Islington (bot)2024-08-091-1/+1
* [3.13] gh-122695: Fix double-free when using `gc.get_referents` with a freed ...Peter Bierma2024-08-091-11/+0
* [3.13] gh-118814: Fix the TypeVar constructor when name is passed by keyword ...Serhiy Storchaka2024-08-082-1/+93
* [3.13] gh-122728: Fix SystemError in PyEval_GetLocals() (GH-122735) (#122757)Miss Islington (bot)2024-08-061-0/+7
* [3.13] gh-120974: Make asyncio `swap_current_task` safe in free-threaded buil...Miss Islington (bot)2024-08-021-14/+23
* [3.13] gh-122311: Fix a refleak in pickle (GH-122411) (GH-122415)Miss Islington (bot)2024-07-291-0/+1
* Revert "[3.13] gh-120713: Normalize year with century for datetime.strftime (...Serhiy Storchaka2024-07-291-50/+4
* [3.13] gh-122311: Fix some error messages in pickle (GH-122386) (GH-122387)Miss Islington (bot)2024-07-291-3/+3
* [3.13] gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro` (GH-122...Miss Islington (bot)2024-07-271-1/+5
* [3.13] GH-121832: Assert that the version number of static builtin types is n...Miss Islington (bot)2024-07-251-46/+42
* [3.13] gh-121489: Export private _PyBytes_Join() again (GH-122267) (#122287)Miss Islington (bot)2024-07-251-1/+0
* [3.13] gh-82951: Fix serializing by name in pickle protocols < 4 (GH-122149) ...Miss Islington (bot)2024-07-251-17/+36
* [3.13] gh-113785: csv: fields starting with escapechar are not quoted (GH-122...Miss Islington (bot)2024-07-251-1/+0
* [3.13] gh-120974: Make _asyncio._leave_task atomic in the free-threaded build...Miss Islington (bot)2024-07-232-28/+27
* [3.13] gh-120974: Make _asyncio._enter_task atomic in the free-threaded build...Miss Islington (bot)2024-07-231-10/+5
* [3.13] gh-121957: Emit audit events for `python -i` and `python -m asyncio` (...Miss Islington (bot)2024-07-221-0/+4
* [3.13] gh-121621: Disable asyncio freelist in free-threaded build (GH-122046)...Sam Gross2024-07-191-5/+17
* [3.13] gh-120973: Fix thread-safety issues with `threading.local` (GH-121655)...Miss Islington (bot)2024-07-191-150/+234
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-1914-37/+37
* [3.13] gh-120289: Add external timer in traverse of _lsprof.Profiler (GH-1219...Miss Islington (bot)2024-07-191-0/+1