diff options
author | chebee7i <chebee7i@gmail.com> | 2015-02-22 18:19:46 -0600 |
---|---|---|
committer | chebee7i <chebee7i@gmail.com> | 2015-02-22 18:24:36 -0600 |
commit | e59c6220dda253ff5e94251384aef3ebf605942f (patch) | |
tree | e3cff004b85bb584d5a3de2fbc7de970d8aaf974 /numpy/core/numeric.py | |
parent | a3b7aa5bfe632fa70be805e20876c62b97a6c4ec (diff) | |
download | numpy-e59c6220dda253ff5e94251384aef3ebf605942f.tar.gz |
DOC: Add versionadded.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index aa68c94dc..7a0fa4b62 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1024,9 +1024,8 @@ def outer(a, b, out=None): Second input vector. Input is flattened if not already 1-dimensional. out : (M, N) ndarray, optional - A location where the result is stored - .. versionadded:: 1.9.0 + A location where the result is stored Returns ------- @@ -2228,6 +2227,7 @@ def allclose(a, b, rtol=1.e-5, atol=1.e-8, equal_nan=False): atol : float The absolute tolerance parameter (see Notes). equal_nan : bool + .. versionadded:: 1.10.0 Whether to compare NaN's as equal. If True, NaN's in `a` will be considered equal to NaN's in `b` in the output array. |