From: Stefan Behnel Date: Wed, 31 Mar 2010 10:51:31 +0000 (+0200) Subject: compiler crash fix on missing attribute X-Git-Tag: 0.13.beta0~249 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=666be97c24d5db680a886e698b7795ccdc323d86;p=cython.git compiler crash fix on missing attribute --- diff --git a/Cython/Compiler/UtilNodes.py b/Cython/Compiler/UtilNodes.py index 7d1a963b..579f9e46 100644 --- a/Cython/Compiler/UtilNodes.py +++ b/Cython/Compiler/UtilNodes.py @@ -117,6 +117,7 @@ class ResultRefNode(AtomicExprNode): # must be set externally (usually a temp name). subexprs = [] + lhs_of_first_assignment = False def __init__(self, expression): self.pos = expression.pos