diff options
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/tests/test_deprecations.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/tests/test_deprecations.py b/numpy/core/tests/test_deprecations.py index 8e35f7e54..d1d9a793d 100644 --- a/numpy/core/tests/test_deprecations.py +++ b/numpy/core/tests/test_deprecations.py @@ -375,6 +375,7 @@ class TestNumericStyleTypecodes(_DeprecationTestCase): self.assert_deprecated(np.dtype, exceptions=(TypeError,), args=(dt,)) + class TestAccumulateKeepDims(_DeprecationTestCase): """ Deprecate the keepdims argument to np.ufunc.accumulate, which was never used or documented @@ -399,6 +400,7 @@ class TestTestDeprecated(object): test_case_instance.assert_deprecated(foo) test_case_instance.tearDown() + class TestClassicIntDivision(_DeprecationTestCase): """ See #7949. Deprecate the numeric-style dtypes with -3 flag in python 2 |