summaryrefslogtreecommitdiffstats
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-12-14 12:37:26 (GMT)
committerGitHub <noreply@github.com>2018-12-14 12:37:26 (GMT)
commitd7538dd5e3e04a8db22e1470cb2ed696bf3be160 (patch)
tree2e430306e9128222301df75c352863c23a63d79f /Lib/posixpath.py
parent4aa917c5feaec07a6f6db87b34185ab6180e20ee (diff)
downloadcpython-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.py4
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.