diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-03-20 18:11:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-03-20 18:11:04 (GMT) |
commit | 17feac7c6ede072d4f64e387fd59b70123a10377 (patch) | |
tree | e70b2b078d0e6601db84f7f71c83a393d00efe60 /Lib/test/test_struct.py | |
parent | b2c57a9142ab49af31ecdf254c988a3b3406ca74 (diff) | |
download | cpython-17feac7c6ede072d4f64e387fd59b70123a10377.zip cpython-17feac7c6ede072d4f64e387fd59b70123a10377.tar.gz cpython-17feac7c6ede072d4f64e387fd59b70123a10377.tar.bz2 |
fix issue reference
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r-- | Lib/test/test_struct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index fa056ca..2e613f7 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -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) |