From: Guido van Rossum Date: Wed, 10 Jan 2001 17:09:00 +0000 (+0000) Subject: Fix weird typo caused by ANSIfication (nobody bothered to test it X-Git-Tag: v2.1a1~352 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7339f4c72d2eaf9fef2416d3328207dcc655f578;p=python 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 26df355e5c..581365f36e 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;