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
FrozenError
Psych.load
Is it intentional for the following Ruby code to raise FrozenError ?
Psych.safe_load(<<~'end', aliases: true, freeze: true) --- foo: &foo <<: *foo end
Possibilities:
Psych::AnchorNotDefined
I have no idea if the YAML in question is valid or not at the first place.
The text was updated successfully, but these errors were encountered:
Psych should accept this YAML and properly return a frozen, recursive hash.
IMO this is the correct behavior. I'm not sure how hard it is to implement though.
Sorry, something went wrong.
No branches or pull requests
Is it intentional for the following Ruby code to raise
FrozenError
?Possibilities:
Psych::AnchorNotDefined
instead ofFrozenError
.FrozenError
is the legit exception here.I have no idea if the YAML in question is valid or not at the first place.
The text was updated successfully, but these errors were encountered: