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
/
tupleobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (...
Victor Stinner
2020-05-19
1
-6/+0
*
bpo-40521: Disable free lists in subinterpreters (GH-19937)
Victor Stinner
2020-05-05
1
-0/+8
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
1
-11/+7
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2/+2
*
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner
2020-04-08
1
-1/+2
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-0/+1
*
bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980)
Dong-hee Na
2020-03-16
1
-2/+1
*
bpo-37207: Use _PyArg_CheckPositional() for tuple vectorcall (GH-18986)
Dong-hee Na
2020-03-16
1
-2/+2
*
Fix a possible refleak in tupleobject.c (GH-19018)
Hai Shi
2020-03-15
1
-1/+3
*
bpo-37207: Use PEP 590 vectorcall to speed up tuple() (GH-18936)
Dong-hee Na
2020-03-13
1
-0/+21
*
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester
2020-03-06
1
-1/+1
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-1/+1
*
bpo-39573: Use Py_REFCNT() macro (GH-18388)
Victor Stinner
2020-02-06
1
-1/+1
*
bpo-39542: Simplify _Py_NewReference() (GH-18332)
Victor Stinner
2020-02-03
1
-2/+7
*
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
1
-46/+0
*
Correct overflow check in PyTuple_New() (GH-14838)
Sergey Fedoseev
2019-09-09
1
-2/+2
*
bpo-36030: Fix a possible segfault in PyTuple_New() (GH-15670)
Zackery Spytz
2019-09-04
1
-0/+3
*
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner
2019-08-26
1
-1/+1
*
bpo-36030: Improve performance of some tuple operations (GH-12052)
Sergey Fedoseev
2019-08-14
1
-32/+71
*
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka
2019-08-04
1
-2/+1
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-4/+4
*
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner
2019-05-27
1
-1/+1
*
bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)
Zackery Spytz
2019-05-17
1
-1/+2
*
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer
2019-05-10
1
-2/+2
*
bpo-36030: Add _PyTuple_FromArray() function (GH-11954)
Sergey Fedoseev
2019-02-25
1
-16/+17
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-2/+3
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271)
Victor Stinner
2018-11-01
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-1...
Pablo Galindo
2018-10-28
1
-4/+4
*
bpo-34751: improved hash function for tuples (GH-9471)
jdemeyer
2018-10-28
1
-25/+46
*
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
Victor Stinner
2018-08-03
1
-1/+1
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-2/+2
*
closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800)
Eddie Elizondo
2018-02-22
1
-1/+1
*
bpo-32746: Fix multiple typos (GH-5144)
Leo Arias
2018-02-04
1
-1/+1
*
bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)
Serhiy Storchaka
2017-12-03
1
-3/+0
*
bpo-32030: Add more options to _PyCoreConfig (#4485)
Victor Stinner
2017-11-21
1
-8/+3
*
bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...
stratakis
2017-11-02
1
-17/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
Expand the PySlice_GetIndicesEx macro. (#1023)
Serhiy Storchaka
2017-04-08
1
-3/+3
*
bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...
Serhiy Storchaka
2017-03-30
1
-3/+3
*
bpo-20186: Convert tuple object implementation to Argument Clinic. (#614)
Serhiy Storchaka
2017-03-19
1
-46/+74
*
bpo-29737: Optimize concatenating with empty tuple. (#524)
Serhiy Storchaka
2017-03-06
1
-0/+8
*
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() an...
Serhiy Storchaka
2017-03-06
1
-8/+3
*
bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)
Serhiy Storchaka
2017-03-05
1
-0/+6
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-4/+2
*
Issue #1621: Avoid signed overflow in list and tuple operations
Martin Panter
2016-07-25
1
-2/+2
*
Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,
Serhiy Storchaka
2016-07-03
1
-0/+10
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
|
\
[next]