Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
54
def
isalnum(c):
return
isalpha(c) or isdigit(c)
55
def
isalpha(c):
return
isupper(c) or islower(c)
56
def
isascii(c):
return
0 <= _ctoi(c) <= 127
# ?
57
def
isblank(c):
return
_ctoi(c) in (9, 32)
Callers
1
ispunct
Function · 0.85
Calls
2
isalpha
Function · 0.85
isdigit
Function · 0.85
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…