Home
last modified time | relevance | path

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

/dports/textproc/py-regex/regex-2020.7.14/regex_3/
H A D_regex_core.py108 OCT_DIGITS = frozenset(string.octdigits) variable
1157 return all(ch in OCT_DIGITS for ch in string)
1247 if is_octal(digits) and ch in OCT_DIGITS:
1269 while len(digits) < 3 and ch in OCT_DIGITS:
1279 if digits[0] in OCT_DIGITS:
1715 if ch not in OCT_DIGITS:
/dports/textproc/py-regex/regex-2020.7.14/regex_2/
H A D_regex_core.py107 OCT_DIGITS = frozenset(string.octdigits) variable
1167 return all(ch in OCT_DIGITS for ch in string)
1257 if is_octal(digits) and ch in OCT_DIGITS:
1279 while len(digits) < 3 and ch in OCT_DIGITS:
1289 if digits[0] in OCT_DIGITS:
1733 if ch not in OCT_DIGITS: