Home | History | Annotate | Download | only in Lib

Lines Matching defs:DIGITS

22 DIGITS = set("0123456789")

247 # hexadecimal escape (exactly two digits)
255 # octal escape (up to three digits)
260 elif c in DIGITS:
290 elif c in DIGITS:
292 if source.next in DIGITS:
296 # got three octal digits; this is an octal escape
504 while source.next in DIGITS:
507 while source.next in DIGITS:
789 elif c in DIGITS:
791 if s.next in DIGITS: