Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
45fd0c99
Commit
45fd0c99
authored
May 06, 2011
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Plain Diff
merge from 3.2
parents
ff9bfca4
6355c16d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Lib/ntpath.py
Lib/ntpath.py
+1
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/ntpath.py
View file @
45fd0c99
...
...
@@ -654,7 +654,7 @@ except (AttributeError, ImportError):
# Non-Windows operating systems fake this method with an XP
# approximation.
def
_getfinalpathname
(
f
):
return
abspath
(
f
)
return
normcase
(
abspath
(
f
)
)
def
samefile
(
f1
,
f2
):
"Test whether two pathnames reference the same actual file"
...
...
Misc/NEWS
View file @
45fd0c99
...
...
@@ -140,6 +140,9 @@ Core and Builtins
Library
-------
- ntpath.samefile failed to notice that "a.txt" and "A.TXT" refer to the same
file on Windows XP. As noticed in issue #10684.
- Issue #12000: When a SSL certificate has a subjectAltName without any
dNSName entry, ssl.match_hostname() should use the subject'
s
commonName
.
Patch
by
Nicolas
Bareil
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment