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
.
We had a report that truffleruby does not work with LANG=cs_CZ.UTF-8 (which uses , instead of . as the decimal separator):
LANG=cs_CZ.UTF-8
,
$ LANG=en_US.UTF-8 ruby -e 'p 3.4' 3.4 $ LANG=cs_CZ.UTF-8 ruby -e 'p 3.4' truffleruby: -e:1: could not parse the float '3.4' (SyntaxError) $ LANG=fr_FR.UTF-8 ruby -e 'p 3.4' truffleruby: -e:1: could not parse the float '3.4' (SyntaxError)
This is related to how TruffleRuby sets the locale and how Prism depends on it for strtod: ruby/prism#2638
strtod
The text was updated successfully, but these errors were encountered:
36ade7c
eregon
No branches or pull requests
We had a report that truffleruby does not work with
LANG=cs_CZ.UTF-8
(which uses,
instead of.
as the decimal separator):This is related to how TruffleRuby sets the locale and how Prism depends on it for
strtod
: ruby/prism#2638The text was updated successfully, but these errors were encountered: