Ejemplo n.º 1
0
 def test_find(self):
     from hwp5.binmodel import ControlChar
     bytes = '\x41\x00'
     self.assertEquals((2, 2), ControlChar.find(bytes, 0))
Ejemplo n.º 2
0
 def test_find(self):
     from hwp5.binmodel import ControlChar
     bytes = '\x41\x00'
     self.assertEquals((2, 2), ControlChar.find(bytes, 0))
Ejemplo n.º 3
0
 def test_find(self):
     bytes = b'\x41\x00'
     self.assertEqual((2, 2), ControlChar.find(bytes, 0))
Ejemplo n.º 4
0
 def test_find(self):
     bytes = b'\x41\x00'
     self.assertEqual((2, 2), ControlChar.find(bytes, 0))