https://github.com/python/cpython/commit/6c2d42f3f23848f8527fb9d2db737ee419433895
commit: 6c2d42f3f23848f8527fb9d2db737ee419433895
branch: 3.14
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2025-08-27T16:53:39+03:00
summary:

[3.14] GH-132775: Fix argument parsing for ``_interpqueues.put()`` (GH-137686) 
(#138034)

Co-authored-by: Adam Turner <[email protected]>

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]

Reply via email to