commit | 7339f4c72d2eaf9fef2416d3328207dcc655f578 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Jan 10 17:09:00 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Jan 10 17:09:00 2001 +0000 |
tree | 9bc6fe954957d130ec6299a773cf29822b905a1f | |
parent | ef34274d3bec2ac513f6e67bca9eb2ecda5a0cd4 [diff] |
Fix weird typo caused by ANSIfication (nobody bothered to test it since! :-( ).
diff --git a/Demo/embed/demo.c b/Demo/embed/demo.c index 26df355..581365f 100644 --- a/Demo/embed/demo.c +++ b/Demo/embed/demo.c
@@ -46,7 +46,7 @@ /* 'self' is not used */ static PyObject * -xyzzy_foo(PyObject *self, PyObjecT *args) +xyzzy_foo(PyObject *self, PyObject* args) { if (!PyArg_ParseTuple(args, "")) return NULL;