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-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
*
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)
Victor Stinner
2020-06-10
4
-65/+62
*
bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set ...
scoder
2020-06-10
1
-15/+20
*
bpo-40889: Optimize dict.items() ^ dict.items() (GH-20718)
Dennis Sweeney
2020-06-10
1
-0/+90
*
bpo-29882: Add _Py_popcount32() function (GH-20518)
Victor Stinner
2020-06-08
2
-9/+8
*
bpo-40887: Don't use finalized free lists (GH-20700)
Victor Stinner
2020-06-08
5
-3/+76
*
bpo-40881: Fix unicode_release_interned() (GH-20699)
Victor Stinner
2020-06-07
1
-2/+2
*
bpo-40724: Support setting buffer slots from type specs (GH-20648)
scoder
2020-06-06
1
-2/+2
*
bpo-40521: Make async gen free lists per-interpreter (GH-20643)
Victor Stinner
2020-06-05
1
-40/+38
*
bpo-40521: Make list free list per-interpreter (GH-20642)
Victor Stinner
2020-06-05
1
-31/+29
*
bpo-40521: Make frame free list per-interpreter (GH-20638)
Victor Stinner
2020-06-04
1
-49/+37
*
bpo-40521: Make slice cache per-interpreter (GH-20637)
Victor Stinner
2020-06-04
1
-14/+15
*
bpo-40521: Make float free list per-interpreter (GH-20636)
Victor Stinner
2020-06-04
1
-26/+29
*
bpo-40521: Make tuple free list per-interpreter (GH-20247)
Victor Stinner
2020-06-04
1
-58/+53
*
Don't raise an exception on normal return from generator. (GH-19473)
Mark Shannon
2020-06-04
1
-1/+2
*
Fix MSVC warning in frameobject.c (GH-20590)
Ammar Askar
2020-06-04
1
-1/+3
*
bpo-39465: Cleanup _PyUnicode_FromId() code (GH-20595)
Victor Stinner
2020-06-02
1
-10/+16
*
bpo-40839: PyDict_GetItem() requires the GIL (GH-20580)
Victor Stinner
2020-06-02
1
-29/+26
*
bpo-29882: Add an efficient popcount method for integers (#771)
Niklas Fiekas
2020-05-29
2
-1/+96
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
13
-56/+64
*
bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429)
Victor Stinner
2020-05-27
1
-1/+1
*
bpo-37999: Fix outdated __int__ and nb_int references in comments (GH-20449)
Mark Dickinson
2020-05-27
1
-8/+8
*
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...
Pablo Galindo
2020-05-27
2
-93/+11
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
11
-338/+38
*
bpo-39573: Fix buildbot failure for tupleobject.c (GH-20391)
Dong-hee Na
2020-05-25
1
-1/+1
*
bpo-34397: Remove redundant overflow checks in list and tuple implementation....
Sergey Fedoseev
2020-05-25
2
-15/+4
*
bpo-37973: Improve the docstrings of sys.float_info (GH-19218)
Zackery Spytz
2020-05-24
1
-2/+4
*
Remove spurious NULL in descrobject.c (GH-20344)
Hai Shi
2020-05-24
1
-1/+0
*
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Chris Jerdonek
2020-05-22
1
-4/+6
*
bpo-40521: Fix update_slot() when INTERN_NAME_STRINGS is not defined (#20246)
Victor Stinner
2020-05-19
1
-1/+10
*
Use _PyErr_ChainStackItem() inside gen_send_ex(). (GH-20173)
Chris Jerdonek
2020-05-18
1
-10/+2
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
1
-17/+3
*
bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-1...
Zackery Spytz
2020-05-16
1
-2/+0
*
bpo-40521: Add PyInterpreterState.unicode (GH-20081)
Victor Stinner
2020-05-13
1
-31/+33
*
bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)
Chris Jerdonek
2020-05-13
1
-10/+12
*
bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)
Victor Stinner
2020-05-13
1
-3/+3
*
bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)
scoder
2020-05-12
1
-1/+1
*
bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...
Serhiy Storchaka
2020-05-12
1
-4/+22
*
bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...
Serhiy Storchaka
2020-05-12
1
-23/+41
*
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner
2020-05-11
2
-8/+8
[next]