summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-12-12 01:33:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-12-12 01:33:04 (GMT)
commit28a4dce6a827eb221e986722c90bb1343e5db8e3 (patch)
tree953cf11d4120074bdec3bc1008a81da484958ea5 /Lib/test/test_bytes.py
parent18d378dc3dca99e207047d6a32ebc36ef43c671b (diff)
downloadcpython-28a4dce6a827eb221e986722c90bb1343e5db8e3.zip
cpython-28a4dce6a827eb221e986722c90bb1343e5db8e3.tar.gz
cpython-28a4dce6a827eb221e986722c90bb1343e5db8e3.tar.bz2
remove (un)transform methods
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r--Lib/test/test_bytes.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index 49b50f2..24ee487 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())