From a05026b38dea3ae1e9919659bc91e370711d163d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 31 Mar 1992 18:55:00 +0000 Subject: 'cat' no longer exists --- Lib/macpath.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Lib/macpath.py b/Lib/macpath.py index b0a27c8..47f695a 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, -- cgit v0.12