From: Tim Peters Date: Thu, 12 Aug 2004 18:16:43 +0000 (+0000) Subject: code_new(): Wouldn't compile on Windows, because of gcc'ism. X-Git-Tag: v2.4a3~274 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d459f536c50256e66bedf999c063d49f2a59fcc6;p=thirdparty%2FPython%2Fcpython.git code_new(): Wouldn't compile on Windows, because of gcc'ism. --- diff --git a/Python/compile.c b/Python/compile.c index 0c405cc66071..6d384442465b 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -145,7 +145,7 @@ code_new(PyTypeObject *type, PyObject *args, PyObject *kw) int nlocals; int stacksize; int flags; - PyObject *co = NULL;; + PyObject *co = NULL; PyObject *code; PyObject *consts; PyObject *names, *ournames = NULL;