projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae7e588
)
fix
author
Stefan Behnel
<scoder@users.berlios.de>
Sat, 13 Mar 2010 10:03:28 +0000
(11:03 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sat, 13 Mar 2010 10:03:28 +0000
(11:03 +0100)
Cython/Compiler/Nodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Nodes.py
b/Cython/Compiler/Nodes.py
index 2f2ee886a69c40fd4509bf5ae04ebd5c1aaaf78d..fb647d9ddb15f15fadf70917e4cb46899c0cc314 100644
(file)
--- a/
Cython/Compiler/Nodes.py
+++ b/
Cython/Compiler/Nodes.py
@@
-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