Commit ff94e372 authored by Vitja Makarov's avatar Vitja Makarov

Fix ParseTreeTransforms.pxd

parent 2eb1156a
......@@ -19,6 +19,7 @@ cdef class NormalizeTree(CythonTransform):
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)
......@@ -46,9 +47,9 @@ cdef class AlignFunctionDefinitions(CythonTransform):
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
......@@ -57,6 +58,7 @@ cdef class CreateClosureClasses(CythonTransform):
cdef list path
cdef bint in_lambda
cdef module_scope
cdef generator_class
cdef class GilCheck(VisitorTransform):
cdef list env_stack
......
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