From ec25d3bc601c368c24eb23d217d39cb9c767a71c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 4 Feb 2013 22:43:26 +0100 Subject: [PATCH] add some more typing in FlowControl.py --- Cython/Compiler/FlowControl.pxd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cython/Compiler/FlowControl.pxd b/Cython/Compiler/FlowControl.pxd index c35dea5..b3b266e 100644 --- a/Cython/Compiler/FlowControl.pxd +++ b/Cython/Compiler/FlowControl.pxd @@ -66,6 +66,8 @@ cdef class ControlFlow: cpdef mark_argument(self, lhs, rhs, entry) cpdef mark_deletion(self, node, entry) cpdef mark_reference(self, node, entry) + + @cython.locals(block=ControlBlock, parent=ControlBlock, unreachable=set) cpdef normalize(self) @cython.locals(bit=object, assmts=AssignmentList, -- 2.7.4