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

Function isupper

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

Source from the content-addressed store, hash-verified

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 \
67 (65 <= _ctoi(c) <= 70) or (97 <= _ctoi(c) <= 102)
68def isctrl(c): return 0 <= _ctoi(c) < 32

Callers 1

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