diff options
author | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-07 09:48:40 +0200 |
---|---|---|
committer | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-07 09:48:40 +0200 |
commit | db0b231f17fb2148772181626235e2644eb67c3e (patch) | |
tree | 046e1f4026b64012cd998f27363e3b12c4e35805 /numpy/core | |
parent | 0780721328a25389844181fd7e38f56e1a865698 (diff) | |
download | numpy-db0b231f17fb2148772181626235e2644eb67c3e.tar.gz |
DOC: change version references from x.y to x.y.z
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/code_generators/cversions.txt | 2 | ||||
-rw-r--r-- | numpy/core/numeric.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/code_generators/cversions.txt b/numpy/core/code_generators/cversions.txt index 0726fc85e..47781add8 100644 --- a/numpy/core/code_generators/cversions.txt +++ b/numpy/core/code_generators/cversions.txt @@ -22,7 +22,7 @@ # Version 9 (NumPy 1.8) Added interface for partition functions, # PyArray_NEW_ZEROED, commented out as the hash changed in -# NumPy 1.9 due to annotation. +# NumPy 1.9.0 due to annotation. #0x00000009 = 327bd114df09c2eb7a0bcc6901e2a3ed # Version 9 (NumPy 1.9) Added function annotations. diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 51f8dd034..ba99a1e42 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -759,7 +759,7 @@ def isfortran(a): This function is obsolete and, because of changes due to relaxed stride checking, its return value for the same array may differ for versions - of NumPy >= 1.10 and previous versions. If you only want to check if an + of NumPy >= 1.10.0 and previous versions. If you only want to check if an array is Fortran contiguous use ``a.flags.f_contiguous`` instead. Parameters @@ -1170,7 +1170,7 @@ def alterdot(): arrays with larger dimensionalities use the built in functions and are not accelerated. - .. note:: Deprecated in NumPy 1.10 + .. note:: Deprecated in NumPy 1.10.0 The cblas functions have been integrated into the multarray module and alterdot now longer does anything. It will be removed in NumPy 1.11.0. @@ -1195,7 +1195,7 @@ def restoredot(): an accelerated BLAS, or when being very careful about benchmarking linear algebra operations. - .. note:: Deprecated in NumPy 1.10 + .. note:: Deprecated in NumPy 1.10.0 The cblas functions have been integrated into the multarray module and restoredot now longer does anything. It will be removed in NumPy 1.11.0. |