Exemple #1
0
 def _isalpha(self, ch):
     return unicodedb.isalpha(ord(ch))
Exemple #2
0
def Py_UNICODE_ISALPHA(space, ch):
    """Return 1 or 0 depending on whether ch is an alphabetic character."""
    return unicodedb.isalpha(ord(ch))
Exemple #3
0
 def _isalpha(self, ch):
     return unicodedb.isalpha(ord(ch))
Exemple #4
0
def Py_UNICODE_ISALPHA(space, ch):
    """Return 1 or 0 depending on whether ch is an alphabetic character."""
    return unicodedb.isalpha(ord(ch))