diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-12 18:16:43 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-12 18:16:43 (GMT) |
commit | d459f536c50256e66bedf999c063d49f2a59fcc6 (patch) | |
tree | e27460cf13e9d680987c1ec8bb21e6c61c50e890 /Python | |
parent | 5e897959db37752da4c6b476903cdc5e1357093c (diff) | |
download | cpython-d459f536c50256e66bedf999c063d49f2a59fcc6.zip cpython-d459f536c50256e66bedf999c063d49f2a59fcc6.tar.gz cpython-d459f536c50256e66bedf999c063d49f2a59fcc6.tar.bz2 |
code_new(): Wouldn't compile on Windows, because of gcc'ism.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
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; |