コード例 #1
0
ファイル: test_binmodel.py プロジェクト: hongry18/pyhwp
 def test_find(self):
     from hwp5.binmodel import ControlChar
     bytes = '\x41\x00'
     self.assertEquals((2, 2), ControlChar.find(bytes, 0))
コード例 #2
0
 def test_find(self):
     from hwp5.binmodel import ControlChar
     bytes = '\x41\x00'
     self.assertEquals((2, 2), ControlChar.find(bytes, 0))
コード例 #3
0
 def test_find(self):
     bytes = b'\x41\x00'
     self.assertEqual((2, 2), ControlChar.find(bytes, 0))
コード例 #4
0
ファイル: test_binmodel.py プロジェクト: mete0r/pyhwp
 def test_find(self):
     bytes = b'\x41\x00'
     self.assertEqual((2, 2), ControlChar.find(bytes, 0))