summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-07-26 10:38:27 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-07-26 10:38:27 +0200
commitee3f6a936773681b4938a96a3817db3d7a9b324a (patch)
treee59b09b0ba6d0e8fc8d796754793a4124ed9394c
parent70046475a361d2ba180bf23b6a6ba154f7dae166 (diff)
downloadcython-ee3f6a936773681b4938a96a3817db3d7a9b324a.tar.gz
Add missing attribute declaration for FunctionState class.
-rw-r--r--Cython/Compiler/Code.pxd1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cython/Compiler/Code.pxd b/Cython/Compiler/Code.pxd
index 3037a16ee..e17e0fb1d 100644
--- a/Cython/Compiler/Code.pxd
+++ b/Cython/Compiler/Code.pxd
@@ -47,6 +47,7 @@ cdef class FunctionState:
cdef public list temps_allocated
cdef public dict temps_free
cdef public dict temps_used_type
+ cdef public set zombie_temps
cdef public size_t temp_counter
cdef public list collect_temps_stack