summaryrefslogtreecommitdiff
path: root/Cython/Compiler/CythonScope.py
diff options
context:
space:
mode:
authorMark Florisson <markflorisson88@gmail.com>2011-05-01 14:56:02 +0200
committerMark Florisson <markflorisson88@gmail.com>2011-05-01 14:56:02 +0200
commit9ec9a66f1c419fd642058744f6dc5ca8952eb61e (patch)
treeed213567b4b0a8a0b9a911724231430f045b382a /Cython/Compiler/CythonScope.py
parenta17fac096eaa713e6e9f129e59c47e2a37b86320 (diff)
downloadcython-9ec9a66f1c419fd642058744f6dc5ca8952eb61e.tar.gz
Pass some more tests
Diffstat (limited to 'Cython/Compiler/CythonScope.py')
-rw-r--r--Cython/Compiler/CythonScope.py2
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)