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
8752dfbd
Commit
8752dfbd
authored
Dec 06, 2018
by
native-api
Committed by
Serhiy Storchaka
Dec 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-33709: test_ntpath and test_posixpath fail in Windows with ACP!=1252. (GH-7278)
parent
6ea9d54d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Lib/test/support/__init__.py
Lib/test/support/__init__.py
+5
-1
No files found.
Lib/test/support/__init__.py
View file @
8752dfbd
...
@@ -871,7 +871,11 @@ for character in (
...
@@ -871,7 +871,11 @@ for character in (
'
\
u20AC
'
,
'
\
u20AC
'
,
):
):
try
:
try
:
os
.
fsdecode
(
os
.
fsencode
(
character
))
# If Python is set up to use the legacy 'mbcs' in Windows,
# 'replace' error mode is used, and encode() returns b'?'
# for characters missing in the ANSI codepage
if
os
.
fsdecode
(
os
.
fsencode
(
character
))
!=
character
:
raise
UnicodeError
except
UnicodeError
:
except
UnicodeError
:
pass
pass
else
:
else
:
...
...
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