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
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-119771: Set errno on overflows in _Py_c_pow() (#120256)
Sergey B Kirpichev
2024-09-18
1
-1/+3
*
gh-124153: Implement `PyType_GetBaseByToken()` and `Py_tp_token` slot (GH-124...
neonene
2024-09-18
3
-2/+144
*
gh-121459: Add missing return to _PyDict_LoadGlobalStackRef (#124085)
Sam Gross
2024-09-14
1
-2/+7
*
gh-121459: Deferred LOAD_GLOBAL (GH-123128)
Ken Jin
2024-09-13
1
-0/+74
*
gh-100554: Add ``Py_tp_vectorcall`` slot to set ``PyTypeObject.tp_vectorcall`...
Wenzel Jakob
2024-09-13
1
-0/+1
*
closes gh-124016: update Unicode to 16.0.0 (#124017)
Benjamin Peterson
2024-09-13
1
-2359/+2658
*
gh-123909: PyType_From*: Disallow metaclasses with custom tp_new (GH-123947)
Petr Viktorin
2024-09-13
1
-28/+10
*
gh-123923: Defer refcounting for `f_executable` in `_PyInterpreterFrame` (#12...
Sam Gross
2024-09-12
2
-10/+13
*
gh-77894: Fix a crash when the GC breaks a loop containing a memoryview (GH-1...
Serhiy Storchaka
2024-09-11
1
-28/+27
*
gh-123826: Fix unused function warnings in mimalloc on NetBSD (#123827)
Furkan Onder
2024-09-09
1
-2/+2
*
gh-117482: Simplify the Fix For Builtin Types Slot Wrappers (GH-122865)
Eric Snow
2024-09-09
1
-29/+37
*
Fix typos (#123775)
algonell
2024-09-09
3
-3/+3
*
Fix typo in error message misspelling __slotnames__ (GH-115772)
Jay Aljelo Ting
2024-09-06
1
-1/+1
*
gh-123465: Allow Py_RELATIVE_OFFSET for __*offset__ members (GH-123474)
Petr Viktorin
2024-09-05
1
-20/+65
*
gh-107954, PEP 741: Add PyInitConfig C API (#123502)
Victor Stinner
2024-09-03
1
-2/+2
*
gh-123091: Use more _Py_IsImmortalLoose() (GH-123602)
Petr Viktorin
2024-09-02
1
-1/+1
*
gh-123091: Use _Py_IsImmortalLoose() (#123511)
Victor Stinner
2024-09-02
2
-7/+7
*
gh-122854: Add Py_HashBuffer() function (#122855)
Victor Stinner
2024-08-30
4
-5/+5
*
gh-121645: Add PyBytes_Join() function (#121646)
Victor Stinner
2024-08-30
1
-4/+12
*
gh-123446: Fix empty function names in `TypeError`s in `typeobject` (#123470)
sobolevn
2024-08-30
1
-11/+47
*
gh-121485: Always use 64-bit integers for integers bits count (GH-121486)
Serhiy Storchaka
2024-08-30
2
-81/+64
*
gh-123448: Move `_PyNoDefault_Type` to the static types array (#123449)
Peter Bierma
2024-08-29
1
-0/+1
*
Fix typos in docs, error messages and comments (#123336)
Wulian
2024-08-28
7
-9/+9
*
gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390)
Victor Stinner
2024-08-28
1
-0/+66
*
gh-122561: Clean up and microoptimize str.translate and charmap codec (GH-122...
Serhiy Storchaka
2024-08-28
1
-27/+43
*
GH-115775: Use `__static_attributes__` to initialize shared keys (GH-118468)
Mark Shannon
2024-08-27
2
-2/+17
*
gh-122982: Extend the deprecation period for bool inversion by two years (#12...
Kirill Podoprigora
2024-08-25
1
-2/+2
*
gh-123083: Fix a potential use-after-free in ``STORE_ATTR_WITH_HINT`` (gh-123...
Donghee Na
2024-08-22
1
-0/+2
*
GH-115776: Allow any fixed sized object to have inline values (GH-123192)
Mark Shannon
2024-08-21
2
-1/+5
*
Fix typos in comments (#123201)
Wulian
2024-08-21
1
-3/+3
*
GH-118093: Make `CALL_ALLOC_AND_ENTER_INIT` suitable for tier 2. (GH-123140)
Mark Shannon
2024-08-20
1
-2/+1
*
gh-123022: Fix crash with `Py_Initialize` in background thread (#123052)
Sam Gross
2024-08-17
1
-4/+12
*
gh-113190: Reenable non-debug interned string cleanup (GH-113601)
Eddie Elizondo
2024-08-15
1
-14/+1
*
gh-111178: Avoid calling long_hash from incompatible pointer type (GH-122972)
Bénédikt Tran
2024-08-14
1
-2/+3
*
GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)
Mark Shannon
2024-08-13
2
-58/+21
*
gh-117482: Make the Slot Wrapper Inheritance Tests Much More Thorough (gh-122...
Eric Snow
2024-08-12
1
-0/+41
*
gh-117139: Replace _PyList_FromArraySteal with stack ref variant (#122830)
Sam Gross
2024-08-12
1
-3/+5
*
gh-122888: Fix crash on certain calls to str() (#122889)
Jelle Zijlstra
2024-08-12
1
-1/+10
*
Remove "print >>obj" exception hint for Python 2 (#122853)
Victor Stinner
2024-08-12
1
-14/+0
*
gh-122688: Fix support of var-positional parameter in Argument Clinic (GH-122...
Serhiy Storchaka
2024-08-09
1
-12/+6
*
gh-122697: Fix free-threading memory leaks at shutdown (#122703)
Sam Gross
2024-08-08
1
-3/+8
*
gh-105201: Add PyIter_NextItem() (#122331)
Erlend E. Aasland
2024-08-07
1
-11/+46
*
gh-122417: Implement per-thread heap type refcounts (#122418)
Sam Gross
2024-08-06
2
-12/+14
*
gh-122058: `Lib/inspect`: Update docstrings for `isfunction`, `isgenerator`, ...
Kirill Podoprigora
2024-08-06
1
-1/+1
*
gh-122527: Fix a crash on deallocation of `PyStructSequence` (GH-122577)
Sam Gross
2024-08-02
1
-6/+22
*
gh-120974: Make asyncio `swap_current_task` safe in free-threaded build (#122...
Sam Gross
2024-08-02
1
-16/+38
*
Replace PyObject_Del with PyObject_Free (#122453)
Victor Stinner
2024-08-01
9
-11/+11
*
gh-116622: Fix testPyObjectPrintOSError on Android (#122487)
Malcolm Smith
2024-07-31
1
-2/+9
*
gh-120906: Support arbitrary hashable keys in FrameLocalsProxy (GH-122309)
Petr Viktorin
2024-07-30
1
-60/+80
*
GH-118093: Improve handling of short and mid-loop traces (GH-122252)
Brandt Bucher
2024-07-29
1
-2/+3
[next]