diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-10-02 19:29:38 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-10-02 19:29:38 +0000 |
commit | 65cc08216ffcd7a330f7a44991cd46bd0f14aa51 (patch) | |
tree | 16fc29c9c4276fa23ff956836d0f5be962c33fb9 /doc/source/reference/c-api.array.rst | |
parent | e434cd50f2483dd3a6a4517656a4d34aba9db62c (diff) | |
download | numpy-65cc08216ffcd7a330f7a44991cd46bd0f14aa51.tar.gz |
Docstring update: doc/source/reference
Diffstat (limited to 'doc/source/reference/c-api.array.rst')
-rw-r--r-- | doc/source/reference/c-api.array.rst | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/source/reference/c-api.array.rst b/doc/source/reference/c-api.array.rst index 8ce362079..3716fa16b 100644 --- a/doc/source/reference/c-api.array.rst +++ b/doc/source/reference/c-api.array.rst @@ -1386,11 +1386,9 @@ Shape Manipulation (unless refcheck is 0) not be referenced by any other array. A reference to the new array is returned. The fortran argument can be :cdata:`NPY_ANYORDER`, :cdata:`NPY_CORDER`, or - :cdata:`NPY_FORTRANORDER`. This argument is used if the number of - dimension is (or is being resized to be) greater than 2. It - currently has no effect. Eventually it could be used to determine - how the resize operation should view the data when constructing a - differently-dimensioned array. + :cdata:`NPY_FORTRANORDER`. It currently has no effect. Eventually + it could be used to determine how the resize operation should view + the data when constructing a differently-dimensioned array. .. cfunction:: PyObject* PyArray_Transpose(PyArrayObject* self, PyArray_Dims* permute) @@ -2457,7 +2455,7 @@ ABI incompatibility is automatically detected in every numpy's version. API incompatibility detection was added in numpy 1.4.0. If you want to supported many different numpy versions with one extension binary, you have to build your extension with the lowest NPY_FEATURE_VERSION as possible. - + .. cfunction:: unsigned int PyArray_GetNDArrayCVersion(void) This just returns the value :cdata:`NPY_VERSION`. :cdata:`NPY_VERSION` |