]> granicus.if.org Git - python/commitdiff
Fix #16788. Add samestat to Lib/ntpath.py
authorBrian Curtin <brian@python.org>
Wed, 26 Dec 2012 14:22:00 +0000 (08:22 -0600)
committerBrian Curtin <brian@python.org>
Wed, 26 Dec 2012 14:22:00 +0000 (08:22 -0600)
Lib/ntpath.py
Misc/NEWS

index ae134846c5101f4ab00d8255510bcf3e91e7b150..d81f7285aee8683f22d61a7f6e3339aebf6bac52 100644 (file)
@@ -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.
index 5dbb6a5c868b074181fedc6980218883ba033983..72ac2b9834eedf6f7db8cdd67891568bdc79574b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -190,6 +190,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #16788: Add samestat to Lib/ntpath.py
+
 - Issue #16702: test_urllib2_localnet tests now correctly ignores proxies for
   localhost tests.