From 24fcc25e14b272050ab5b7fe757b34d182a8fe85 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sun, 31 May 2015 11:55:01 -0600 Subject: [PATCH] DOC: Mention support for the '@' operator in the 1.10 release notes. --- doc/release/1.10.0-notes.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index f2ab6e99a697..cb78b4e71703 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 ============