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

Function ispunct

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

Source from the content-addressed store, hash-verified

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
66def isxdigit(c): return isdigit(c) or \

Callers

nothing calls this directly

Calls 2

isgraphFunction · 0.85
isalnumFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…