summaryrefslogtreecommitdiff
path: root/numpy/doc/CAPI.txt
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-04 19:30:36 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-04 19:30:36 +0000
commit5a765123d45616661f7d61f322ce8ba4a518e1aa (patch)
tree726bc976445a7b5f72e3b1ba751777c813bf4d46 /numpy/doc/CAPI.txt
parente706c7d92c4ee41e8e995fb3838bd0931b57efb5 (diff)
downloadnumpy-5a765123d45616661f7d61f322ce8ba4a518e1aa.tar.gz
Fixed lib
Diffstat (limited to 'numpy/doc/CAPI.txt')
-rw-r--r--numpy/doc/CAPI.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/numpy/doc/CAPI.txt b/numpy/doc/CAPI.txt
index 7af8456b7..8cac8849c 100644
--- a/numpy/doc/CAPI.txt
+++ b/numpy/doc/CAPI.txt
@@ -1,8 +1,8 @@
Author: Travis Oliphant
-Discussions to: numpy-dev@numpy.org
+Discussions to: scipy-dev@scipy.org
Created: October 2005
-The CAPI of SciPy is (mostly) backward compatible with Numeric.
+The CAPI of NumPy is (mostly) backward compatible with Numeric.
There are a few non-standard Numeric usages (that were not really part
of the API) that will need to be changed:
@@ -33,7 +33,7 @@ their function signatures.
All of these headers are installed to
-<YOUR_PYTHON_LOCATION>/site-packages/numpy/base/include
+<YOUR_PYTHON_LOCATION>/site-packages/numpy/core/include
Getting arrays in C-code
@@ -50,7 +50,6 @@ PyObject * PyArray_NewFromDescr(PyTypeObject *subtype, PyArray_Descr *descr,
intp *strides, char *data,
int flags, PyObject *obj);
-
subtype : The subtype that should be created (either pass in
&PyArray_Type, &PyBigArray_Type, or obj->ob_type,
where obj is a an instance of a subtype (or subclass) of