diff options
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_weakref.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_weakref.h b/Include/internal/pycore_weakref.h index cc6c7ff..94aadb2 100644 --- a/Include/internal/pycore_weakref.h +++ b/Include/internal/pycore_weakref.h @@ -109,7 +109,7 @@ extern Py_ssize_t _PyWeakref_GetWeakrefCount(PyObject *obj); // Clear all the weak references to obj but leave their callbacks uncalled and // intact. -extern void _PyWeakref_ClearWeakRefsExceptCallbacks(PyObject *obj); +extern void _PyWeakref_ClearWeakRefsNoCallbacks(PyObject *obj); PyAPI_FUNC(int) _PyWeakref_IsDead(PyObject *weakref); |