예제 #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