summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.h
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-04-30 08:36:59 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-04-30 08:36:59 +0000
commit91be9a9ace3e532a40a93f0c00d71fa34adce009 (patch)
tree169eb7afcec9ec2447b17cad6535bd49561d873d /numpy/core/src/arrayobject.h
parentefd5b424216fb0ce6aa3c7529d8c3e1d5ae34116 (diff)
downloadnumpy-91be9a9ace3e532a40a93f0c00d71fa34adce009.tar.gz
Put number protocol and array attributes get/set in separate files.
Diffstat (limited to 'numpy/core/src/arrayobject.h')
-rw-r--r--numpy/core/src/arrayobject.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/core/src/arrayobject.h b/numpy/core/src/arrayobject.h
index bedbf6223..cd66e9108 100644
--- a/numpy/core/src/arrayobject.h
+++ b/numpy/core/src/arrayobject.h
@@ -42,7 +42,6 @@ typedef struct {
PyObject *conjugate;
} NumericOps;
-extern NPY_NO_EXPORT NumericOps n_ops;
extern NPY_NO_EXPORT PyArray_Descr **userdescrs;
@@ -146,4 +145,7 @@ set_typeinfo(PyObject *dict);
extern NPY_NO_EXPORT PyArray_Descr LONG_Descr;
extern NPY_NO_EXPORT PyArray_Descr INT_Descr;
+/* Number protocol */
+#include "arraynumber.h"
+
#endif