gh-132070: add PyObject_Realloc suppression in free-threading (#132468)

This commit is contained in:
Kumar Aditya 2025-04-16 06:10:56 +05:30 committed by GitHub
parent d19af00b90
commit 4b15d105a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,3 +43,7 @@ race_top:rangeiter_next
# of ptr-sized copies to be thread-safe. (Issue #129069)
race:list_ass_slice_lock_held
race:list_inplace_repeat_lock_held
# PyObject_Realloc internally does memcpy which isn't atomic so can race
# with non-locking reads. See #132070
race:PyObject_Realloc