diff options
Diffstat (limited to 'Cython/Compiler/Code.py')
-rw-r--r-- | Cython/Compiler/Code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/Code.py b/Cython/Compiler/Code.py index a52269b12..6f507eb66 100644 --- a/Cython/Compiler/Code.py +++ b/Cython/Compiler/Code.py @@ -891,7 +891,7 @@ class FunctionState(object): """ return [(name, type) for name, type, manage_ref in self.temps_in_use() - if manage_ref and type.is_pyobject] + if manage_ref and type.is_pyobject] def all_managed_temps(self): """Return a list of (cname, type) tuples of refcount-managed Python objects. |