File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,14 @@ class TestFloatScalarIndexDeprecation(object):
41
41
42
42
When 2.4 support is dropped `PyIndex_Check_Or_Unsupported` should
43
43
be removed from npy_pycompat.h and changed to just `PyIndex_Check`.
44
+
45
+ As for the deprecation time-frame: via Ralf Gommers,
46
+
47
+ "Hard to put that as a version number, since we don't know if the
48
+ version after 1.8 will be 6 months or 2 years after. I'd say 2
49
+ years is reasonable."
50
+
51
+ I interpret this to mean 2 years after the 1.8 release.
44
52
"""
45
53
def setUp (self ):
46
54
warnings .filterwarnings ("error" , message = "non-integer scalar index" ,
@@ -106,6 +114,14 @@ class TestFloatSliceParameterDeprecation(object):
106
114
implements the same thing but with a) int coercion and b) Python
107
115
< 2.3 backwards compatibility (which we have long since dropped
108
116
as of this writing).
117
+
118
+ As for the deprecation time-frame: via Ralf Gommers,
119
+
120
+ "Hard to put that as a version number, since we don't know if the
121
+ version after 1.8 will be 6 months or 2 years after. I'd say 2
122
+ years is reasonable."
123
+
124
+ I interpret this to mean 2 years after the 1.8 release.
109
125
"""
110
126
def setUp (self ):
111
127
warnings .filterwarnings ("error" , message = "non-integer slice param" ,
You can’t perform that action at this time.
0 commit comments