Commit 734ee793 authored by Stefan Behnel's avatar Stefan Behnel

disable redundant nogil error in NextNode (already issued from IteratorNode)

parent 92dfce8f
......@@ -2564,6 +2564,10 @@ class NextNode(AtomicExprNode):
AtomicExprNode.__init__(self, iterator.pos)
self.iterator = iterator
def nogil_check(self, env):
# ignore - errors (if any) are already handled by IteratorNode
pass
def type_dependencies(self, env):
return self.iterator.type_dependencies(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