COMMITS
/ Objects/listobject.c March 22, 2026
S
[3.13] gh-146056: Fix repr() for lists containing NULLs (GH-146129) (GH-146155) (GH-146271)
Serhiy Storchaka committed
July 30, 2025
N
[3.13] GH-133136: Revise QSBR to reduce excess memory held (gh-135473) (gh-136480)
Neil Schemenauer committed
April 23, 2025
V
[3.13] gh-132713: Fix repr(list) race condition (#132801) (#132809)
Victor Stinner committed
February 6, 2025
February 5, 2025
K
[3.13] gh-129643: fix thread safety of `PyList_SetItem` (#129644) (#129677)
Kumar Aditya committed
December 26, 2024
M
[3.13] Clean up redundant ifdef in list getitem (GH-128257) (#128276)
Miss Islington (bot) committed
December 4, 2024
S
[3.13] gh-127536: Add missing locks in listobject.c (GH-127580) (GH-127613)
Sam Gross committed
December 3, 2024
M
[3.13] gh-127521: Mark list as "shared" before resizing if necessary (GH-127524) (GH-127533)
Miss Islington (bot) committed
June 21, 2024
S
[3.13] gh-119344: Make critical section API public (GH-119353) (#120856)
Sam Gross committed
M
[3.13] gh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (GH-120442) (#120826)
Miss Islington (bot) committed
June 11, 2024
M
[3.13] gh-120298: Fix use-after-free in `list_richcompare_impl` (GH-120303) (#120340)
Miss Islington (bot) committed
May 21, 2024
M
[3.13] gh-119053: Implement the fast path for list.__getitem__ (gh-119112) (gh-119309)
Miss Islington (bot) committed
May 9, 2024
M
[3.13] gh-118561: Fix crash involving list.extend in free-threaded build (GH-118723) (#118863)
Miss Islington (bot) committed
May 2, 2024
D
gh-117657: Fix TSAN list set failure (#118260)
Dino Viehland committed
April 18, 2024
D
gh-112069: Add _PySet_NextEntryRef to be thread-safe. (gh-117990)
Donghee Na committed
April 2, 2024
S
gh-112087: Make `list.extend(dict)` behave atomically (#117438)
Sam Gross committed
March 22, 2024
T
GH-116939: Rewrite binarysort() (#116940)
Tim Peters committed
March 19, 2024
D
gh-116621: Specialize list.extend for dict items (gh-116888)
Donghee Na committed
March 18, 2024
V
Revert "gh-96844: Improve error message of list.remove (gh-106455)" (#116956)
Victor Stinner committed
March 15, 2024
D
gh-116621: Specialize list.extend for dict keys/values (gh-116816)
Donghee Na committed
March 13, 2024
T
GH-116554: Relax list.sort()'s notion of "descending" runs (#116578)
Tim Peters committed
March 12, 2024
D
gh-116621: Set manual critical section for list.extend (gh-116657)
Donghee Na committed
March 10, 2024
D
gh-112087: Make list.sort to be thread-safe for PEP 703. (gh-116553)
Donghee Na committed
March 9, 2024
D
gh-112087: Store memory allocation information into _PyListArray (gh-116529)
Donghee Na committed
March 7, 2024
K
gh-116381: Remove bad specializations, add fail stats (GH-116464)
Ken Jin committed
March 6, 2024
K
gh-116381: Specialize CONTAINS_OP (GH-116385)
Ken Jin committed
March 5, 2024
D
gh-112087: Update list_get_item_ref to optimistically avoid locking (gh-116353)
Donghee Na committed
D
gh-112087: Make list_{slice, ass_slice, subscript} to be threadsafe (gh-116233)
Donghee Na committed
March 1, 2024
D
gh-112087: Use QSBR technique for list_new/clear for free-thread build (gh-115875)
Donghee Na committed
February 21, 2024
February 20, 2024
S
gh-115733: Fix crash involving exhausted list iterator (#115740)
Sam Gross committed
February 16, 2024
D
gh-111968: Split _Py_dictkeys_freelist out of _Py_dict_freelist (gh-115505)
Donghee Na committed
February 14, 2024
D
gh-112087: Make __sizeof__ and listiter_{len, next} to be threadsafe (gh-114843)
Donghee Na committed
D
gh-111968: Rename freelist related struct names to Eric's suggestion (gh-115329)
Donghee Na committed
February 10, 2024
D
February 6, 2024
D
gh-112087: Make list_{count, index, contains} to be thread-safe. (gh-114916)
Donghee Na committed
February 2, 2024
S
gh-114329: Add `PyList_GetItemRef` function (GH-114504)
Sam Gross committed
February 1, 2024
D
gh-111968: Use per-thread freelists for dict in free-threading (gh-114323)
Donghee Na committed
January 31, 2024
D
gh-112087: Make PyList_{Append,Size,GetSlice} to be thread-safe (gh-114651)
Donghee Na committed
January 26, 2024
D
gh-112087: Make list_repr and list_length to be thread-safe (gh-114582)
Donghee Na committed
D
gh-111968: Unify freelist naming schema to Eric's suggestion (gh-114581)
Donghee Na committed
January 18, 2024
D
gh-112087: Remove duplicated critical_section (gh-114268)
Donghee Na committed
January 16, 2024
D
gh-112087: Update list impl to be thread-safe with manual CS (gh-113863)
Donghee Na committed
January 12, 2024
D
gh-111968: Explicit handling for finalized freelist (gh-113929)
Donghee Na committed
January 10, 2024
D
gh-111968: Unify naming scheme for freelist (gh-113919)
Donghee Na committed
January 9, 2024
D
gh-111968: Introduce _PyFreeListState and _PyFreeListState_GET API (gh-113584)
Donghee Na committed
D
gh-112087: Update list.{pop,clear,reverse,remove} to use CS (gh-113764)
Donghee Na committed
January 2, 2024
C
gh-111178: Avoid calling functions from incompatible pointer types in listobject.c (GH-112820)
Christopher Chavez committed
November 13, 2023
V
gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)
Victor Stinner committed
November 3, 2023
S
gh-106168: Revert the "size before item" setting (#111683)
scoder committed