[Python-checkins] r67302 - python/trunk/Lib/test/test_bytes.py

benjamin.peterson python-checkins at python.org
Thu Nov 20 22:44:23 CET 2008


Author: benjamin.peterson
Date: Thu Nov 20 22:44:23 2008
New Revision: 67302

Log:
oops! didn't mean to disable that test

Modified:
   python/trunk/Lib/test/test_bytes.py

Modified: python/trunk/Lib/test/test_bytes.py
==============================================================================
--- python/trunk/Lib/test/test_bytes.py	(original)
+++ python/trunk/Lib/test/test_bytes.py	Thu Nov 20 22:44:23 2008
@@ -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'')


More information about the Python-checkins mailing list