minor tweak
authorStefan Behnel <stefan_ml@behnel.de>
Mon, 4 Feb 2013 18:34:05 +0000 (19:34 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Mon, 4 Feb 2013 18:34:05 +0000 (19:34 +0100)
Cython/Compiler/FlowControl.pxd

index ceb6955..c35dea5 100644 (file)
@@ -84,7 +84,8 @@ cdef class Uninitialized:
 cdef class Unknown:
     pass
 
-@cython.locals(dirty=bint, block=ControlBlock, parent=ControlBlock)
+@cython.locals(dirty=bint, block=ControlBlock, parent=ControlBlock,
+               assmt=NameAssignment)
 cdef check_definitions(ControlFlow flow, dict compiler_directives)
 
 @cython.final