Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2684738 commit a05026bCopy full SHA for a05026b
1 file changed
Lib/macpath.py
@@ -34,9 +34,6 @@ def join(s, t):
34
return s + t
35
36
37
-cat = join # For compatibility
38
-
39
40
# Split a pathname in two parts: the directory leading up to the final bit,
41
# and the basename (the filename, without colons, in that directory).
42
# The result (s, t) is such that join(s, t) yields the original argument.
@@ -49,6 +46,7 @@ def split(s):
49
46
return s[:colon], s[colon:]
50
47
51
48
+# XXX This is undocumented and may go away!
52
# Normalize a pathname: get rid of '::' sequences by backing up,
53
# e.g., 'foo:bar::bletch' becomes 'foo:bletch'.
54
# Raise the exception norm_error below if backing up is impossible,
0 commit comments