From: Vitja Makarov Date: Mon, 13 Dec 2010 17:54:32 +0000 (+0300) Subject: Add closure_temps .pxd declaration X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a3f75eeaa89a4dd7b82e47d4cf15e3ffcc7a0b69;p=cython.git Add closure_temps .pxd declaration --- diff --git a/Cython/Compiler/Code.pxd b/Cython/Compiler/Code.pxd index 87de03a8..f84e0506 100644 --- a/Cython/Compiler/Code.pxd +++ b/Cython/Compiler/Code.pxd @@ -34,6 +34,8 @@ cdef class FunctionState: cdef public dict temps_used_type cdef public size_t temp_counter + cdef public object closure_temps + @cython.locals(n=size_t) cpdef new_label(self, name=*) cpdef tuple get_loop_labels(self)