@@ -20,7 +20,8 @@ Highlights
20
20
* Addition of `nanprod ` to the set of nanfunctions.
21
21
* Support for the '@' operator in Python 3.5.
22
22
23
- Dropped Support:
23
+ Dropped Support
24
+ ===============
24
25
25
26
* The _dotblas module has been removed. CBLAS Support is now in
26
27
Multiarray.
@@ -35,15 +36,22 @@ Dropped Support:
35
36
* Keywords ``skiprows `` and ``missing `` removed from np.genfromtxt.
36
37
* Keyword ``old_behavior `` removed from np.correlate.
37
38
38
- Future Changes:
39
+ Future Changes
40
+ ==============
39
41
40
42
* In array comparisons like ``arr1 == arr2 ``, many corner cases
41
43
involving strings or structured dtypes that used to return scalars
42
44
now issue ``FutureWarning `` or ``DeprecationWarning ``, and in the
43
45
future will be change to either perform elementwise comparisons or
44
46
raise an error.
45
- * The SafeEval class will be removed.
46
- * The alterdot and restoredot functions will be removed.
47
+ * In ``np.lib.split `` an empty array in the result always had dimension
48
+ ``(0,) `` no matter the dimensions of the array being split. In Numpy 1.11
49
+ that behavior will be changed so that the dimensions will be preserved. A
50
+ ``FutureWarning `` for this change has been in place since Numpy 1.9 but,
51
+ due to a bug, sometimes no warning was raised and the dimensions were
52
+ already preserved.
53
+ * The SafeEval class will be removed in Numpy 1.11.
54
+ * The alterdot and restoredot functions will be removed in Numpy 1.11.
47
55
48
56
See below for more details on these changes.
49
57
0 commit comments