fix
authorStefan Behnel <scoder@users.berlios.de>
Sat, 13 Mar 2010 10:03:28 +0000 (11:03 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 13 Mar 2010 10:03:28 +0000 (11:03 +0100)
Cython/Compiler/Nodes.py

index 2f2ee886a69c40fd4509bf5ae04ebd5c1aaaf78d..fb647d9ddb15f15fadf70917e4cb46899c0cc314 100644 (file)
@@ -4497,7 +4497,7 @@ class ExceptClauseNode(Node):
         else:
             code.putln("/*except:*/ {")
 
-        if not getattr(self.body, 'stats', True) and
+        if not getattr(self.body, 'stats', True) and \
                 self.excinfo_target is None and self.target is None):
             # most simple case: no exception variable, empty body (pass)
             # => reset the exception state, done