[Python-checkins] cpython: Fix #16788. Add samestat to Lib/ntpath.py

brian.curtin python-checkins at python.org
Wed Dec 26 15:22:15 CET 2012


http://hg.python.org/cpython/rev/cc3f7ef1072e
changeset:   81065:cc3f7ef1072e
user:        Brian Curtin <brian at python.org>
date:        Wed Dec 26 08:22:00 2012 -0600
summary:
  Fix #16788. Add samestat to Lib/ntpath.py

files:
  Lib/ntpath.py |  2 +-
  Misc/NEWS     |  2 ++
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Lib/ntpath.py b/Lib/ntpath.py
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -17,7 +17,7 @@
            "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.
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -190,6 +190,8 @@
 Library
 -------
 
+- Issue #16788: Add samestat to Lib/ntpath.py
+
 - Issue #16702: test_urllib2_localnet tests now correctly ignores proxies for
   localhost tests.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list