Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-45019: Clean up the frozen __hello__ module. (gh-28374) | Eric Snow | 2021-09-15 | 1 | -14/+0 |
| | | | | | Here's one more small cleanup that should have been in PR gh-28319. We eliminate stdout side-effects from importing the frozen __hello__ module, and update tests accordingly. We also move the module's source file into Lib/ from Toos/freeze/flag.py. https://bugs.python.org/issue45019 | ||||
* | bpo-45019: Add a tool to generate list of modules to include for frozen ↵ | Eric Snow | 2021-08-30 | 1 | -0/+14 |
modules (gh-27980) Frozen modules must be added to several files in order to work properly. Before this change this had to be done manually. Here we add a tool to generate the relevant lines in those files instead. This helps us avoid mistakes and omissions. https://bugs.python.org/issue45019 |