diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-22 15:04:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 15:04:34 (GMT) |
commit | 5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975 (patch) | |
tree | 288d255165674d6464a2739cf5254cc83561d9c5 /Modules/_abc.c | |
parent | c92ef6fe0e1384c090b94143cdc01e5e114a8747 (diff) | |
download | cpython-5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975.zip cpython-5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975.tar.gz cpython-5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975.tar.bz2 |
gh-106320: Move private _PySet API to the internal API (#107041)
* Add pycore_setobject.h header file.
* Move the following API to the internal C API:
* _PySet_Dummy
* _PySet_NextEntry()
* _PySet_Update()
Diffstat (limited to 'Modules/_abc.c')
-rw-r--r-- | Modules/_abc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_abc.c b/Modules/_abc.c index 8a3aa9c..9473905 100644 --- a/Modules/_abc.c +++ b/Modules/_abc.c @@ -7,6 +7,7 @@ #include "pycore_moduleobject.h" // _PyModule_GetState() #include "pycore_object.h" // _PyType_GetSubclasses() #include "pycore_runtime.h" // _Py_ID() +#include "pycore_setobject.h" // _PySet_NextEntry() #include "pycore_typeobject.h" // _PyType_GetMRO() #include "pycore_weakref.h" // _PyWeakref_GET_REF() #include "clinic/_abc.c.h" |