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