We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63f03e7 commit 9647f90Copy full SHA for 9647f90
Doc/data/threadsafety.dat
@@ -56,9 +56,12 @@ PyList_SET_ITEM:compatible:
56
# Bulk operations - hold per-object lock for duration
57
PyList_GetSlice:atomic:
58
PyList_AsTuple:atomic:
59
-PyList_Reverse:atomic:
60
PyList_Clear:atomic:
61
+# Reverse - protected by per-object critical section; swaps
62
+# elements so lock-free readers may observe intermediate states
63
+PyList_Reverse:shared:
64
+
65
# Slice assignment - lock target list; also lock source when it
66
# is a list
67
PyList_SetSlice:shared:
0 commit comments