MCPcopy Index your code
hub / github.com/python/cpython / isxdigit

Function isxdigit

Lib/curses/ascii.py:66–67  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

64def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32)
65def isupper(c): return 65 <= _ctoi(c) <= 90
66def isxdigit(c): return isdigit(c) or \
67 (65 <= _ctoi(c) <= 70) or (97 <= _ctoi(c) <= 102)
68def isctrl(c): return 0 <= _ctoi(c) < 32
69def ismeta(c): return _ctoi(c) > 127
70

Callers

nothing calls this directly

Calls 2

isdigitFunction · 0.85
_ctoiFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…