summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-137668: Document that ord() supports also bytes and bytearray (GH-1...Serhiy Storchaka2025-08-132-6/+18
* [3.13] gh-137400: Fix a crash when disabling profiling across all threads (gh...Sam Gross2025-08-111-2/+8
* [3.13] gh-137440: Update comment in Python/hamt.c on importing for testing (G...Miss Islington (bot)2025-08-071-2/+2
* [3.13] gh-58124: Avoid CP_UTF8 in UnicodeDecodeError (GH-137415) (#137461)Miss Islington (bot)2025-08-061-1/+1
* [3.13] GH-133136: Revise QSBR to reduce excess memory held (gh-135473) (gh-13...Neil Schemenauer2025-07-302-10/+6
* [3.13] gh-134411: assert `PyLong_FromLong(x) != NULL` when `x` is known to be...Miss Islington (bot)2025-07-211-0/+4
* [3.13] gh-136541: Fix several problems of perf trampolines in x86_64 and aarc...Pablo Galindo Salgado2025-07-113-41/+144
* [3.13] gh-109700: fix interpreter finalization while handling memory error (G...Miss Islington (bot)2025-07-071-7/+7
* [3.13] gh-135871: Fix needless spinning in `_PyMutex_LockTimed` with zero tim...Sam Gross2025-06-251-1/+1
* [3.13] gh-135855: Raise TypeError When Passing Non-dict Object to `_interpret...Brian Schubert2025-06-241-0/+1
* [3.13] GH-135171: Roll back all fixes for GH-127682 as they are not suitable ...T. Wouters2025-06-111-3/+18
* [3.13] gh-128605: Add branch protections for x86_64 in asm_trampoline.S (#128...stratakis2025-06-112-0/+26
* [3.13] Heavily comment Python/perf_jit_trampoline.c to improve maintainabilit...Miss Islington (bot)2025-06-091-385/+1029
* [3.13] gh-128605: Revert "Add branch protections for x86_64 in asm_tr…ampol...Miss Islington (bot)2025-06-062-27/+0
* [3.13] gh-128605: Add branch protections for x86_64 in asm_trampoline.S (GH-1...Miss Islington (bot)2025-06-032-0/+27
* [3.13] GH-128161: Fix refleak introduced in GH-134788 (GH-134799)Mark Shannon2025-05-271-1/+3
* [3.13] gh-128161: Remove redundant GET_ITER from list comprehension code (bac...Mark Shannon2025-05-271-17/+2
* [3.13] gh-134100: Fix use-after-free in `PyImport_ImportModuleLevelObject` (G...Miss Islington (bot)2025-05-181-1/+3
* [3.13] gh-133441: Fix STORE_ATTR_WITH_HINT bytecode (#133446)Victor Stinner2025-05-112-2/+3
* gh-133597: Fix memory leak if error occurred in _sys_getwindowsversion_from_k...Miss Islington (bot)2025-05-081-0/+3
* [3.13] GH-127682: Backport GH-132351 (GH-132384)Mark Shannon2025-04-291-3/+1
* [3.13] gh-132909: handle overflow for `'K'` format in `do_mkvalue` (GH-132911...Bénédikt Tran2025-04-251-1/+2
* [3.13] gh-130070: Fix `exec(<string>, closure=<non-None>)` unexpected path (G...Bartosz Sławecki2025-04-171-0/+1
* [3.13] gh-124476: Fix decoding from the locale encoding in the C.UTF-8 locale...Serhiy Storchaka2025-04-141-9/+1
* [3.13] gh-131927: Prevent emitting compiler warnings twice (GH-131993) (GH-13...Tomas R.2025-04-132-2/+24
* [3.13] gh-131998: Fix `NULL` dereference when using an unbound method descrip...Peter Bierma2025-04-083-0/+18
* [3.13] gh-130775: Allow negative locations in `ast` (GH-130795) (#132243)sobolevn2025-04-081-4/+2
* [3.13] GH-127953: Make line number lookup O(1) regardless of the size of the ...Mark Shannon2025-04-072-152/+198
* [3.13] gh-131988: Fix a multithreaded scaling regression (#131989)Sam Gross2025-04-071-2/+2
* [3.13] gh-132011: Fix crash on invalid `CALL_LIST_APPEND` deoptimization (GH-...sobolevn2025-04-062-2/+2
* [3.13] gh-130115: fix thread identifiers for 32-bit musl (GH-130391) (GH-132089)Miss Islington (bot)2025-04-041-9/+21
* [3.13] gh-128632: fix segfault on nested __classdict__ type param (GH-128744)...Tomasz Pytel2025-04-042-13/+32
* [3.13] gh-132002: Fix crash of `ContextVar` on unhashable `str` subtype (GH-1...Miss Islington (bot)2025-04-021-7/+6
* [3.13] gh-131818: Add imply `-P` in `-I`'s help message (GH-131819) (#131822)Miss Islington (bot)2025-03-281-1/+1
* [3.13] gh-131740: Update PyUnstable_GC_VisitObjects to traverse perm … (gh-...Donghee Na2025-03-261-10/+20
* [3.13] gh-131670: Fix crash in `anext()` when `__anext__` is sync and raises ...Miss Islington (bot)2025-03-241-0/+3
* [3.13] gh-117657: Fix TSAN data race in _PyEval_SetTrace assertion (gh-131561...Miss Islington (bot)2025-03-211-1/+1
* [3.13] gh-130382: add missing `_PyReftracerTrack` to ceval `Py_DECREF` (GH-13...Sam Gross2025-03-141-0/+1
* [3.13] gh-131141: fix data race in instrumentation while registering callback...Kumar Aditya2025-03-131-3/+4
* [3.13] gh-130940: Remove PyConfig.use_system_logger (#131129)Russell Keith-Magee2025-03-132-34/+12
* [3.13] gh-131082: Add missing guards for WIN32_LEAN_AND_MEAN (GH-131044) (#13...Miss Islington (bot)2025-03-112-2/+6
* [3.13] gh-117174: Add a new route in linecache to fetch interactive source co...Miss Islington (bot)2025-03-101-1/+1
* [3.13] gh-130794: Process interpreter QSBR queue in _PyMem_AbandonDelayed. (g...Sam Gross2025-03-041-0/+1
* [3.13] gh-130740: Move some `stdbool.h` includes after `Python.h` (#130738) (...Bénédikt Tran2025-03-032-5/+4
* [3.13] Postpone <stdbool.h> inclusion after Python.h (#130641) (#130675)Victor Stinner2025-02-283-6/+5
* [3.13] gh-130163: Fix crashes related to PySys_GetObject() (GH-130503) (GH-13...Serhiy Storchaka2025-02-2511-140/+371
* [3.13] Update manpage environment variables and command line arguments (GH-12...Miss Islington (bot)2025-02-131-0/+2
* [3.13] gh-129533: Update PyGC_Enable/Disable/IsEnabled to use atomic operatâ...Donghee Na2025-02-061-11/+7
* [3.13] gh-129732: Fix race on `shared->array` in qsbr code under free-threadi...Sam Gross2025-02-061-6/+6
* [3.13] gh-126108: Fix potential null pointer dereference in `PySys_AddWarnOpt...Miss Islington (bot)2025-01-311-3/+4