You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ocaml-yaml 1.0.0 "adds supports" for float, null and bool values. However there is no internal distinctions between plain strings and quoted strings and this give wrong results. For example:
Those will of course return non-symmetric values when casted into strings using Yaml.to_string and will make something like "null" == null or 'true' == true.
The text was updated successfully, but these errors were encountered:
Thanks, patches for this welcome. In particular, what does the spec say about how this should behave? Is the interaction between the implicit quoting well defined?
ocaml-yaml 1.0.0 "adds supports" for float, null and bool values. However there is no internal distinctions between plain strings and quoted strings and this give wrong results. For example:
Those will of course return non-symmetric values when casted into strings using
Yaml.to_string
and will make something like"null" == null
or'true' == true
.The text was updated successfully, but these errors were encountered: