diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-07 18:28:56 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-07 18:28:56 +0000 |
commit | 3f0cd73d77fafad5a41748b288863ab0b37628d8 (patch) | |
tree | da853fd7c68e3c11578dc3fe6a145e3fcdfc6064 /COMPATIBILITY | |
parent | dfdb8689aaaed931bc8d9d42deec96d0c43a6a79 (diff) | |
download | numpy-3f0cd73d77fafad5a41748b288863ab0b37628d8.tar.gz |
Added some simple CAPI documentation.
Diffstat (limited to 'COMPATIBILITY')
-rw-r--r-- | COMPATIBILITY | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/COMPATIBILITY b/COMPATIBILITY index 042f6768d..fb5144e76 100644 --- a/COMPATIBILITY +++ b/COMPATIBILITY @@ -46,11 +46,11 @@ use PyArray_XXXLTR where XXX is the name of the type. If you used function pointers directly (why did you do that?), -the arguments have changed. +the arguments have changed. Everything that was an int is now an intp. Also, +arrayobjects should be passed in at the end. a->descr->cast[i](fromdata, fromstep, todata, tostep, n) a->descr->cast[i](fromdata, todata, n, PyArrayObject *in, PyArrayObject *out) anything but single-stepping is not supported by this function use the PyArray_CastXXXX functions. - |