projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9f4159
)
init temp allocation error checker to None to fix AttributeError
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 9 Jan 2009 07:44:58 +0000
(08:44 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 9 Jan 2009 07:44:58 +0000
(08:44 +0100)
Cython/Compiler/ExprNodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/ExprNodes.py
b/Cython/Compiler/ExprNodes.py
index 8f5da38ed1be9505c50258a059d1d4c935e78c25..6335675a25b9a0210788e12573f339b6bda5d864 100644
(file)
--- a/
Cython/Compiler/ExprNodes.py
+++ b/
Cython/Compiler/ExprNodes.py
@@
-612,7
+612,8
@@
class RemoveAllocateTemps(type):
class NewTempExprNode(ExprNode):
backwards_compatible_result = None
temp_code = None
-
+ old_temp = None # error checker for multiple frees etc.
+
# Do not enable this unless you are trying to make all ExprNodes
# NewTempExprNodes (child nodes reached via recursion may not have
# transferred).