Skip to content

Commit 79aeeb8

Browse files
authored
GH-132775: Fix argument parsing for _interpqueues.put() (#137686)
1 parent ba8e20b commit 79aeeb8

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)