◐ Shell
clean mode source ↗

gh-107073: Make PyObject_VisitManagedDict() public by vstinner · Pull Request #108763 · python/cpython

markshannon

@rwgk rwgk mentioned this pull request

Oct 3, 2023

JukkaL pushed a commit to python/mypy that referenced this pull request

Jul 8, 2024
`PyObject_VisitManagedDict` and `PyObject_ClearManagedDict` were made
public in python/cpython#108763. Both are
available from `pythoncapi_compat.h`.

Glyphack pushed a commit to Glyphack/cpython that referenced this pull request

Sep 2, 2024
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.