diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-05-31 11:55:01 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-06-04 18:00:50 -0600 |
commit | 24fcc25e14b272050ab5b7fe757b34d182a8fe85 (patch) | |
tree | dbf5f84d59168b7c86c303c5a857e0d50797b72b | |
parent | 91e8cd29c93ec310b0665e6c3a823c3f095fc516 (diff) | |
download | numpy-24fcc25e14b272050ab5b7fe757b34d182a8fe85.tar.gz |
DOC: Mention support for the '@' operator in the 1.10 release notes.
-rw-r--r-- | doc/release/1.10.0-notes.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index f2ab6e99a..cb78b4e71 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -18,6 +18,7 @@ Highlights sequence of arrays along a new axis, complementing `np.concatenate` for joining along an existing axis. * Addition of `nanprod` to the set of nanfunctions. +* Support for the '@' operator in Python 3.5. Dropped Support @@ -153,6 +154,15 @@ vectors. An array of ``fweights`` indicates the number of repeats of each observation vector, and an array of ``aweights`` provides their relative importance or probability. +Support for the '@' operator in Python 3.5+ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Python 3.5 adds support for a matrix multiplication operator '@' proposed +in PEP465. Preliminary support for that has been implemented, and an +equivalent function ``matmul`` has also been added for testing purposes and +use in earlier Python versions. The function is preliminary and the order +and number of its optional arguments can be expected to change. + + Improvements ============ |