File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Highlights
18
18
sequence of arrays along a new axis, complementing `np.concatenate ` for
19
19
joining along an existing axis.
20
20
* Addition of `nanprod ` to the set of nanfunctions.
21
+ * Support for the '@' operator in Python 3.5.
21
22
22
23
23
24
Dropped Support
@@ -153,6 +154,15 @@ vectors. An array of ``fweights`` indicates the number of repeats of each
153
154
observation vector, and an array of ``aweights `` provides their relative
154
155
importance or probability.
155
156
157
+ Support for the '@' operator in Python 3.5+
158
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
159
+ Python 3.5 adds support for a matrix multiplication operator '@' proposed
160
+ in PEP465. Preliminary support for that has been implemented, and an
161
+ equivalent function ``matmul `` has also been added for testing purposes and
162
+ use in earlier Python versions. The function is preliminary and the order
163
+ and number of its optional arguments can be expected to change.
164
+
165
+
156
166
Improvements
157
167
============
158
168
You can’t perform that action at this time.
0 commit comments