- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 33.3k
Closed as not planned
Labels
topic-free-threadingtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
Bug description:
Some areas of typeobject are still not thread safe after fixing mro. Those at least include:
- tp_flags- most of these that change at runtime are probably protected by locks after MRO (e.g.- Py_TPFLAGS_VALID_VERSION_TAGand various flags set while readying). But at least some get modified outside of the lock still (e.g. Py_TPFLAGS_IS_ABSTRACT,- Py_TPFLAGS_SEQUENCEand- Py_TPFLAGS_MAPPINGvia the- abcmodule). These should maybe all be atomic and/ors or protected by the same type lock.
- tp_watched- also needs atomic and/or in- PyType_Watchand- PyType_Unwatch
CPython versions tested on:
CPython main branch
Operating systems tested on:
No response
Metadata
Metadata
Assignees
Labels
topic-free-threadingtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error