diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-04-21 02:46:11 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-04-21 02:46:11 (GMT) |
commit | cf96de052f656c400ecfd8302d6507e4f586c365 (patch) | |
tree | 23d807a64949fa6c8035917a4e74b58b760b0709 /Python | |
parent | 9dfe4cdfa46caa3087c6c383ffa307437f4536b4 (diff) | |
download | cpython-cf96de052f656c400ecfd8302d6507e4f586c365.zip cpython-cf96de052f656c400ecfd8302d6507e4f586c365.tar.gz cpython-cf96de052f656c400ecfd8302d6507e4f586c365.tar.bz2 |
SF but #417587: compiler warnings compiling 2.1.
Repaired *some* of the SGI compiler warnings Sjoerd Mullender reported.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 4f4a646..d76c6f2 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2146,7 +2146,6 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals, opcode = NEXTOP(); oparg = oparg<<16 | NEXTARG(); goto dispatch_opcode; - break; default: fprintf(stderr, |