Commit 7339f4c7 authored by Guido van Rossum's avatar Guido van Rossum

Fix weird typo caused by ANSIfication (nobody bothered to test it

since! :-( ).
parent ef34274d
...@@ -46,7 +46,7 @@ main(int argc, char **argv) ...@@ -46,7 +46,7 @@ main(int argc, char **argv)
/* 'self' is not used */ /* 'self' is not used */
static PyObject * static PyObject *
xyzzy_foo(PyObject *self, PyObjecT *args) xyzzy_foo(PyObject *self, PyObject* args)
{ {
if (!PyArg_ParseTuple(args, "")) if (!PyArg_ParseTuple(args, ""))
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment