mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
[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:
parent
f4af7176c1
commit
6c2d42f3f2
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue