win32_urandom():  pass the function name to PyArg_ParseTuple, for better
error msgs.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 477a135..3eb1ee8 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -7244,7 +7244,7 @@
 	PyObject* returnVal = NULL;
 
 	/* Read arguments */
-	if (! PyArg_ParseTuple(args, "i", &howMany))
+	if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
 		return NULL;
 	if (howMany < 0)
 		return PyErr_Format(PyExc_ValueError,