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
bd9cbb06
Commit
bd9cbb06
authored
Dec 16, 2013
by
Christian Heimes
Browse files
Options
Browse Files
Download
Plain Diff
Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns
EWOULDBLOCK on Windows or VMs hosted on Windows.
parents
0048c98f
de570748
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
Lib/test/test_ssl.py
Lib/test/test_ssl.py
+4
-2
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_ssl.py
View file @
bd9cbb06
...
...
@@ -1201,8 +1201,10 @@ class NetworkedTests(unittest.TestCase):
cert_reqs
=
ssl
.
CERT_REQUIRED
,
ca_certs
=
SVN_PYTHON_ORG_ROOT_CERT
)
try
:
self
.
assertEqual
(
errno
.
ECONNREFUSED
,
s
.
connect_ex
((
"svn.python.org"
,
444
)))
rc
=
s
.
connect_ex
((
"svn.python.org"
,
444
))
# Issue #19919: Windows machines or VMs hosted on Windows
# machines sometimes return EWOULDBLOCK.
self
.
assertIn
(
rc
,
(
errno
.
ECONNREFUSED
,
errno
.
EWOULDBLOCK
))
finally
:
s
.
close
()
...
...
Misc/NEWS
View file @
bd9cbb06
...
...
@@ -192,6 +192,9 @@ IDLE
Tests
-----
-
Issue
#
19919
:
Fix
flacky
SSL
test
.
connect_ex
()
sometimes
returns
EWOULDBLOCK
on
Windows
or
VMs
hosted
on
Windows
.
-
Issue
#
19912
:
Added
tests
for
ntpath
.
splitunc
().
-
Issue
#
19828
:
Fixed
test_site
when
the
whole
suite
is
run
with
-
S
.
...
...
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