コード例 #1
0
ファイル: string.py プロジェクト: vishesh/pycket
def char_numeric_huh(w_char):
    c = ord(w_char.value)
    return values.w_true if unicodedb.isnumeric(c) else values.w_false
コード例 #2
0
ファイル: string.py プロジェクト: 8l/pycket
def char_numeric_huh(w_char):
    c = ord(w_char.value)
    return values.w_true if unicodedb.isnumeric(c) else values.w_false