Refactor the LZ tools and fix BSSReader's eval shenanigans. #86
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
re BSSReader: Obviously the correct solution (besides ditching eval) is to occupy the
__builtins__key. So that all keys can be real constants (i.e. when reversing the dict, as in #85) the dict is instead copied when passed into eval. In retrospect, the__builtins__key could just be removed once BSSReader is done.