summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-04-08 11:32:32 (GMT)
committerGuido van Rossum <guido@python.org>1992-04-08 11:32:32 (GMT)
commit801dcae64de385f26963f95f825c4df395366adf (patch)
tree8132992ccee7948da0d3d110e9e2373d59f1d312 /Python
parentd9f5733a9294462222ceeda9bfd6b69b94bde39a (diff)
downloadcpython-801dcae64de385f26963f95f825c4df395366adf.zip
cpython-801dcae64de385f26963f95f825c4df395366adf.tar.gz
cpython-801dcae64de385f26963f95f825c4df395366adf.tar.bz2
reverse sense of test for CHECKEXC
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 57dc3e1..ea1a785 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1036,7 +1036,7 @@ eval_code(co, globals, locals, arg)
err = 0;
}
-#ifndef CHECKEXC
+#ifdef CHECKEXC
/* Double-check exception status */
if (why == WHY_EXCEPTION || why == WHY_RERAISE) {