summaryrefslogtreecommitdiff
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-31 18:55:00 +0000
committerGuido van Rossum <guido@python.org>1992-03-31 18:55:00 +0000
commitc0781585a19be2dc3a12cd1800123eb7c7b2c23a (patch)
treea9fe6ec9dabf40dbb0325415b4b3a511797a47e0 /Lib/macpath.py
parent2cddc31a288061e6c5773d85d5d446f3b90d8326 (diff)
downloadcpython-c0781585a19be2dc3a12cd1800123eb7c7b2c23a.tar.gz
'cat' no longer exists
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index b0a27c85be..47f695a9b5 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -34,9 +34,6 @@ def join(s, t):
return s + t
-cat = join # For compatibility
-
-
# Split a pathname in two parts: the directory leading up to the final bit,
# and the basename (the filename, without colons, in that directory).
# The result (s, t) is such that join(s, t) yields the original argument.
@@ -49,6 +46,7 @@ def split(s):
return s[:colon], s[colon:]
+# XXX This is undocumented and may go away!
# Normalize a pathname: get rid of '::' sequences by backing up,
# e.g., 'foo:bar::bletch' becomes 'foo:bletch'.
# Raise the exception norm_error below if backing up is impossible,