commit | d3b5a7985d81fd28fe970ab5d7429fa57e723e2c | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Nov 20 21:44:23 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Nov 20 21:44:23 2008 +0000 |
tree | 6b24c9b90a8d6d50e739bc0ca24c92c067025110 | |
parent | 050f4adcb485a11b33f4b54e60e58bf1ae9a6117 [diff] |
oops! didn't mean to disable that test
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index 6e5ffa9..45df1f3 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py
@@ -725,7 +725,7 @@ # Issue 4348. Make sure that operations that don't mutate the array # copy the bytes. b = bytearray(b'abc') - #self.assertFalse(b is b.replace(b'abc', b'cde', 0)) + self.assertFalse(b is b.replace(b'abc', b'cde', 0)) t = bytearray([i for i in range(256)]) x = bytearray(b'')