cdef class PostParse(ScopeTrackingTransform):
cdef dict specialattribute_handlers
cdef size_t lambda_counter
+ cdef size_t genexpr_counter
cdef _visit_assignment_node(self, node, list expr_list)
cdef scope
cdef class YieldNodeCollector(TreeVisitor):
- cdef list yields
- cdef list returns
- cdef bint has_return_value
+ cdef public list yields
+ cdef public list returns
+ cdef public bint has_return_value
cdef class MarkClosureVisitor(CythonTransform):
cdef bint needs_closure
cdef list path
cdef bint in_lambda
cdef module_scope
+ cdef generator_class
cdef class GilCheck(VisitorTransform):
cdef list env_stack