Skip to content
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0c8dcfc
gh-129069: make list ass_slice and memory_repeat safe
tom-pytel Mar 29, 2025
67c9459
📜🤖 Added by blurb_it.
blurb-it[bot] Mar 29, 2025
e460b5a
include atomic wrappers in pycore_list.h
tom-pytel Mar 29, 2025
fcdb634
provisional fix to compile on windows
tom-pytel Mar 29, 2025
b1e9216
requested changes so far
tom-pytel Apr 1, 2025
944abf0
Merge branch 'main' into fix-issue-129069
tom-pytel Apr 1, 2025
3a9e249
Merge branch 'main' into fix-issue-129069
tom-pytel Apr 4, 2025
0f96d58
remove atomic load and rename
tom-pytel Apr 8, 2025
47f3d81
Merge branch 'main' into fix-issue-129069
tom-pytel Apr 8, 2025
adf2c15
Merge branch 'main' into fix-issue-129069
tom-pytel Apr 14, 2025
b569865
Merge branch 'main' into fix-issue-129069
tom-pytel Apr 23, 2025
87d48ff
Merge branch 'main' into fix-issue-129069
tom-pytel May 18, 2025
26ee081
requested variable name changes
tom-pytel May 18, 2025
ac4e968
use _Py_IS_ALIGNED()
tom-pytel Aug 1, 2025
890186e
Merge branch 'main' into fix-issue-129069
tom-pytel Aug 1, 2025
7c250fa
Py_ssize_t arg -> size_t
tom-pytel Aug 2, 2025
a0dca26
Merge branch 'main' into fix-issue-129069
tom-pytel Aug 2, 2025
80c12d2
add tests and remove suppressions
tom-pytel Aug 2, 2025
f16eb60
Merge branch 'main' into fix-issue-129069
tom-pytel Aug 2, 2025
e36e314
Merge branch 'main' into fix-issue-129069
tom-pytel Aug 15, 2025
f220d83
add list free-threading tsan test to test_list.py
tom-pytel Aug 15, 2025
bed61d9
misc fix test_list.test_free_threading, no tsan req
tom-pytel Aug 15, 2025
656a5a0
fix list tsan test
tom-pytel Aug 27, 2025
d34d11a
change news
tom-pytel Aug 27, 2025
8610e27
Merge branch 'main' into fix-issue-129069
tom-pytel Aug 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change news
  • Loading branch information
tom-pytel committed Aug 27, 2025
commit d34d11a607e13c070b8fcc75a11180e368676fa5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Fix data race and avoid jagged writes in ``list.list_ass_slice``.
Fix data race when assigning list slices concurrently.
Loading