diff options
author | Victor Stinner <vstinner@python.org> | 2022-02-25 15:19:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-25 15:19:30 (GMT) |
commit | f780d9690f1a009a56ac0c653ec9608e6b2aeff4 (patch) | |
tree | c79cf96660edaa02a5aede8e9d5e278822454072 /Include/modsupport.h | |
parent | 8f2a337a80a283c66e1a4252839792fa229d2763 (diff) | |
download | cpython-f780d9690f1a009a56ac0c653ec9608e6b2aeff4.zip cpython-f780d9690f1a009a56ac0c653ec9608e6b2aeff4.tar.gz cpython-f780d9690f1a009a56ac0c653ec9608e6b2aeff4.tar.bz2 |
bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)
Move the private unexported _PyArg_Fini() function to the internal C
API: to the pycore_pylifecycle.h header file.
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r-- | Include/modsupport.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index 6cc2ad0..3cfefb4 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -141,8 +141,6 @@ PyAPI_FUNC(PyObject * const *) _PyArg_UnpackKeywordsWithVararg( (minpos) <= (nargs) && (nargs) <= (maxpos) && args != NULL) ? (args) : \ _PyArg_UnpackKeywords((args), (nargs), (kwargs), (kwnames), (parser), \ (minpos), (maxpos), (minkw), (buf))) - -void _PyArg_Fini(void); #endif /* Py_LIMITED_API */ // Add an attribute with name 'name' and value 'obj' to the module 'mod. |