summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-126876: Fix socket internal_select() for large timeout (GH-126968) ...Miss Islington (bot)2024-12-031-1/+4
* [3.12] gh-126618: fix repr(itertools.count(sys.maxsize)) (GH-127048) (#127510)Sergey B Kirpichev2024-12-021-6/+3
* [3.12] gh-127190: Fix local_setattro() error handling (GH-127366) (#127368)Miss Islington (bot)2024-11-281-1/+1
* [3.12] gh-124008: Fix calculation of the number of written bytes for the Wind...Miss Islington (bot)2024-11-271-28/+90
* [3.12] gh-127182: Fix `io.StringIO.__setstate__` crash when `None` is the fir...Miss Islington (bot)2024-11-251-14/+16
* [3.12] gh-109746: Make _thread.start_new_thread delete state of new thread on...Serhiy Storchaka2024-11-221-0/+1
* [3.12] gh-126727: Fix locale.nl_langinfo(locale.ERA) (GH-126730) (GH-127098)Serhiy Storchaka2024-11-211-24/+41
* [3.12] gh-126991: Fix reference leak in loading pickle's opcode BUILD (GH-126...Miss Islington (bot)2024-11-191-0/+1
* [3.12] gh-101955: Fix SystemError in possesive quantifier with alternative an...Miss Islington (bot)2024-11-181-0/+18
* [3.12] gh-67877: Fix memory leaks in terminated RE matching (GH-126840) (GH-1...Serhiy Storchaka2024-11-184-14/+205
* [3.12] gh-126623: Update libexpat to 2.6.4, make future updates easier (GH-12...Miss Islington (bot)2024-11-134-11/+79
* [3.12] gh-126595: fix a crash when calling `itertools.count(sys.maxsize)` (GH...Bénédikt Tran2024-11-121-0/+3
* [3.12] gh-126405: fix use-after-free in `_asyncio.Future.remove_done_callback...Miss Islington (bot)2024-11-121-0/+2
* [3.12] gh-126461: Fix _Unpickler_ReadFromFile() error handling (GH-126485) (#...Miss Islington (bot)2024-11-061-0/+4
* [3.12] gh-126455: Disallow _ssl.SSLSocket instantiation (GH-126481) (#126487)Miss Islington (bot)2024-11-061-1/+1
* [3.12] gh-126425: Refactor `_lsprof_Profiler_enable` (GH-126426) (#126443)Miss Islington (bot)2024-11-051-12/+25
* [3.12] gh-126303: Fix pickling and copying of os.sched_param objects (GH-1263...Serhiy Storchaka2024-11-051-0/+17
* [3.12] gh-126138: Fix use-after-free in `_asyncio.Task` by evil `__getattribu...Miss Islington (bot)2024-11-021-2/+20
* [3.12] gh-126220: Fix crash on calls to `_lsprof.Profiler` methods with 0 arg...Miss Islington (bot)2024-11-011-0/+24
* [3.12] gh-126080: fix UAF on `task->task_context` in `task_call_step_soon` du...Miss Islington (bot)2024-10-311-1/+5
* [3.12] gh-126083: Fix a reference leak in `asyncio.Task` when reinitializing ...Miss Islington (bot)2024-10-311-1/+1
* [3.12] gh-126106: Fix `NULL` possible derefrence in `Modules/_ssl.c` (GH-1261...Miss Islington (bot)2024-10-291-3/+3
* [3.12] Align functools.reduce() docstring with PEP-257 (GH-126045) (#126114)Miss Islington (bot)2024-10-291-6/+8
* [3.12] gh-126035: add missing whitespace to *Py_EnterRecursiveCall() messages...Miss Islington (bot)2024-10-272-3/+3
* [3.12] gh-125966: fix use-after-free on `fut->fut_callback0` due to an evil c...Miss Islington (bot)2024-10-271-1/+6
* [3.12] gh-125984: fix use-after-free on `fut->fut_{callback,context}0` due to...Miss Islington (bot)2024-10-271-6/+13
* [3.12] gh-125969: fix OOB in `future_schedule_callbacks` due to an evil `call...Miss Islington (bot)2024-10-251-17/+12
* [3.12] GH-125789: fix `fut._callbacks` to always return a copy of callbacks (...Miss Islington (bot)2024-10-251-28/+25
* [3.12] gh-124969: Make locale.nl_langinfo(locale.ALT_DIGITS) returning a stri...Miss Islington (bot)2024-10-211-15/+23
* [3.12] gh-52551: Fix encoding issues in strftime() (GH-125193) (GH-125657) (G...Miss Islington (bot)2024-10-172-201/+203
* [3.12] gh-124917: Allow keyword args to os.path.exists/lexists on Windows (GH...Jelle Zijlstra2024-10-112-7/+36
* [3.12] [3.13] gh-124969: Fix locale.nl_langinfo(locale.ALT_DIGITS) (GH-124974...Miss Islington (bot)2024-10-111-1/+28
* [3.12] gh-125118: don't copy arbitrary values to _Bool in the struct module (...Sergey B Kirpichev2024-10-101-3/+2
* [3.12] Tee of tee was not producing n independent iterators (gh-123884) (gh-1...Raymond Hettinger2024-10-081-27/+10
* [3.12] gh-120378: Fix crash caused by integer overflow in `curses` (GH-124555...Peter Bierma2024-10-022-27/+87
* [3.12] gh-123978: Remove broken time.thread_time() on NetBSD (GH-124116) (GH-...Serhiy Storchaka2024-10-021-3/+16
* [3.12] gh-116810: fix memory leak in ssl module (GH-123249) (GH-124801)Miss Islington (bot)2024-09-301-63/+13
* [3.12] gh-113993: Make interned strings mortal (GH-120520, GH-121364, GH-1219...Petr Viktorin2024-09-2713-56/+68
* [3.12] gh-116510: Fix crash during sub-interpreter shutdown (gh-124536)Neil Schemenauer2024-09-271-3/+26
* [3.12] gh-124248: Fix crash in struct when processing 0p fields (GH-124251) (...Miss Islington (bot)2024-09-201-4/+15
* [3.12] Revert "gh-123974: Fix time.get_clock_info() on NetBSD (GH-123975)" (G...Miss Islington (bot)2024-09-181-5/+1
* [3.12] gh-123836: workaround fmod(x, y) bug on Windows (GH-124171) (#124186)Sergey B Kirpichev2024-09-171-0/+9
* [3.12] gh-121023: Improve `_xxtestfuzz/README.rst` (GH-121024) (#124141)Miss Islington (bot)2024-09-161-3/+5
* [3.12] gh-123974: Fix time.get_clock_info() on NetBSD (GH-123975) (#124073)Miss Islington (bot)2024-09-131-1/+5
* [3.12] gh-123431: Harmonize extension code checks in pickle (GH-123434) (#123...Miss Islington (bot)2024-09-061-16/+8
* [3.12] gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment t...Miss Islington (bot)2024-09-061-10/+2
* [3.12] gh-111495: Add tests for PyNumber C API (GH-111996) (#123376)Sergey B Kirpichev2024-09-051-0/+161
* [3.12] gh-111495: Add tests for PyTuple C API (GH-118757) (#123379)Sergey B Kirpichev2024-09-051-1/+227
* [3.12] gh-123678: Upgrade libexpat 2.6.3 (GH-123689) (GH-123708)Miss Islington (bot)2024-09-043-15/+35
* [3.12] gh-112182: Replace StopIteration with RuntimeError for future (GH-1132...Miss Islington (bot)2024-08-151-5/+20