-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Core: replace the eval in OptionsCreator.py #5828
New issue
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
Merged
Berserker66
merged 1 commit into
ArchipelagoMW:main
from
Mysteryem:replace_options_creator_eval
Jan 15, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose this isn't a new issue, but
.isnumeric()doesn't seem like the check that's actually wanted here. For instance, a Range that's set to a negative value and then toggled and untoggled random will end up being output as a string since something like"-1".isnumeric()gives False, although it should still work iffrom_anyis used. If anyint-castable value here should be accepted, that should be done by trying to do it in atry:.I'd also be concerned about other similar issues when trying to determine type based just on string, although something like a choice called
Trueseems to be spared by being lowercase.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My preference is to use
ast.literal_evalThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not intending to change functionality here, I think that can be PR-ed separately.
I don't think
ast.literal_evalis suitable.ast.literal_evalis intended for parsing ast nodes and strings containing arbitrary python literals as python code. By usingast.literal_eval, the code would be implying that it is expecting to parse arbitrary nodes or strings because that is the taskast.literal_evalis designed for. The actual task at hand is simpler, so should use simpler, more fitting tools.