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

Function isprint

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

Source from the content-addressed store, hash-verified

60def isgraph(c): return 33 <= _ctoi(c) <= 126
61def islower(c): return 97 <= _ctoi(c) <= 122
62def isprint(c): return 32 <= _ctoi(c) <= 126
63def ispunct(c): return isgraph(c) and not isalnum(c)
64def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32)
65def isupper(c): return 65 <= _ctoi(c) <= 90

Callers 1

unctrlFunction · 0.85

Calls 1

_ctoiFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…