Home
last modified time | relevance | path

Searched refs:OCTDIGITS (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Dsre_parse.py24 OCTDIGITS = set("01234567") variable
255 elif c in OCTDIGITS:
257 while source.next in OCTDIGITS and len(escape) < 4:
297 while source.next in OCTDIGITS and len(escape) < 4:
304 if (escape[1] in OCTDIGITS and escape[2] in OCTDIGITS and
305 source.next in OCTDIGITS):
809 if s.next in OCTDIGITS:
811 if s.next in OCTDIGITS:
818 if (c in OCTDIGITS and this[2] in OCTDIGITS and
819 s.next in OCTDIGITS):
/external/python/cpython3/Lib/
Dsre_parse.py22 OCTDIGITS = frozenset("01234567") variable
325 elif c in OCTDIGITS:
327 escape += source.getwhile(2, OCTDIGITS)
375 escape += source.getwhile(2, OCTDIGITS)
381 if (escape[1] in OCTDIGITS and escape[2] in OCTDIGITS and
382 source.next in OCTDIGITS):
999 if s.next in OCTDIGITS:
1001 if s.next in OCTDIGITS:
1008 if (c in OCTDIGITS and this[2] in OCTDIGITS and
1009 s.next in OCTDIGITS):