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

Function isgraph

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

Source from the content-addressed store, hash-verified

58def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127
59def isdigit(c): return 48 <= _ctoi(c) <= 57
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)

Callers 1

ispunctFunction · 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…