diff options
author | Mark Florisson <markflorisson88@gmail.com> | 2011-05-01 14:56:02 +0200 |
---|---|---|
committer | Mark Florisson <markflorisson88@gmail.com> | 2011-05-01 14:56:02 +0200 |
commit | 9ec9a66f1c419fd642058744f6dc5ca8952eb61e (patch) | |
tree | ed213567b4b0a8a0b9a911724231430f045b382a /Cython/Compiler/CythonScope.py | |
parent | a17fac096eaa713e6e9f129e59c47e2a37b86320 (diff) | |
download | cython-9ec9a66f1c419fd642058744f6dc5ca8952eb61e.tar.gz |
Pass some more tests
Diffstat (limited to 'Cython/Compiler/CythonScope.py')
-rw-r--r-- | Cython/Compiler/CythonScope.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cython/Compiler/CythonScope.py b/Cython/Compiler/CythonScope.py index deffaffb4..5ae8f8a6b 100644 --- a/Cython/Compiler/CythonScope.py +++ b/Cython/Compiler/CythonScope.py @@ -22,6 +22,8 @@ class CythonScope(ModuleScope): if type: return type + return super(CythonScope, self).lookup_type(name) + def create_cython_scope(context): create_utility_scope(context) return CythonScope(context) |