summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-08-12 18:16:43 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-08-12 18:16:43 (GMT)
commitd459f536c50256e66bedf999c063d49f2a59fcc6 (patch)
treee27460cf13e9d680987c1ec8bb21e6c61c50e890
parent5e897959db37752da4c6b476903cdc5e1357093c (diff)
downloadcpython-d459f536c50256e66bedf999c063d49f2a59fcc6.zip
cpython-d459f536c50256e66bedf999c063d49f2a59fcc6.tar.gz
cpython-d459f536c50256e66bedf999c063d49f2a59fcc6.tar.bz2
code_new(): Wouldn't compile on Windows, because of gcc'ism.
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
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;