mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
gh-117511: Make PyMutex public in the non-limited API (#117731)
This commit is contained in:
parent
e8e151d471
commit
3af7263037
18 changed files with 185 additions and 110 deletions
|
|
@ -2372,7 +2372,7 @@ new_reference(PyObject *op)
|
|||
#else
|
||||
op->ob_tid = _Py_ThreadId();
|
||||
op->_padding = 0;
|
||||
op->ob_mutex = (struct _PyMutex){ 0 };
|
||||
op->ob_mutex = (PyMutex){ 0 };
|
||||
op->ob_gc_bits = 0;
|
||||
op->ob_ref_local = 1;
|
||||
op->ob_ref_shared = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue