Lines Matching refs:strtobytes
237 def strtobytes(x): return bytes(x, 'iso8859-1') function
240 strtobytes = str variable
966 def write_chunk(outfile, tag, data=strtobytes('')):
974 tag = strtobytes(tag)
1412 verify = zlib.crc32(strtobytes(type))
2501 return strtobytes(''.join(chr(x) for x in s))
2654 s.write(strtobytes('P5 2 2 3\n'))
2655 s.write(strtobytes('\x00\x01\x02\x03'))
2669 s.write(strtobytes('P7\nWIDTH 3\nHEIGHT 1\nDEPTH 4\nMAXVAL 255\n'
2689 self.assertEqual(sbit, strtobytes('\x04\x04'))
2733 s.write(strtobytes('P6 8 1 1\n'))
2742 self.assertEqual(sbit, strtobytes('\x01\x01\x01'))
2813 data += strtobytes('\x00garbage')
2843 data = strtobytes('\x99') + data[1:]
3035 return binascii.unhexlify(strtobytes(s))
3568 if l == strtobytes('ENDHDR'):
3572 if l[0] == strtobytes('#'):
3578 header[l[0]] += strtobytes(' ') + l[1]
3581 required = [strtobytes(x) for x in required]
3610 supported = [strtobytes(x) for x in supported]
3618 if type == strtobytes('P7'):
3655 token = strtobytes('')
3674 depth = (1,3)[type == strtobytes('P6')]