diff options
author | Mark Florisson <markflorisson88@gmail.com> | 2012-02-24 18:45:21 +0000 |
---|---|---|
committer | Mark Florisson <markflorisson88@gmail.com> | 2012-02-25 14:36:10 +0000 |
commit | d82d4fc3d17fb6835c3882f9c75bc9a3ba61baf7 (patch) | |
tree | a9f2466cfe567cf0ddc0944db0c352e74d61be71 /Cython/Compiler/CythonScope.py | |
parent | cc4198330b13c9d417c412ab1264d5b292c3c122 (diff) | |
download | cython-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.py | 2 |
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): |