summaryrefslogtreecommitdiff
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-02-14 19:35:31 +0000
committerSkip Montanaro <skip@pobox.com>2003-02-14 19:35:31 +0000
commit379f9b34e26c5e6898ab214459625edfe685ac5a (patch)
treeccb4a8f5738b0911f819c9260e719cd95ddb932b /Lib/posixpath.py
parentb3586740e25dae9aacf63ff0016c59f7045e658c (diff)
downloadcpython-379f9b34e26c5e6898ab214459625edfe685ac5a.tar.gz
Migrate definitions of several platform-dependent path-related variables
into the relevant path modules. See patch #686397.
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r--Lib/posixpath.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index d0179f112c..50073dc99d 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -18,8 +18,18 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
"getatime","getctime","islink","exists","isdir","isfile","ismount",
"walk","expanduser","expandvars","normpath","abspath",
"samefile","sameopenfile","samestat",
+ "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
"realpath","supports_unicode_filenames"]
+# strings representing various path-related bits and pieces
+curdir = '.'
+pardir = '..'
+extsep = '.'
+sep = '/'
+pathsep = ':'
+defpath = ':/bin:/usr/bin'
+altsep = None
+
# Normalize the case of a pathname. Trivial in Posix, string.lower on Mac.
# On MS-DOS this may also turn slashes into backslashes; however, other
# normalizations (such as optimizing '../' away) are not allowed