]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix issue reference
authorBenjamin Peterson <benjamin@python.org>
Wed, 20 Mar 2013 18:11:04 +0000 (13:11 -0500)
committerBenjamin Peterson <benjamin@python.org>
Wed, 20 Mar 2013 18:11:04 +0000 (13:11 -0500)
Lib/test/test_struct.py

index fa056ca5f4bf08859c4107c6fbdb56d76fb0aff8..2e613f7577bb79a91736c55c01d863762c3f74d3 100644 (file)
@@ -497,7 +497,7 @@ class StructTest(unittest.TestCase):
             self.test_unpack_from(cls=buffer)
 
     def test_unpack_with_memoryview(self):
-        # SF bug 1563759: struct.unpack doesn't support buffer protocol objects
+        # Bug 10212: struct.unpack doesn't support new buffer protocol objects
         data1 = memoryview('\x12\x34\x56\x78')
         for data in [data1,]:
             value, = struct.unpack('>I', data)