Skip to content

Commit db92aba

Browse files
committed
Fix argument parsing for _interpqueues.put()
1 parent 654b8d9 commit db92aba

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)