Esempio n. 1
0
def char_numeric_huh(w_char):
    c = ord(w_char.value)
    return values.w_true if unicodedb.isnumeric(c) else values.w_false
Esempio n. 2
0
File: string.py Progetto: 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