Home | History | Annotate | Download | only in Lib

Lines Matching defs:DIGITS

20 DIGITS = frozenset("0123456789")
305 # hexadecimal escape (exactly two digits)
311 # unicode escape (exactly four digits)
317 # unicode escape (exactly eight digits)
325 # octal escape (up to three digits)
332 elif c in DIGITS:
359 # unicode escape (exactly four digits)
365 # unicode escape (exactly eight digits)
376 elif c in DIGITS:
378 if source.next in DIGITS:
382 # got three octal digits; this is an octal escape
584 while source.next in DIGITS:
587 while source.next in DIGITS:
930 elif c in DIGITS:
932 if s.next in DIGITS: