def Py_UNICODE_ISALNUM(space, ch): """Return 1 or 0 depending on whether ch is an alphanumeric character.""" return unicodedb.isalnum(ord(ch))
def _isalnum(self, ch): return unicodedb.isalnum(ord(ch))