diff options
author | Hameer Abbasi <hameerabbasi@yahoo.com> | 2019-08-25 14:23:47 +0200 |
---|---|---|
committer | Hameer Abbasi <hameerabbasi@yahoo.com> | 2019-08-25 14:23:47 +0200 |
commit | 846b49bdc18baecdf173f37cf42f87efc1bc555c (patch) | |
tree | 28487f4f9899d9a9a2c5940f6723c9007af0c645 | |
parent | cfac10b8009bbd7c373c7ce1e9e98f03476d4530 (diff) | |
download | numpy-846b49bdc18baecdf173f37cf42f87efc1bc555c.tar.gz |
Remove mutability comment.
-rw-r--r-- | doc/neps/nep-0031-uarray.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/neps/nep-0031-uarray.rst b/doc/neps/nep-0031-uarray.rst index 2cbfeeb70..7712e1b9f 100644 --- a/doc/neps/nep-0031-uarray.rst +++ b/doc/neps/nep-0031-uarray.rst @@ -96,8 +96,7 @@ And a library that implements a NumPy-like API will use it in the following mann # Code here # Must return NotImplemented for unsupported array types - # Assuming your arrays are mutable, this also implements - # zeros and ones. + # Provides a default implementation for ones and zeros. @implements(np.empty) def empty(shape, dtype=float, order='C'): # Code here |