/external/python/cpython3/Lib/ |
sre_parse.py | 329 if c > 0o377: 331 'range 0-0o377' % escape, len(escape)) 386 if c > 0o377: 388 'range 0-0o377' % escape, [all...] |
tarfile.py | 177 if s[0] in (0o200, 0o377): 182 if s[0] == 0o377: 198 # that if necessary. A leading 0o200 or 0o377 byte indicate this 201 # A 0o200 byte indicates a positive number, a 0o377 byte a negative 210 s = bytearray([0o377]) 214 s.insert(1, n & 0o377) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/ |
py3_test_grammar.py | 32 self.assertEquals(0o377, 255)
|
/external/python/cpython2/Lib/lib2to3/tests/data/ |
py3_test_grammar.py | 32 self.assertEquals(0o377, 255)
|
/external/python/cpython3/Lib/lib2to3/tests/data/ |
py3_test_grammar.py | 32 self.assertEquals(0o377, 255)
|
/external/python/cpython3/Lib/test/ |
test_re.py | 181 r'range 0-0o377', 0) 184 r'range 0-0o377', 0) [all...] |
test_grammar.py | 116 self.assertEqual(0o377, 255) [all...] |
/external/python/cpython2/Lib/test/ |
test_grammar.py | 29 self.assertEqual(0o377, 255) [all...] |