skulpt / skulpt

Skulpt is a Javascript implementation of the Python programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

isnumeric(): False for Unicode numeric values (True expected)

ytyt-lead opened this issue · comments

unicode_numeric = '⅕'
print(unicode_numeric.isnumeric())

Real: False
Expected: True