diff options
author | Filipe Laíns 🇵🇸 <lains@riseup.net> | 2024-11-22 18:50:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 18:50:30 (GMT) |
commit | a264637654f9d3ac3c140e66fd56ee32faf22431 (patch) | |
tree | 38e0affc39fe9ab8970ad8343ad2c7cb1d888fb2 /Tools/build | |
parent | 4759ba6eec9f0b36b24b8eb7e7b120d471c67e82 (diff) | |
download | cpython-a264637654f9d3ac3c140e66fd56ee32faf22431.zip cpython-a264637654f9d3ac3c140e66fd56ee32faf22431.tar.gz cpython-a264637654f9d3ac3c140e66fd56ee32faf22431.tar.bz2 |
GH-89435: os.path should not be a frozen module (#126924)
Diffstat (limited to 'Tools/build')
-rw-r--r-- | Tools/build/freeze_modules.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Tools/build/freeze_modules.py b/Tools/build/freeze_modules.py index 7f1dee1..8f74abd 100644 --- a/Tools/build/freeze_modules.py +++ b/Tools/build/freeze_modules.py @@ -63,9 +63,6 @@ FROZEN = [ 'genericpath', 'ntpath', 'posixpath', - # We must explicitly mark os.path as a frozen module - # even though it will never be imported. - f'{OS_PATH} : os.path', 'os', 'site', 'stat', |