diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-08-31 11:12:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-31 11:12:33 -0500 |
commit | f36d2d4d3f622f7901e3d5ade13e04fc05062948 (patch) | |
tree | f610d44fb3d5baeabf2f3581dc502a52b46e6dd8 /doc | |
parent | 44d3b5976d55d028e85c075933837dff150d9840 (diff) | |
parent | 03e08148eb303c7799a18db78b8087f78e5cc2fc (diff) | |
download | numpy-f36d2d4d3f622f7901e3d5ade13e04fc05062948.tar.gz |
Merge pull request #10915 from mattip/implement-nep-0015
ENH: implement nep 0015: merge multiarray and umath
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.16.0-notes.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/release/1.16.0-notes.rst b/doc/release/1.16.0-notes.rst index 03f4e8479..2c67d1853 100644 --- a/doc/release/1.16.0-notes.rst +++ b/doc/release/1.16.0-notes.rst @@ -115,3 +115,12 @@ raise a ``DeprecationWarning`` if the array is not numerical (i.e., if ``np.positive(array)`` raises a ``TypeError``. For ``ndarray`` subclasses that override the default ``__array_ufunc__`` implementation, the ``TypeError`` is passed on. +Umath and multiarray c-extension modules merged into a single module +-------------------------------------------------------------------- + +The two modules were merged, according to the first step in `NEP 15`_. +Previously `np.core.umath` and `np.core.multiarray` were the c-extension +modules, they are now python wrappers to the single `np.core/_multiarray_math` +c-extension module. + +.. _`NEP 15` : http://www.numpy.org/neps/nep-0015-merge-multiarray-umath.html |