COMMITS
/ Objects/listobject.c September 28, 2022
V
gh-97616: list_resize() checks for integer overflow (#97617)
Victor Stinner committed
September 9, 2022
N
gh-96364: Fix text signatures of `__getitem__` for `list` and `dict` (GH-96365)
Nikita Sobolev committed
July 26, 2022
P
gh-91247: Use memcpy for list and tuple repeat (#91482)
Pieter Eendebak committed
July 24, 2022
P
gh-95173: Revert commit 51ed2c56a1852cd6b09c85ba81312dc9782772ce (#95176)
Pablo Galindo Salgado committed
June 21, 2022
D
GH-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney committed
May 19, 2022
S
gh-92914: Round the allocated size for lists up to the even number (GH-92915)
Serhiy Storchaka committed
May 6, 2022
T
Issues/88027: A potential double free in list_sort_impl (#92367)
Tim Peters committed
May 3, 2022
M
Add more stats for freelist use and allocations. (GH-92211)
Mark Shannon committed
April 1, 2022
D
bpo-47009: Streamline list.append for the common case (GH-31864)
Dennis Sweeney committed
March 14, 2022
C
bpo-39829: Fix `__len__()` is called twice in list() constructor (GH-31816)
Crowthebird committed
February 23, 2022
February 8, 2022
January 23, 2022
V
bpo-46417: _PyList_Fini() clears indexerr (GH-30815)
Victor Stinner committed
January 21, 2022
V
bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764)
Victor Stinner committed
January 8, 2022
D
bpo-46235: Do all ref-counting at once during list/tuple multiplication (GH-30346)
Dennis Sweeney committed
December 9, 2021
November 8, 2021
C
bpo-45723: Prepare support for autoconf 2.71 (GH-29441)
Christian Heimes committed
October 25, 2021
T
bpo-45530: speed listobject.c's unsafe_tuple_compare() (GH-29076)
Tim Peters committed
October 21, 2021
C
bpo-45522: Allow to disable freelists on build time (GH-29056)
Christian Heimes committed
October 6, 2021
C
Fix typos in the Objects directory (GH-28766)
Christian Clauss committed
September 19, 2021
S
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka committed
September 6, 2021
T
bpo-34561: Switch to Munro & Wild "powersort" merge strategy. (#28108)
Tim Peters committed
July 29, 2021
S
bpo-44707: Fix an undefined behavior of the null pointer arithmetic (GH-27292)
Serhiy Storchaka committed
April 30, 2021
M
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon committed
February 26, 2021
B
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher committed
February 19, 2021
V
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner committed
December 1, 2020
V
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner committed
June 29, 2020
J
Fix typo in Object/listobject.c (GH-21079)
Jeong Ukjae committed
June 23, 2020
V
bpo-40521: Cleanup code of free lists (GH-21082)
Victor Stinner committed
June 22, 2020
V
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner committed
June 8, 2020
V
bpo-40887: Don't use finalized free lists (GH-20700)
Victor Stinner committed
June 5, 2020
V
bpo-40521: Make list free list per-interpreter (GH-20642)
Victor Stinner committed
May 25, 2020
S
bpo-34397: Remove redundant overflow checks in list and tuple implementation. (GH-8757)
Sergey Fedoseev committed
May 6, 2020
V
bpo-40521: Disable list free list in subinterpreters (GH-19959)
Victor Stinner committed
April 29, 2020
V
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner committed
April 14, 2020
V
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner committed
April 8, 2020
V
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner committed
April 7, 2020
G
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum committed
March 30, 2020
P
bpo-37207: Use vectorcall for list() (GH-18928)
Petr Viktorin committed
March 17, 2020
S
bpo-38373: Change list overallocating strategy. (GH-18952)
Serhiy Storchaka committed
March 4, 2020
A
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester committed
February 26, 2020
S
bpo-39737: Remove code repitition in list_richcompare (GH-18638)
sweeneyde committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
February 7, 2020
V
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner committed
V
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner committed
February 3, 2020
V
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner committed
January 27, 2020
D
bpo-39453: Add testcase for bpo-39453 (GH-18202)
Dong-hee Na committed
D
bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH-18181)
Dong-hee Na committed
January 22, 2020
D
bpo-39425: Fix list.count performance regression (GH-18119)
Dong-hee Na committed
December 31, 2019
I
bpo-38588: Optimize list comparison. (GH-17766)
Inada Naoki committed