summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-22 05:56:35 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-11-22 05:56:35 (GMT)
commitb2b6262831694a6b21657f3fbfd1683a87da2823 (patch)
tree883c196f38ff3581fe3a49f3458667f1fcdb158a /Lib/test/test_bytes.py
parent4d279c1f80428c094cd5e5fbd1491f16fda177bf (diff)
downloadcpython-b2b6262831694a6b21657f3fbfd1683a87da2823.zip
cpython-b2b6262831694a6b21657f3fbfd1683a87da2823.tar.gz
cpython-b2b6262831694a6b21657f3fbfd1683a87da2823.tar.bz2
Removed some leftovers from the str8 days
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r--Lib/test/test_bytes.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index 5c3a3ae..659afac 100644
--- a/Lib/test/test_bytes.py
+++ b/Lib/test/test_bytes.py
@@ -801,9 +801,6 @@ class BytearrayPEP3137Test(unittest.TestCase,
test.buffer_tests.MixinBytesBufferCommonTests):
def marshal(self, x):
return bytearray(x)
- # TODO this should become:
- #return bytearray(x)
- # once the bytes -> bytearray and str8 -> bytes rename happens
def test_returns_new_copy(self):
val = self.marshal(b'1234')