From: Brian Curtin Date: Wed, 26 Dec 2012 14:22:00 +0000 (-0600) Subject: Fix #16788. Add samestat to Lib/ntpath.py X-Git-Tag: v3.4.0a1~1767 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae57cec791214b5609ad66f6c7a6e10ce3985911;p=thirdparty%2FPython%2Fcpython.git Fix #16788. Add samestat to Lib/ntpath.py --- diff --git a/Lib/ntpath.py b/Lib/ntpath.py index ae134846c510..d81f7285aee8 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. diff --git a/Misc/NEWS b/Misc/NEWS index 5dbb6a5c868b..72ac2b9834ee 100644 --- 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.