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
*
bpo-41493: Refactoring dictresize (GH-21751)
Inada Naoki
2020-08-07
1
-26/+41
*
bpo-41431: Optimize dict_merge for copy (GH-21674)
Inada Naoki
2020-08-04
1
-29/+67
*
A (very) slight speed improvement for iterating over bytes (#21705)
Guido van Rossum
2020-08-03
1
-6/+2
*
bpo-41342: Convert int.__round__ to Argument Clinic (GH-21549)
Serhiy Storchaka
2020-07-20
2
-8/+50
*
bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clini...
Serhiy Storchaka
2020-07-20
6
-87/+293
*
bpo-41343: Convert methods of complex to Argument Clinic (GH-21550)
Dong-hee Na
2020-07-20
2
-26/+99
*
bpo-41333: Convert OrderedDict.pop() to Argument Clinic (GH-21534)
Serhiy Storchaka
2020-07-19
4
-25/+67
*
bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)
scoder
2020-07-18
1
-7/+20
*
bpo-41262: Convert memoryview to Argument Clinic. (GH-21421)
Serhiy Storchaka
2020-07-18
2
-74/+267
*
Fix a small grammatical mistake in a comment (GH-21526)
Brett Cannon
2020-07-17
1
-1/+1
*
bpo-40941: Unify implicit and explicit state in the frame and generator objec...
Mark Shannon
2020-07-17
2
-68/+93
*
bpo-36346: Make using the legacy Unicode C API optional (GH-21437)
Serhiy Storchaka
2020-07-10
1
-23/+58
*
bpo-39573: Use the Py_TYPE() macro (GH-21433)
Victor Stinner
2020-07-10
3
-5/+5
*
bpo-41263: Convert code.__new__ to Argument Clinic (GH-21426)
Serhiy Storchaka
2020-07-10
2
-38/+173
*
bpo-29590: fix stack trace for gen.throw() with yield from (#19896)
Chris Jerdonek
2020-07-09
1
-0/+10
*
bpo-41175: Guard against a NULL pointer dereference within bytearrayobject (G...
stratakis
2020-07-08
1
-1/+3
*
bpo-36346: Undeprecate private function _PyUnicode_AsUnicode(). (GH-21336)
Serhiy Storchaka
2020-07-05
1
-6/+0
*
bpo-1635741: Fix unicode_dealloc() for mortal interned string (GH-21270)
Victor Stinner
2020-07-03
1
-4/+14
*
bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...
scoder
2020-07-03
1
-11/+30
*
bpo-1635741: Release Unicode interned strings at exit (GH-21269)
Victor Stinner
2020-07-01
1
-32/+28
*
bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933)
Inada Naoki
2020-06-30
1
-3/+20
*
bpo-36346: Prepare for removing the legacy Unicode C API (AC only). (GH-21223)
Serhiy Storchaka
2020-06-30
1
-0/+74
*
bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209)
Inada Naoki
2020-06-30
1
-33/+0
*
bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437)
Serhiy Storchaka
2020-06-29
3
-58/+26
*
Fix typo in Object/listobject.c (GH-21079)
Jeong Ukjae
2020-06-29
1
-1/+1
*
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
Inada Naoki
2020-06-29
2
-12/+1
*
bpo-41123: Remove PyUnicode_GetMax() (GH-21192)
Inada Naoki
2020-06-29
1
-14/+0
*
bpo-41123: Remove Py_UNICODE_str* functions (GH-21164)
Inada Naoki
2020-06-27
1
-88/+0
*
bpo-41103: Remove old buffer protocol support (#21117)
Inada Naoki
2020-06-25
1
-79/+0
*
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
Victor Stinner
2020-06-25
2
-51/+99
*
bpo-40521: Always create the empty tuple singleton (GH-21116)
Victor Stinner
2020-06-24
1
-48/+96
*
bpo-40521: Make Unicode latin1 singletons per interpreter (GH-21101)
Victor Stinner
2020-06-24
1
-42/+32
*
bpo-40521: Optimize PyUnicode_New(0, maxchar) (GH-21099)
Victor Stinner
2020-06-23
1
-55/+25
*
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
Victor Stinner
2020-06-23
8
-83/+123
*
bpo-40521: Make MemoryError free list per interpreter (GH-21086)
Victor Stinner
2020-06-23
1
-30/+45
*
bpo-40521: Empty frozenset is no longer a singleton (GH-21085)
Raymond Hettinger
2020-06-23
1
-33/+5
*
bpo-40521: Cleanup code of free lists (GH-21082)
Victor Stinner
2020-06-23
7
-65/+100
*
bpo-36710: Pass tstate explicitly in abstract.c (GH-21075)
Victor Stinner
2020-06-23
1
-40/+61
*
bpo-40521: Make bytes singletons per interpreter (GH-21074)
Victor Stinner
2020-06-23
9
-44/+79
*
bpo-40521: Make the empty frozenset per interpreter (GH-21068)
Victor Stinner
2020-06-23
1
-10/+15
*
bpo-40521: Make dict free lists per-interpreter (GH-20645)
Victor Stinner
2020-06-23
1
-59/+66
*
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner
2020-06-22
7
-22/+21
*
bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...
Serhiy Storchaka
2020-06-22
1
-1/+3
*
bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)
Inada Naoki
2020-06-17
1
-0/+23
*
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner
2020-06-15
8
-30/+40
*
bpo-29782: Consolidate _Py_Bit_Length() (GH-20739)
Niklas Fiekas
2020-06-15
1
-9/+16
*
bpo-40890: Fix compiler warning in dictobject.c (GH-20876)
Pablo Galindo
2020-06-15
1
-3/+2
*
bpo-40890: Add `mapping` property to dict views (GH-20749)
Dennis Sweeney
2020-06-12
1
-3/+20
*
Restrict co_code to be under INT_MAX in codeobject (GH-20628)
Ammar Askar
2020-06-10
2
-3/+11
*
bpo-39465: Use _PyInterpreterState_GET() (GH-20788)
Victor Stinner
2020-06-10
2
-6/+6
[next]