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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d459f536c50256e66bedf999c063d49f2a59fcc6;p=python code_new(): Wouldn't compile on Windows, because of gcc'ism. --- diff --git a/Python/compile.c b/Python/compile.c index 0c405cc660..6d38444246 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;