mirror of https://github.com/python/cpython
add a test for reduce's move
This commit is contained in:
parent
08336e30ad
commit
541f7da3a9
|
@ -340,6 +340,12 @@ class TestStdlibRemovals(unittest.TestCase):
|
||||||
func = getattr(commands, name)
|
func = getattr(commands, name)
|
||||||
self.assertRaises(DeprecationWarning, func, *([None]*arg_count))
|
self.assertRaises(DeprecationWarning, func, *([None]*arg_count))
|
||||||
|
|
||||||
|
def test_reduce_move(self):
|
||||||
|
from operator import add
|
||||||
|
with catch_warning(record=False):
|
||||||
|
warnings.filterwarnings("error", "reduce")
|
||||||
|
self.assertRaises(DeprecationWarning, reduce, add, range(10))
|
||||||
|
|
||||||
def test_mutablestring_removal(self):
|
def test_mutablestring_removal(self):
|
||||||
# UserString.MutableString has been removed in 3.0.
|
# UserString.MutableString has been removed in 3.0.
|
||||||
import UserString
|
import UserString
|
||||||
|
|
Loading…
Reference in New Issue