Pickora
Pickora copied to clipboard
A toy compiler that can convert Python scripts 🐍 to pickle bytecode 🥒
`❯ pip install git+https://github.com/Isekai-Seikatsu/Pickora.git` ``` Collecting git+https://github.com/Isekai-Seikatsu/Pickora.git Cloning https://github.com/Isekai-Seikatsu/Pickora.git to /private/var/folders/0q/b68c14rn36348fhlpch14k480000gn/T/pip-req-build-5p65sbhx Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Building wheels...
The globals for lambda is just a clone/snapshot of current context. https://github.com/splitline/Pickora/blob/7e0e8eb2f66408d78553a8af3e2bc85e2f5a36d8/compiler.py#L355-L358 So if any global variables are changed after the lambda definition, the lambda won't see those changes For...