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

Function isalnum

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

Source from the content-addressed store, hash-verified

52 return c
53
54def isalnum(c): return isalpha(c) or isdigit(c)
55def isalpha(c): return isupper(c) or islower(c)
56def isascii(c): return 0 <= _ctoi(c) <= 127 # ?
57def isblank(c): return _ctoi(c) in (9, 32)

Callers 1

ispunctFunction · 0.85

Calls 2

isalphaFunction · 0.85
isdigitFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…