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
c399e852
Commit
c399e852
authored
Aug 17, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Issue #22165: Fixed test_undecodable_filename on Mac OS.
parents
0879001f
d9e95288
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
Lib/test/test_httpservers.py
Lib/test/test_httpservers.py
+7
-0
No files found.
Lib/test/test_httpservers.py
View file @
c399e852
...
...
@@ -277,6 +277,13 @@ class SimpleHTTPServerTestCase(BaseTestCase):
with
open
(
os
.
path
.
join
(
self
.
tempdir
,
filename
),
'wb'
)
as
f
:
f
.
write
(
support
.
TESTFN_UNDECODABLE
)
response
=
self
.
request
(
self
.
tempdir_name
+
'/'
)
if
sys
.
platform
==
'darwin'
:
# On Mac OS the HFS+ filesystem replaces bytes that aren't valid
# UTF-8 into a percent-encoded value.
for
name
in
os
.
listdir
(
self
.
tempdir
):
if
name
!=
'test'
:
# Ignore a filename created in setUp().
filename
=
name
break
body
=
self
.
check_status_and_reason
(
response
,
200
)
quotedname
=
urllib
.
parse
.
quote
(
filename
,
errors
=
'surrogatepass'
)
self
.
assertIn
((
'href="%s"'
%
quotedname
)
...
...
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