Example #1
0
 def _isalpha(self, ch):
     return unicodedb.isalpha(ord(ch))
Example #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))
Example #3
0
 def _isalpha(self, ch):
     return unicodedb.isalpha(ord(ch))
Example #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))