diff options
author | Kumar Aditya <rahuladitya303@gmail.com> | 2021-12-09 16:51:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-09 16:51:09 (GMT) |
commit | 44b0e76f2a80c9a78242b7542b8b1218d244af07 (patch) | |
tree | 5a1cde546959ae56e02b26d791310d2b2cc80aa5 /Tools/scripts | |
parent | dc4a212bd305831cb4b187a2e0cc82666fcb15ca (diff) | |
download | cpython-44b0e76f2a80c9a78242b7542b8b1218d244af07.zip cpython-44b0e76f2a80c9a78242b7542b8b1218d244af07.tar.gz cpython-44b0e76f2a80c9a78242b7542b8b1218d244af07.tar.bz2 |
bpo-45654: Freeze the runpy module and stuff it imports (GH-29903)
Diffstat (limited to 'Tools/scripts')
-rw-r--r-- | Tools/scripts/freeze_modules.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tools/scripts/freeze_modules.py b/Tools/scripts/freeze_modules.py index 363a2e6..b0c9531 100644 --- a/Tools/scripts/freeze_modules.py +++ b/Tools/scripts/freeze_modules.py @@ -68,6 +68,12 @@ FROZEN = [ 'site', 'stat', ]), + ('runpy - run module with -m', [ + "types", + "importlib.util", + "importlib.machinery", + "runpy" + ]), (TESTS_SECTION, [ '__hello__', '__hello__ : __hello_alias__', |