mirror of
https://github.com/python/cpython
synced 2026-09-27 00:38:16 +03:00
Make PyObject_VisitManagedDict() and PyObject_ClearManagedDict() functions public in Python 3.13 C API. * Rename _PyObject_VisitManagedDict() to PyObject_VisitManagedDict(). * Rename _PyObject_ClearManagedDict() to PyObject_ClearManagedDict(). * Document these functions.
3 lines
229 B
ReStructuredText
3 lines
229 B
ReStructuredText
Add :c:func:`PyObject_VisitManagedDict` and :c:func:`PyObject_ClearManagedDict`
|
|
functions which must be called by the traverse and clear functions of a type
|
|
using :c:macro:`Py_TPFLAGS_MANAGED_DICT` flag. Patch by Victor Stinner.
|