diff options
author | Qiming Sun <osirpt.sun@gmail.com> | 2019-09-10 15:38:14 -0700 |
---|---|---|
committer | Qiming Sun <osirpt.sun@gmail.com> | 2019-09-10 15:38:14 -0700 |
commit | ce24b2e585635f62c7187e0c5eaa675bb6a94e84 (patch) | |
tree | 5262b585a3062de0d5e4e1639cc88415559ec208 /numpy/core/_internal.py | |
parent | 857a48654942cc8e8086577757d4f981cf6be544 (diff) | |
download | numpy-ce24b2e585635f62c7187e0c5eaa675bb6a94e84.tar.gz |
BUG: typo in _ctypes class
Diffstat (limited to 'numpy/core/_internal.py')
-rw-r--r-- | numpy/core/_internal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/_internal.py b/numpy/core/_internal.py index 1be2a95b2..28cbcc810 100644 --- a/numpy/core/_internal.py +++ b/numpy/core/_internal.py @@ -386,7 +386,7 @@ class _ctypes(object): Enables `c_func(some_array.ctypes)` """ - return self.data_as(ctpyes.c_void_p) + return self.data_as(ctypes.c_void_p) # kept for compatibility get_data = data.fget |