Home | History | Annotate | Download | only in test

Lines Matching full:bytearray

181         self.assertEqual(zlib.compress(bytearray(data)), x)
182 for ob in x, bytearray(x):
232 # should compress both bytes and bytearray data
233 for data in (datasrc, bytearray(datasrc)):
239 for v1, v2 in ((x1, x2), (bytearray(x1), bytearray(x2))):