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 /Lib/posixpath.py | |
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 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 4914a17..12ab2ea 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -2,9 +2,9 @@ Instead of importing this module directly, import os and refer to this module as os.path. The "os.path" name is an alias for this -module on Posix systems; on other systems (e.g. Mac, Windows), +module on Posix systems; on other systems (e.g. Windows), os.path provides the same operations in a manner specific to that -platform, and is an alias to another module (e.g. macpath, ntpath). +platform, and is an alias to another module (e.g. ntpath). Some of this can actually be useful on non-Posix systems too, e.g. for manipulation of the pathname component of URLs. |