Kaydet (Commit) 17feac7c authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix issue reference

üst b2c57a91
...@@ -497,7 +497,7 @@ class StructTest(unittest.TestCase): ...@@ -497,7 +497,7 @@ class StructTest(unittest.TestCase):
self.test_unpack_from(cls=buffer) self.test_unpack_from(cls=buffer)
def test_unpack_with_memoryview(self): 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') data1 = memoryview('\x12\x34\x56\x78')
for data in [data1,]: for data in [data1,]:
value, = struct.unpack('>I', data) value, = struct.unpack('>I', data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment