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

Function isctrl

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

Source from the content-addressed store, hash-verified

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
71def ascii(c):

Callers

nothing calls this directly

Calls 1

_ctoiFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…