index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.13] gh-137668: Document that ord() supports also bytes and bytearray (GH-1...
Serhiy Storchaka
2025-08-13
2
-6/+18
*
[3.13] gh-137400: Fix a crash when disabling profiling across all threads (gh...
Sam Gross
2025-08-11
1
-2/+8
*
[3.13] gh-137440: Update comment in Python/hamt.c on importing for testing (G...
Miss Islington (bot)
2025-08-07
1
-2/+2
*
[3.13] gh-58124: Avoid CP_UTF8 in UnicodeDecodeError (GH-137415) (#137461)
Miss Islington (bot)
2025-08-06
1
-1/+1
*
[3.13] GH-133136: Revise QSBR to reduce excess memory held (gh-135473) (gh-13...
Neil Schemenauer
2025-07-30
2
-10/+6
*
[3.13] gh-134411: assert `PyLong_FromLong(x) != NULL` when `x` is known to be...
Miss Islington (bot)
2025-07-21
1
-0/+4
*
[3.13] gh-136541: Fix several problems of perf trampolines in x86_64 and aarc...
Pablo Galindo Salgado
2025-07-11
3
-41/+144
*
[3.13] gh-109700: fix interpreter finalization while handling memory error (G...
Miss Islington (bot)
2025-07-07
1
-7/+7
*
[3.13] gh-135871: Fix needless spinning in `_PyMutex_LockTimed` with zero tim...
Sam Gross
2025-06-25
1
-1/+1
*
[3.13] gh-135855: Raise TypeError When Passing Non-dict Object to `_interpret...
Brian Schubert
2025-06-24
1
-0/+1
*
[3.13] GH-135171: Roll back all fixes for GH-127682 as they are not suitable ...
T. Wouters
2025-06-11
1
-3/+18
*
[3.13] gh-128605: Add branch protections for x86_64 in asm_trampoline.S (#128...
stratakis
2025-06-11
2
-0/+26
*
[3.13] Heavily comment Python/perf_jit_trampoline.c to improve maintainabilit...
Miss Islington (bot)
2025-06-09
1
-385/+1029
*
[3.13] gh-128605: Revert "Add branch protections for x86_64 in asm_tr…ampol...
Miss Islington (bot)
2025-06-06
2
-27/+0
*
[3.13] gh-128605: Add branch protections for x86_64 in asm_trampoline.S (GH-1...
Miss Islington (bot)
2025-06-03
2
-0/+27
*
[3.13] GH-128161: Fix refleak introduced in GH-134788 (GH-134799)
Mark Shannon
2025-05-27
1
-1/+3
*
[3.13] gh-128161: Remove redundant GET_ITER from list comprehension code (bac...
Mark Shannon
2025-05-27
1
-17/+2
*
[3.13] gh-134100: Fix use-after-free in `PyImport_ImportModuleLevelObject` (G...
Miss Islington (bot)
2025-05-18
1
-1/+3
*
[3.13] gh-133441: Fix STORE_ATTR_WITH_HINT bytecode (#133446)
Victor Stinner
2025-05-11
2
-2/+3
*
gh-133597: Fix memory leak if error occurred in _sys_getwindowsversion_from_k...
Miss Islington (bot)
2025-05-08
1
-0/+3
*
[3.13] GH-127682: Backport GH-132351 (GH-132384)
Mark Shannon
2025-04-29
1
-3/+1
*
[3.13] gh-132909: handle overflow for `'K'` format in `do_mkvalue` (GH-132911...
Bénédikt Tran
2025-04-25
1
-1/+2
*
[3.13] gh-130070: Fix `exec(<string>, closure=<non-None>)` unexpected path (G...
Bartosz Sławecki
2025-04-17
1
-0/+1
*
[3.13] gh-124476: Fix decoding from the locale encoding in the C.UTF-8 locale...
Serhiy Storchaka
2025-04-14
1
-9/+1
*
[3.13] gh-131927: Prevent emitting compiler warnings twice (GH-131993) (GH-13...
Tomas R.
2025-04-13
2
-2/+24
*
[3.13] gh-131998: Fix `NULL` dereference when using an unbound method descrip...
Peter Bierma
2025-04-08
3
-0/+18
*
[3.13] gh-130775: Allow negative locations in `ast` (GH-130795) (#132243)
sobolevn
2025-04-08
1
-4/+2
*
[3.13] GH-127953: Make line number lookup O(1) regardless of the size of the ...
Mark Shannon
2025-04-07
2
-152/+198
*
[3.13] gh-131988: Fix a multithreaded scaling regression (#131989)
Sam Gross
2025-04-07
1
-2/+2
*
[3.13] gh-132011: Fix crash on invalid `CALL_LIST_APPEND` deoptimization (GH-...
sobolevn
2025-04-06
2
-2/+2
*
[3.13] gh-130115: fix thread identifiers for 32-bit musl (GH-130391) (GH-132089)
Miss Islington (bot)
2025-04-04
1
-9/+21
*
[3.13] gh-128632: fix segfault on nested __classdict__ type param (GH-128744)...
Tomasz Pytel
2025-04-04
2
-13/+32
*
[3.13] gh-132002: Fix crash of `ContextVar` on unhashable `str` subtype (GH-1...
Miss Islington (bot)
2025-04-02
1
-7/+6
*
[3.13] gh-131818: Add imply `-P` in `-I`'s help message (GH-131819) (#131822)
Miss Islington (bot)
2025-03-28
1
-1/+1
*
[3.13] gh-131740: Update PyUnstable_GC_VisitObjects to traverse perm … (gh-...
Donghee Na
2025-03-26
1
-10/+20
*
[3.13] gh-131670: Fix crash in `anext()` when `__anext__` is sync and raises ...
Miss Islington (bot)
2025-03-24
1
-0/+3
*
[3.13] gh-117657: Fix TSAN data race in _PyEval_SetTrace assertion (gh-131561...
Miss Islington (bot)
2025-03-21
1
-1/+1
*
[3.13] gh-130382: add missing `_PyReftracerTrack` to ceval `Py_DECREF` (GH-13...
Sam Gross
2025-03-14
1
-0/+1
*
[3.13] gh-131141: fix data race in instrumentation while registering callback...
Kumar Aditya
2025-03-13
1
-3/+4
*
[3.13] gh-130940: Remove PyConfig.use_system_logger (#131129)
Russell Keith-Magee
2025-03-13
2
-34/+12
*
[3.13] gh-131082: Add missing guards for WIN32_LEAN_AND_MEAN (GH-131044) (#13...
Miss Islington (bot)
2025-03-11
2
-2/+6
*
[3.13] gh-117174: Add a new route in linecache to fetch interactive source co...
Miss Islington (bot)
2025-03-10
1
-1/+1
*
[3.13] gh-130794: Process interpreter QSBR queue in _PyMem_AbandonDelayed. (g...
Sam Gross
2025-03-04
1
-0/+1
*
[3.13] gh-130740: Move some `stdbool.h` includes after `Python.h` (#130738) (...
Bénédikt Tran
2025-03-03
2
-5/+4
*
[3.13] Postpone <stdbool.h> inclusion after Python.h (#130641) (#130675)
Victor Stinner
2025-02-28
3
-6/+5
*
[3.13] gh-130163: Fix crashes related to PySys_GetObject() (GH-130503) (GH-13...
Serhiy Storchaka
2025-02-25
11
-140/+371
*
[3.13] Update manpage environment variables and command line arguments (GH-12...
Miss Islington (bot)
2025-02-13
1
-0/+2
*
[3.13] gh-129533: Update PyGC_Enable/Disable/IsEnabled to use atomic operatâ...
Donghee Na
2025-02-06
1
-11/+7
*
[3.13] gh-129732: Fix race on `shared->array` in qsbr code under free-threadi...
Sam Gross
2025-02-06
1
-6/+6
*
[3.13] gh-126108: Fix potential null pointer dereference in `PySys_AddWarnOpt...
Miss Islington (bot)
2025-01-31
1
-3/+4
[next]