Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Modules/_multiprocessing/semaphore.c
Co-Authored-By: Paul Ganssle <p.ganssle@gmail.com>
  • Loading branch information
ericsnowcurrently and pganssle authored Sep 10, 2019
commit 2ea64ea0669525736a86005594c5d6d3c6a6ab93
2 changes: 1 addition & 1 deletion Modules/_multiprocessing/semaphore.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ semlock_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
PyObject *result;
char *name, *name_copy = NULL;
static const char *kwlist[] = {"kind", "value", "maxvalue", "name", "unlink",
NULL};
NULL};

if (!PyArg_ParseTupleAndKeywords(args, kwds, "iiisi", kwlist,
&kind, &value, &maxvalue, &name, &unlink))
Expand Down