https://github.com/python/cpython/commit/79aeeb880ed968dd49e2807ad1e62ad8174c1361
commit: 79aeeb880ed968dd49e2807ad1e62ad8174c1361
branch: main
author: Adam Turner <[email protected]>
committer: AA-Turner <[email protected]>
date: 2025-08-22T00:00:58+02:00
summary:
GH-132775: Fix argument parsing for ``_interpqueues.put()`` (#137686)
files:
M Modules/_interpqueuesmodule.c
diff --git a/Modules/_interpqueuesmodule.c b/Modules/_interpqueuesmodule.c
index e5afe746f90bdc..03ed081efbae0d 100644
--- a/Modules/_interpqueuesmodule.c
+++ b/Modules/_interpqueuesmodule.c
@@ -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))
{
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]