Commit b9973ded authored by Stefan Behnel's avatar Stefan Behnel

minor comment fix

--HG--
extra : transplant_source : %A1/-i%8Cd%C3%DBCy%19%7C%19%87%B9%C5%60%B9P%F5
parent 9e2fc1bc
......@@ -4431,7 +4431,7 @@ class SingleAssignmentNode(AssignmentNode):
self.rhs = self.rhs.coerce_to(dtype, env)
if use_temp or self.rhs.is_attribute:
# cdef attribute access traverses pointers
# (cdef) attribute access is not safe as it traverses pointers
self.rhs = self.rhs.coerce_to_temp(env)
else:
self.rhs = self.rhs.coerce_to_simple(env)
......@@ -4474,7 +4474,7 @@ class CascadedAssignmentNode(AssignmentNode):
self.rhs.analyse_types(env)
if use_temp or self.rhs.is_attribute:
# (cdef) attribute access traverses pointers
# (cdef) attribute access is not safe as it traverses pointers
self.rhs = self.rhs.coerce_to_temp(env)
else:
self.rhs = self.rhs.coerce_to_simple(env)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment