diff options
author | Nathan Goldbaum <nathan.goldbaum@gmail.com> | 2022-12-14 12:13:24 -0700 |
---|---|---|
committer | Nathan Goldbaum <nathan.goldbaum@gmail.com> | 2022-12-14 12:13:24 -0700 |
commit | 26ffc8b928b8ea390a0c401f064a04246efe2ae7 (patch) | |
tree | 07c88e966695510ce253ebdf4d07df6f9c74a336 | |
parent | a185f4be433443c9e913217f9662b97a0ac3e9f7 (diff) | |
download | numpy-26ffc8b928b8ea390a0c401f064a04246efe2ae7.tar.gz |
MAINT: remove unnecessary forward declaration of _convert_from_any
-rw-r--r-- | numpy/core/src/multiarray/descriptor.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/core/src/multiarray/descriptor.c b/numpy/core/src/multiarray/descriptor.c index d1973442a..ecaa6834c 100644 --- a/numpy/core/src/multiarray/descriptor.c +++ b/numpy/core/src/multiarray/descriptor.c @@ -74,9 +74,6 @@ _try_convert_from_ctypes_type(PyTypeObject *type) return (PyArray_Descr *)res; } -static PyArray_Descr * -_convert_from_any(PyObject *obj, int align); - /* * This function creates a dtype object when the object has a "dtype" attribute, * and it can be converted to a dtype object. |