diff options
author | Guido van Rossum <guido@python.org> | 2001-01-10 17:09:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-10 17:09:00 (GMT) |
commit | 7339f4c72d2eaf9fef2416d3328207dcc655f578 (patch) | |
tree | 9bc6fe954957d130ec6299a773cf29822b905a1f | |
parent | ef34274d3bec2ac513f6e67bca9eb2ecda5a0cd4 (diff) | |
download | cpython-7339f4c72d2eaf9fef2416d3328207dcc655f578.zip cpython-7339f4c72d2eaf9fef2416d3328207dcc655f578.tar.gz cpython-7339f4c72d2eaf9fef2416d3328207dcc655f578.tar.bz2 |
Fix weird typo caused by ANSIfication (nobody bothered to test it
since! :-( ).
-rw-r--r-- | Demo/embed/demo.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ main(int argc, char **argv) /* 'self' is not used */ static PyObject * -xyzzy_foo(PyObject *self, PyObjecT *args) +xyzzy_foo(PyObject *self, PyObject* args) { if (!PyArg_ParseTuple(args, "")) return NULL; |