Skip to content

Commit a458d2d

Browse files
miss-islingtonAA-Turner
authored andcommitted
[3.14] pythonGH-132775: Fix argument parsing for _interpqueues.put() (pythonGH-137686) (python#138034)
Co-authored-by: Adam Turner <[email protected]>
1 parent 80286d3 commit a458d2d

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)