summaryrefslogtreecommitdiff
path: root/Cython/Compiler/CythonScope.py
diff options
context:
space:
mode:
authorMark Florisson <markflorisson88@gmail.com>2012-02-24 18:45:21 +0000
committerMark Florisson <markflorisson88@gmail.com>2012-02-25 14:36:10 +0000
commitd82d4fc3d17fb6835c3882f9c75bc9a3ba61baf7 (patch)
treea9f2466cfe567cf0ddc0944db0c352e74d61be71 /Cython/Compiler/CythonScope.py
parentcc4198330b13c9d417c412ab1264d5b292c3c122 (diff)
downloadcython-d82d4fc3d17fb6835c3882f9c75bc9a3ba61baf7.tar.gz
Move cython.array to cython.view.array to avoid conflicts with pure-mode cython.array
Diffstat (limited to 'Cython/Compiler/CythonScope.py')
-rw-r--r--Cython/Compiler/CythonScope.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/CythonScope.py b/Cython/Compiler/CythonScope.py
index 1beae2464..2bc72b444 100644
--- a/Cython/Compiler/CythonScope.py
+++ b/Cython/Compiler/CythonScope.py
@@ -118,7 +118,7 @@ class CythonScope(ModuleScope):
self.viewscope, cython_scope=self,
whitelist=MemoryView.view_utility_whitelist)
- self.entries["array"] = view_utility_scope.entries.pop("array")
+ # self.entries["array"] = view_utility_scope.entries.pop("array")
def create_cython_scope(context):