aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/PC/config_minimal.c
Commit message (Collapse)AuthorAge
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-03
| | | | | The getpath.py file is frozen at build time and executed as code over a namespace. It is never imported, nor is it meant to be importable or reusable. However, it should be easier to read, modify, and patch than the previous code. This commit attempts to preserve every previously tested quirk, but these may be changed in the future to better align platforms.
* bpo-45188: Windows now regenerates frozen modules at the start of build ↵Steve Dower2021-09-15
instead of late (GH-28322) This will enable us to drop the frozen module header files from the repository. It does currently cause many source files to be built twice, which just takes more time. For whoever comes to fix this in the future, the files shared between freeze_module and pythoncore should be put into a static library that is consumed by both.