diff options
author | Brian Curtin <brian@python.org> | 2012-12-26 14:22:00 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2012-12-26 14:22:00 (GMT) |
commit | ae57cec791214b5609ad66f6c7a6e10ce3985911 (patch) | |
tree | 518a8a2f6228566f67da5683aea8d815c80d4b00 /Lib/ntpath.py | |
parent | e701ec5d3fbe9889ef17ff15c6eff325e8705b86 (diff) | |
download | cpython-ae57cec791214b5609ad66f6c7a6e10ce3985911.zip cpython-ae57cec791214b5609ad66f6c7a6e10ce3985911.tar.gz cpython-ae57cec791214b5609ad66f6c7a6e10ce3985911.tar.bz2 |
Fix #16788. Add samestat to Lib/ntpath.py
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index ae13484..d81f728 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -17,7 +17,7 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext", "ismount", "expanduser","expandvars","normpath","abspath", "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", "extsep","devnull","realpath","supports_unicode_filenames","relpath", - "samefile", "sameopenfile",] + "samefile", "sameopenfile", "samestat",] # strings representing various path-related bits and pieces # These are primarily for export; internally, they are hardcoded. |