diff options
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index dcd5a63..c117c89 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -19,7 +19,7 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext", "walk","expanduser","expandvars","normpath","abspath", "samefile","sameopenfile","samestat", "curdir","pardir","sep","pathsep","defpath","altsep","extsep", - "realpath","supports_unicode_filenames"] + "devnull","realpath","supports_unicode_filenames"] # strings representing various path-related bits and pieces curdir = '.' @@ -29,6 +29,7 @@ sep = '/' pathsep = ':' defpath = ':/bin:/usr/bin' altsep = None +devnull = '/dev/null' # 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 |