Skip to content

Commit 3a05be8

Browse files
AA-Turnermiss-islington
authored andcommitted
GH-132775: Fix argument parsing for _interpqueues.put() (GH-137686)
(cherry picked from commit 79aeeb8) Co-authored-by: Adam Turner <[email protected]>
1 parent 132b866 commit 3a05be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_interpqueuesmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1603,7 +1603,7 @@ queuesmod_put(PyObject *self, PyObject *args, PyObject *kwds)
16031603
PyObject *obj;
16041604
int unboundarg = -1;
16051605
int fallbackarg = -1;
1606-
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&O|ii$p:put", kwlist,
1606+
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&O|ii:put", kwlist,
16071607
qidarg_converter, &qidarg, &obj,
16081608
&unboundarg, &fallbackarg))
16091609
{

0 commit comments

Comments
 (0)