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 17:49:00 +0200
commit39b72b435697d25785bf4b142abdf37cf89ebcae (patch)
tree1f7634d2d56c394177a6d28748da9ecc68ed7757
parent2cb80413790fcac327517a14b85813e1612f075f (diff)
downloadcython-39b72b435697d25785bf4b142abdf37cf89ebcae.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