From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 21 Aug 2025 22:00:58 +0000 (+0200) Subject: GH-132775: Fix argument parsing for ``_interpqueues.put()`` (#137686) X-Git-Tag: v3.15.0a1~623 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=79aeeb880ed968dd49e2807ad1e62ad8174c1361;p=thirdparty%2FPython%2Fcpython.git GH-132775: Fix argument parsing for ``_interpqueues.put()`` (#137686) --- diff --git a/Modules/_interpqueuesmodule.c b/Modules/_interpqueuesmodule.c index e5afe746f90b..03ed081efbae 100644 --- a/Modules/_interpqueuesmodule.c +++ b/Modules/_interpqueuesmodule.c @@ -1603,7 +1603,7 @@ queuesmod_put(PyObject *self, PyObject *args, PyObject *kwds) PyObject *obj; int unboundarg = -1; int fallbackarg = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&O|ii$p:put", kwlist, + if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&O|ii:put", kwlist, qidarg_converter, &qidarg, &obj, &unboundarg, &fallbackarg)) {