From d459f536c50256e66bedf999c063d49f2a59fcc6 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Thu, 12 Aug 2004 18:16:43 +0000 Subject: code_new(): Wouldn't compile on Windows, because of gcc'ism. --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index 0c405cc..6d38444 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; -- cgit v0.12