Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-45696: Deep-freeze #29118
bpo-45696: Deep-freeze #29118
Changes from all commits
a04d702033acab0591cbd72666d4ce71894ab500e2932e5632bb2a43cb6c74de94240ee106e4180506bb9ac5b11acfc2a2ef653fbf70319ba381ccf47e391720992e9692959b77812d680cf00f1d29e959818c449e817b22d89d0a8d029ae27518ff5e98069239ee0b34b6da42c54cf0502b5666733acd70d10f811182f8b4103cbb7abc3e6e11529fa52af4e4f31d076fb82dcb698450c9de73c747a0ff40d138File filter
Conversations
Jump to
There are no files selected for viewing
ericsnowcurrentlyNov 4, 2021
Member
This file is essentially identical to Python/frozen.c if we cut out the non-bootstrap parts, right? So could we just use frozen.c with something like
#ifndef FROZEN_BOOTRAParound the non-bootstrap parts?Otherwise I recommend generating the parts of this file with Tools/scripts/freeze_modules.py, the same as with frozen.c. If we don't then this will break when someone adds another module to the
BOOTSTRAPlist in freeze_modules.py.