diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2014-02-07 14:58:30 +0100 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2014-02-07 15:07:15 +0100 |
commit | d554c2954b82b120ce77c1fd9a74c4deb85503a3 (patch) | |
tree | 0b07dafeeabe0a110dd47ae74c575fe6cf647d8c | |
parent | aba22aaa11df747f1587bb3f5bb0fd79daa71511 (diff) | |
download | numpy-d554c2954b82b120ce77c1fd9a74c4deb85503a3.tar.gz |
BUG: Fix common.h convert_shape_to_string.
-rw-r--r-- | numpy/core/src/multiarray/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/multiarray/common.h b/numpy/core/src/multiarray/common.h index abac14658..43c6dc386 100644 --- a/numpy/core/src/multiarray/common.h +++ b/numpy/core/src/multiarray/common.h @@ -61,7 +61,7 @@ offset_bounds_from_strides(const int itemsize, const int nd, npy_intp *lower_offset, npy_intp *upper_offset); NPY_NO_EXPORT PyObject * -get_shape_string(npy_intp n, npy_intp *vals, char *ending); +convert_shape_to_string(npy_intp n, npy_intp *vals, char *ending); /* |