Home | History | Annotate | Download | only in python2.7

Lines Matching refs:DIGITS

23 DIGITS = set("0123456789")
237 # hexadecimal escape (exactly two digits)
245 # octal escape (up to three digits)
250 elif c in DIGITS:
280 elif c in DIGITS:
282 if source.next in DIGITS:
286 # got three octal digits; this is an octal escape
489 while source.next in DIGITS:
492 while source.next in DIGITS:
758 elif c in DIGITS:
760 if s.next in DIGITS: