summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-27 14:36:54 (GMT)
committerGitHub <noreply@github.com>2023-07-27 14:36:54 (GMT)
commit1dbb427dd67a1de5b3662cbda0277ff2c3b18095 (patch)
treef100acf83ae488e61f802d26015de4f870156c5f /Include
parentc6539b36c163efff3d6ed02b938a6151325f4db7 (diff)
downloadcpython-1dbb427dd67a1de5b3662cbda0277ff2c3b18095.zip
cpython-1dbb427dd67a1de5b3662cbda0277ff2c3b18095.tar.gz
cpython-1dbb427dd67a1de5b3662cbda0277ff2c3b18095.tar.bz2
gh-107196: Remove _PyArg_VaParseTupleAndKeywordsFast() function (#107197)
Remove the private _PyArg_VaParseTupleAndKeywordsFast() function: it is no longer used.
Diffstat (limited to 'Include')
-rw-r--r--Include/cpython/modsupport.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/modsupport.h b/Include/cpython/modsupport.h
index 376336b..cfc2c2c 100644
--- a/Include/cpython/modsupport.h
+++ b/Include/cpython/modsupport.h
@@ -52,8 +52,6 @@ PyAPI_FUNC(int) _PyArg_ParseStackAndKeywords(
PyObject *kwnames,
struct _PyArg_Parser *,
...);
-PyAPI_FUNC(int) _PyArg_VaParseTupleAndKeywordsFast(PyObject *, PyObject *,
- struct _PyArg_Parser *, va_list);
PyAPI_FUNC(PyObject * const *) _PyArg_UnpackKeywords(
PyObject *const *args, Py_ssize_t nargs,
PyObject *kwargs, PyObject *kwnames,