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
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-115999: Enable specialization of `CALL` instructions in free-threaded buil...
mpage
2024-12-03
1
-0/+14
*
gh-127271: Replace use of PyCell_GET/SET (gh-127272)
Neil Schemenauer
2024-12-03
2
-2/+8
*
gh-117657: TSAN Fix races in `PyMember_Get` and `PyMember_Set` for C extensio...
Daniele Parmeggiani
2024-12-03
5
-1/+419
*
gh-127411: Fix invalid conversion of load of TLBC array when compiled in C++ ...
mpage
2024-12-02
2
-2/+9
*
gh-115999: Use light-weight lock for UNPACK_SEQUENCE_LIST (gh-127514)
Donghee Na
2024-12-02
2
-2/+2
*
GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...
Mark Shannon
2024-12-02
5
-4/+16
*
gh-115999: Add partial free-thread specialization for BINARY_SUBSCR (gh-127227)
Donghee Na
2024-12-02
3
-2/+5
*
gh-69639: Add mixed-mode rules for complex arithmetic (C-like) (GH-124829)
Sergey B Kirpichev
2024-11-26
2
-0/+8
*
gh-119180: Add VALUE_WITH_FAKE_GLOBALS format to annotationlib (#124415)
Jelle Zijlstra
2024-11-26
1
-0/+7
*
gh-126612: Include stack effects of uops when computing maximum stack depth (...
mpage
2024-11-26
1
-0/+925
*
gh-127022: Simplify `PyStackRef_FromPyObjectSteal` (#127024)
Sam Gross
2024-11-22
1
-4/+10
*
gh-115999: Add free-threaded specialization for `UNPACK_SEQUENCE` (#126600)
Kirill Podoprigora
2024-11-22
2
-2/+2
*
gh-127117: Ensure the Correct Last Fields of PyInterpreterState and of _PyRun...
Eric Snow
2024-11-22
2
-7/+10
*
Improve comment for co_nlocalsplus (#126993)
Jacob Bower
2024-11-21
1
-1/+2
*
gh-115999: Add free-threaded specialization for ``TO_BOOL`` (gh-126616)
Donghee Na
2024-11-21
1
-0/+10
*
gh-115999: Specialize `LOAD_GLOBAL` in free-threaded builds (#126607)
mpage
2024-11-21
2
-0/+26
*
gh-114940: Add _Py_FOR_EACH_TSTATE_UNLOCKED(), and Friends (gh-127077)
Eric Snow
2024-11-21
1
-0/+9
*
gh-124470: Fix crash when reading from object instance dictionary while repla...
Dino Viehland
2024-11-21
2
-19/+15
*
gh-126316: Make grp.getgrall() thread-safe: add a mutex (#127055)
Victor Stinner
2024-11-21
4
-0/+7
*
gh-112136: Remove unused #include "pycore_lock.h" (#127093)
Victor Stinner
2024-11-21
1
-2/+0
*
GH-127010: Don't lazily track and untrack dicts (GH-127027)
Mark Shannon
2024-11-20
1
-2/+0
*
Merge remote-tracking branch 'upstream/main'
Hugo van Kemenade
2024-11-19
2
-1/+6
|
\
|
*
gh-126914: Store the Preallocated Thread State's Pointer in a PyInterpreterSt...
Eric Snow
2024-11-19
2
-1/+6
*
|
Post 3.14.0a2
Hugo van Kemenade
2024-11-19
1
-1/+1
*
|
Python 3.14.0a2
v3.14.0a2
Hugo van Kemenade
2024-11-19
1
-2/+2
|
/
*
gh-126076: Account for relocated objects in tracemalloc (#126077)
Pablo Galindo Salgado
2024-11-19
1
-5/+9
*
Revert "GH-126491: GC: Mark objects reachable from roots before doing cycle c...
Hugo van Kemenade
2024-11-19
6
-17/+6
*
gh-126986: Drop _PyInterpreterState_FailIfNotRunning() (gh-126988)
Eric Snow
2024-11-19
1
-1/+1
*
GH-126795: Increase the JIT threshold from 16 to 4096 (GH-126816)
Brandt Bucher
2024-11-18
1
-4/+3
*
GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...
Mark Shannon
2024-11-18
6
-6/+17
*
gh-125063: marshal: Add version 5, improve documentation (GH-126829)
Petr Viktorin
2024-11-15
1
-1/+1
*
gh-123619: Add an unstable C API function for enabling deferred reference cou...
Peter Bierma
2024-11-13
1
-0/+7
*
gh-126688: Reinit import lock after fork (#126692)
Sam Gross
2024-11-12
1
-0/+1
*
gh-76785: Improved Subinterpreters Compatibility with 3.12 (2/2) (gh-126707)
Eric Snow
2024-11-12
2
-6/+36
*
gh-126061: Add PyLong_IsPositive/Zero/Negative() functions (#126065)
RUANG (James Roy)
2024-11-12
1
-0/+18
*
gh-76785: Improved Subinterpreters Compatibility with 3.12 (1/2) (gh-126704)
Eric Snow
2024-11-11
5
-23/+29
*
gh-76785: Minor Cleanup of Exception-related Cross-interpreter State (gh-126602)
Eric Snow
2024-11-11
1
-2/+8
*
gh-120619: Strength reduce function guards, support 2-operand uop forms (GH-1...
Ken Jin
2024-11-09
3
-152/+158
*
GH-126547: Pre-assign version numbers for a few common classes (GH-126551)
Mark Shannon
2024-11-08
2
-1/+16
*
gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564)
Serhiy Storchaka
2024-11-08
1
-10/+5
*
gh-122943: Rework support of var-positional parameter in Argument Clinic (GH-...
Serhiy Storchaka
2024-11-07
2
-13/+12
*
gh-76785: Minor Cleanup of "Cross-interpreter" Code (gh-126457)
Eric Snow
2024-11-07
3
-70/+86
*
GH-126222: Fix `_PyUop_num_popped` (GH-126507)
Mark Shannon
2024-11-07
1
-56/+56
*
gh-126303: Fix pickling and copying of os.sched_param objects (GH-126336)
Serhiy Storchaka
2024-11-05
1
-0/+1
*
gh-115999: Implement thread-local bytecode and enable specialization for `BIN...
mpage
2024-11-04
11
-67/+253
*
gh-126220: Adapt `_lsprof` to Argument Clinic (#126233)
sobolevn
2024-11-04
4
-0/+21
*
gh-120026: soft deprecate Py_HUGE_VAL macro (#120027)
Sergey B Kirpichev
2024-11-01
3
-6/+6
*
gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)
Xuanteng Huang
2024-10-30
2
-0/+6
*
GH-125837: Split `LOAD_CONST` into three. (GH-125972)
Mark Shannon
2024-10-29
6
-104/+136
*
GH-125515: Reduce number of compiler warnings in generated code (GH-125697)
Mark Shannon
2024-10-28
1
-3/+3
[next]