HomeSort by relevance Sort by last modified time
    Searched refs:_ctoi (Results 1 - 2 of 2) sorted by null

  /external/python/cpython2/Lib/curses/
ascii.py 48 def _ctoi(c): function
56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ?
57 def isblank(c): return _ctoi(c) in (9, 32)
58 def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127
59 def isdigit(c): return 48 <= _ctoi(c) <= 57
60 def isgraph(c): return 33 <= _ctoi(c) <= 126
61 def islower(c): return 97 <= _ctoi(c) <= 122
62 def isprint(c): return 32 <= _ctoi(c) <= 126
64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32
    [all...]
  /external/python/cpython3/Lib/curses/
ascii.py 48 def _ctoi(c): function
56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ?
57 def isblank(c): return _ctoi(c) in (9, 32)
58 def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127
59 def isdigit(c): return 48 <= _ctoi(c) <= 57
60 def isgraph(c): return 33 <= _ctoi(c) <= 126
61 def islower(c): return 97 <= _ctoi(c) <= 122
62 def isprint(c): return 32 <= _ctoi(c) <= 126
64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32
    [all...]

Completed in 54 milliseconds