コード例 #1
0
ファイル: unicodeobject.py プロジェクト: purepython/pypy
def Py_UNICODE_ISALNUM(space, ch):
    """Return 1 or 0 depending on whether ch is an alphanumeric character."""
    return unicodedb.isalnum(ord(ch))
コード例 #2
0
 def _isalnum(self, ch):
     return unicodedb.isalnum(ord(ch))
コード例 #3
0
ファイル: unicodeobject.py プロジェクト: Qointum/pypy
 def _isalnum(self, ch):
     return unicodedb.isalnum(ord(ch))
コード例 #4
0
ファイル: unicodeobject.py プロジェクト: mozillazg/pypy
def Py_UNICODE_ISALNUM(space, ch):
    """Return 1 or 0 depending on whether ch is an alphanumeric character."""
    return unicodedb.isalnum(ord(ch))