summaryrefslogtreecommitdiffstats
path: root/Include/cpython/dictobject.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2022-08-04 12:03:07 (GMT)
committerGitHub <noreply@github.com>2022-08-04 12:03:07 (GMT)
commit312dab29a3f83940c501caadda9e653e1c7209b1 (patch)
treeae6a64b8a6656cee443452181e7dd809c79a1781 /Include/cpython/dictobject.h
parent2ab560105b9bfda503148e66e58d1d9a6031745e (diff)
downloadcpython-312dab29a3f83940c501caadda9e653e1c7209b1.zip
cpython-312dab29a3f83940c501caadda9e653e1c7209b1.tar.gz
cpython-312dab29a3f83940c501caadda9e653e1c7209b1.tar.bz2
Revert "[3.11] GH-92678: Expose managed dict clear and visit functions (GH-95246). (#95256)" (#95647)
This reverts commit 7f731943393d57cf26ed5f2353e6e53084cd55fd.
Diffstat (limited to 'Include/cpython/dictobject.h')
-rw-r--r--Include/cpython/dictobject.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/cpython/dictobject.h b/Include/cpython/dictobject.h
index b586f75..033eaeb 100644
--- a/Include/cpython/dictobject.h
+++ b/Include/cpython/dictobject.h
@@ -76,6 +76,3 @@ typedef struct {
PyAPI_FUNC(PyObject *) _PyDictView_New(PyObject *, PyTypeObject *);
PyAPI_FUNC(PyObject *) _PyDictView_Intersect(PyObject* self, PyObject *other);
-
-PyAPI_FUNC(int) _PyObject_VisitManagedDict(PyObject *self, visitproc visit, void *arg);
-PyAPI_FUNC(void) _PyObject_ClearManagedDict(PyObject *self);