diff options
author | Mark Florisson <markflorisson88@gmail.com> | 2011-07-24 15:15:16 +0200 |
---|---|---|
committer | Mark Florisson <markflorisson88@gmail.com> | 2011-09-30 14:55:17 +0100 |
commit | aad49345e18a162ab0caa332b5379729b76f90fe (patch) | |
tree | b1a1a2d2724f01310316924053c393d6dbf4ad6f /Cython/Compiler/CythonScope.py | |
parent | f0b5aafaf51227f84291733e39e1113a9028752e (diff) | |
download | cython-aad49345e18a162ab0caa332b5379729b76f90fe.tar.gz |
Change memview access and packing modifier constants
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 2c1a8d5cc..d1c404ec5 100644 --- a/Cython/Compiler/CythonScope.py +++ b/Cython/Compiler/CythonScope.py @@ -129,6 +129,6 @@ cython_test_extclass_utility_code = \ cythonview_testscope_utility_code = load_testscope_utility("View.TestScope") view_utility_code = MemoryView.load_memview_cy_utility( - "MemoryView", requires=(Buffer.GetAndReleaseBufferUtilityCode(),)) + "View.MemoryView", requires=(Buffer.GetAndReleaseBufferUtilityCode(),)) cython_array_utility_code = MemoryView.load_memview_cy_utility("CythonArray") |