diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-12-14 12:37:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-14 12:37:26 (GMT) |
commit | d7538dd5e3e04a8db22e1470cb2ed696bf3be160 (patch) | |
tree | 2e430306e9128222301df75c352863c23a63d79f /Tools/freeze | |
parent | 4aa917c5feaec07a6f6db87b34185ab6180e20ee (diff) | |
download | cpython-d7538dd5e3e04a8db22e1470cb2ed696bf3be160.zip cpython-d7538dd5e3e04a8db22e1470cb2ed696bf3be160.tar.gz cpython-d7538dd5e3e04a8db22e1470cb2ed696bf3be160.tar.bz2 |
bpo-35471: Remove the macpath module (GH-11129)
Python 2.4 dropped MacOS 9 support. The macpath module was deprecated
in Python 3.7. This change removes it.
Diffstat (limited to 'Tools/freeze')
-rwxr-xr-x | Tools/freeze/freeze.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/freeze/freeze.py b/Tools/freeze/freeze.py index d602f58..08d09e7 100755 --- a/Tools/freeze/freeze.py +++ b/Tools/freeze/freeze.py @@ -124,7 +124,7 @@ def main(): # default the exclude list for each platform if win: exclude = exclude + [ - 'dos', 'dospath', 'mac', 'macpath', 'macfs', 'MACFS', 'posix', ] + 'dos', 'dospath', 'mac', 'macfs', 'MACFS', 'posix', ] fail_import = exclude[:] |