Fix #16788. Add samestat to Lib/ntpath.py

This commit is contained in:
Brian Curtin 2012-12-26 08:22:00 -06:00
parent e701ec5d3f
commit ae57cec791
2 changed files with 3 additions and 1 deletions

View 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.

View File

@ -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.