this obviously is not going to raise any -3 warnings

This commit is contained in:
Benjamin Peterson 2013-03-20 13:10:41 -05:00
parent 625af8e13e
commit b2c57a9142
1 changed files with 6 additions and 9 deletions

View File

@ -497,14 +497,11 @@ class StructTest(unittest.TestCase):
self.test_unpack_from(cls=buffer)
def test_unpack_with_memoryview(self):
with check_py3k_warnings(("buffer.. not supported in 3.x",
DeprecationWarning)):
# SF bug 1563759: struct.unpack doesn't support buffer protocol objects
data1 = memoryview('\x12\x34\x56\x78')
for data in [data1,]:
value, = struct.unpack('>I', data)
self.assertEqual(value, 0x12345678)
self.test_unpack_from(cls=memoryview)
def test_bool(self):