[3.14] GH-132775: Fix argument parsing for `_interpqueues.put()` (GH-137686) (#138034)

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2025-08-27 15:53:39 +02:00 committed by GitHub
parent f4af7176c1
commit 6c2d42f3f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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))
{