gh-117511: Make PyMutex public in the non-limited API (#117731)

This commit is contained in:
Sam Gross 2024-06-20 11:29:08 -04:00 committed by GitHub
parent e8e151d471
commit 3af7263037
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 185 additions and 110 deletions

View file

@ -14,7 +14,7 @@ _PyCriticalSection_BeginSlow(_PyCriticalSection *c, PyMutex *m)
c->prev = (uintptr_t)tstate->critical_section;
tstate->critical_section = (uintptr_t)c;
_PyMutex_LockSlow(m);
PyMutex_Lock(m);
c->mutex = m;
}