From a4e9a4d14e67e55991f27872e364eb8d807f97f2 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 6 Jun 2023 17:27:37 +0200 Subject: [PATCH] gh-105373: Remove PyArg_Parse() deprecation There is no plan to deprecate PyArg_Parse(). The deprecation was added as a comment in the C API documentation in 2007 by commit 85eb8c103c9e460917911b43c6be302c30d75efb. --- Doc/c-api/arg.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst index b7cdf293d223809..43a162e55df8b76 100644 --- a/Doc/c-api/arg.rst +++ b/Doc/c-api/arg.rst @@ -439,7 +439,6 @@ API Functions .. versionadded:: 3.2 -.. XXX deprecated, will be removed .. c:function:: int PyArg_Parse(PyObject *args, const char *format, ...) Function used to deconstruct the argument lists of "old-style" functions ---