Commit 34478b2a authored by Stefan Behnel's avatar Stefan Behnel

minor comment fix

parent ea6a71ac
......@@ -4467,7 +4467,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)
......@@ -4510,7 +4510,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