summaryrefslogtreecommitdiffstatshomepage
path: root/tools/mpy-tool.py
Commit message (Collapse)AuthorAge
* tools/mpy-tool.py: Don't strip directories from the frozen source name.Damien George2016-05-23
| | | | | Directories are now supported by the frozen import system (to implement frozen packages) so we should keep them.
* tools/mpy-tool.py: Include .py extension in frozen filename.Damien George2016-05-23
| | | | So that it can be correctly stat'd when looking for frozen files.
* tools/mpy-tool.py: Add checks for critical configuration vars.Damien George2016-05-16
| | | | | | | When an mpy file is frozen it must know the values of certain configuration variables. This patch provides an explicit check in the generated C file that the configuration variables are what they are supposed to be.
* tools/mpy-tool: Make sure that all C-level variables are unique.Damien George2016-05-03
| | | | Fixes issue #2023.
* tools/mpy-tool.py: Add support for Python 2.7.Damien George2016-04-15
|
* tools: Add mpy-tool.py, to work with .mpy files.Damien George2016-04-13
Currently it can freeze .mpy files.