We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the python implementation float numbers are not accepted by the reader. There is a bug in reader.py at line 34 (read_atom function)
It is now: elif re.match(float_re, token): return int(token) should be: elif re.match(float_re, token): return float(token)
The text was updated successfully, but these errors were encountered:
solve issue Floats don't work in the python implementation. kanaka#646
93e6ba0
Hello , solve your problem , idk if my pull request will be accepted but here is how i solve it:
#654
i just change the line 34 to
elif re.match(float_re, token): return float(token)
Sorry, something went wrong.
solve issue Floats don't work in the python implementation. #646
e2d2504
This should be resolved now. Thanks for the catch!
No branches or pull requests
In the python implementation float numbers are not accepted by the reader.
There is a bug in reader.py at line 34 (read_atom function)
It is now:
elif re.match(float_re, token): return int(token)
should be:
elif re.match(float_re, token): return float(token)
The text was updated successfully, but these errors were encountered: