diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-12-12 01:33:04 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-12-12 01:33:04 +0000 |
commit | 4c86be149ea7bf9db7f10e186d77063e94a0508e (patch) | |
tree | 760c00d538f6aa752a0f3189d69795c998095413 /Lib/test/test_bytes.py | |
parent | eee8dfbcf45a8ae46feaf7babf254b88644b9a00 (diff) | |
download | cpython-4c86be149ea7bf9db7f10e186d77063e94a0508e.tar.gz |
remove (un)transform methods
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r-- | Lib/test/test_bytes.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index 49b50f250d..24ee487019 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -207,11 +207,6 @@ class BaseBytesTest(unittest.TestCase): self.assertEqual(b.decode(errors="ignore", encoding="utf8"), "Hello world\n") - def test_transform(self): - b1 = self.type2test(range(256)) - b2 = b1.transform("base64").untransform("base64") - self.assertEqual(b2, b1) - def test_from_int(self): b = self.type2test(0) self.assertEqual(b, self.type2test()) |