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-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)
Victor Stinner
2023-11-13
2
-122/+177
*
gh-111999: Add signatures and improve docstrings for builtins (GH-112000)
Serhiy Storchaka
2023-11-13
6
-27/+53
*
gh-110481: fix 'unused function' warning for `is_shared_refcnt_dead`. (gh-111...
Sam Gross
2023-11-10
1
-4/+6
*
Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)
Serhiy Storchaka
2023-11-10
1
-0/+12
*
Improve error message for "float modulo by zero" (#111685)
Pavel Ovchinnikov
2023-11-09
1
-1/+1
*
gh-111354: remove comparisons with enum values, variable reuse, unused import...
Irit Katriel
2023-11-09
1
-22/+14
*
gh-111569: Implement Python critical section API (gh-111571)
Sam Gross
2023-11-08
1
-1/+1
*
gh-110543: Fix CodeType.replace in presence of comprehensions (#110586)
Jelle Zijlstra
2023-11-08
1
-0/+29
*
gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)
Victor Stinner
2023-11-07
7
-29/+92
*
gh-81137: deprecate assignment of code object to a function of a mismatched t...
Irit Katriel
2023-11-07
1
-0/+14
*
gh-106672: C API: Report indiscriminately ignored errors (GH-106674)
Serhiy Storchaka
2023-11-07
3
-25/+69
*
gh-79932: raise exception if frame.clear() is called on a suspended frame (#1...
Irit Katriel
2023-11-07
1
-0/+7
*
simplify code to pop exception in frame_setlineno (#111702)
Irit Katriel
2023-11-06
1
-5/+2
*
gh-111666: Speed up `BaseExceptionGroup.{derive,split,subgroup}` (#111667)
Nikita Sobolev
2023-11-04
1
-20/+6
*
gh-111506: Implement Py_SET_REFCNT() as opaque function in limited C API (#11...
Victor Stinner
2023-11-03
1
-0/+8
*
gh-103615: Use local events for opcode tracing (GH-109472)
Tian Gao
2023-11-03
1
-1/+7
*
gh-106168: Revert the "size before item" setting (#111683)
scoder
2023-11-03
1
-1/+1
*
gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...
Irit Katriel
2023-11-03
2
-25/+10
*
GH-109369 Add vectorcall to `PyLong_Type` (GH-111642)
Mark Shannon
2023-11-02
1
-0/+25
*
gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...
Irit Katriel
2023-11-02
2
-19/+11
*
gh-108082: Use PyErr_FormatUnraisable() (GH-111580)
Serhiy Storchaka
2023-11-02
5
-51/+19
*
gh-111544: Fix mimalloc build on AIX (#111593)
Ayappan Perumal
2023-11-02
1
-2/+2
*
gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)
Victor Stinner
2023-11-01
5
-89/+19
*
gh-90815: Exclude mimalloc .c files from Windows build (#111532)
Dino Viehland
2023-10-31
1
-9/+10
*
gh-76785: Move the Cross-Interpreter Code to Its Own File (gh-111502)
Eric Snow
2023-10-30
1
-0/+1
*
gh-90815: Fix mimalloc build on WASI (#111524)
Victor Stinner
2023-10-30
1
-0/+1
*
gh-90815: Fix _PyMem_MimallocEnabled() compiler warning (#111522)
Victor Stinner
2023-10-30
1
-6/+6
*
gh-110481: Implement biased reference counting (gh-110764)
Sam Gross
2023-10-30
4
-17/+132
*
gh-90815: Add mimalloc memory allocator (#109914)
Dino Viehland
2023-10-30
30
-19/+13209
*
GH-111339: Fix initialization and finalization of static optimizer types (GH-...
Savannah Ostrowski
2023-10-29
1
-0/+6
*
gh-89519: Remove classmethod descriptor chaining, deprecated since 3.11 (gh-1...
Raymond Hettinger
2023-10-27
1
-4/+0
*
gh-111354: define names for RESUME oparg values (#111365)
Irit Katriel
2023-10-26
1
-1/+2
*
gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)
Irit Katriel
2023-10-26
3
-9/+37
*
gh-100762: Fix optimization in gen_close (#111069)
Irit Katriel
2023-10-25
1
-2/+3
*
GH-94438: Restore ability to jump over None tests (GH-111237)
Savannah Ostrowski
2023-10-24
1
-0/+2
*
gh-109894: Fix initialization of static `MemoryError` in subinterpreter (gh-1...
Radislav Chugunov
2023-10-23
1
-4/+0
*
gh-67565: Remove redundant C-contiguity checks (GH-105521)
Furkan Onder
2023-10-23
2
-58/+2
*
gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)
Victor Stinner
2023-10-20
1
-1/+8
*
gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)
Victor Stinner
2023-10-20
2
-3/+10
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
30
-26/+59
*
gh-110864: TypeVar constructor: Partially revert gh-110784, `constraints` can...
Nikita Sobolev
2023-10-16
1
-20/+14
*
gh-110907: AC: Disallow using `*` with vararg (#110908)
Nikita Sobolev
2023-10-16
2
-4/+3
*
gh-110525: Delete `test_c_api` method from `set` object (#110688)
Nikita Sobolev
2023-10-13
1
-153/+0
*
gh-110782: Fix crash when TypeVar is constructed with keyword args (#110784)
Jelle Zijlstra
2023-10-12
1
-18/+20
*
gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSiz...
Serhiy Storchaka
2023-10-11
1
-0/+76
*
GH-104584: Fix refleak when tracing through calls (GH-110593)
Brandt Bucher
2023-10-10
1
-1/+1
*
gh-76785: Add SendChannel.send_buffer() (#110246)
Eric Snow
2023-10-09
1
-0/+22
*
gh-110222: Add support of PyStructSequence in copy.replace() (GH-110223)
Xuehai Pan
2023-10-04
1
-1/+75
*
gh-110235: Raise TypeError for duplicate/unknown fields in PyStructSequence c...
Xuehai Pan
2023-10-04
1
-7/+22
*
gh-107073: Make PyObject_VisitManagedDict() public (#108763)
Victor Stinner
2023-10-02
3
-13/+13
[next]