Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
3d5c3dbc
Commit
3d5c3dbc
authored
Dec 07, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test_ssl.py works on python 2.7.11 since SSLv3 is disabled by default now.
parent
30e5c704
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
gevent/corecffi.py
gevent/corecffi.py
+0
-1
greentest/2.7/test_ssl.py
greentest/2.7/test_ssl.py
+3
-0
greentest/test__greenlet.py
greentest/test__greenlet.py
+1
-0
No files found.
gevent/corecffi.py
View file @
3d5c3dbc
...
...
@@ -520,7 +520,6 @@ class loop(object):
libev
.
ev_run
(
self
.
_ptr
,
flags
)
def
reinit
(
self
):
libev
.
ev_loop_fork
(
self
.
_ptr
)
...
...
greentest/2.7/test_ssl.py
View file @
3d5c3dbc
...
...
@@ -1210,6 +1210,9 @@ else:
"""Connecting to an SSLv23 server with various client options"""
if
test_support
.
verbose
:
sys
.
stdout
.
write
(
"
\
n
"
)
if
sys
.
version_info
[:
3
]
>=
(
2
,
7
,
11
):
# http://bugs.python.org/issue25530
self
.
skipTest
(
"SSLv23 Disabled in 2.7.11"
)
try_protocol_combo
(
ssl
.
PROTOCOL_SSLv23
,
ssl
.
PROTOCOL_SSLv3
,
True
)
try_protocol_combo
(
ssl
.
PROTOCOL_SSLv23
,
ssl
.
PROTOCOL_SSLv23
,
True
)
try_protocol_combo
(
ssl
.
PROTOCOL_SSLv23
,
ssl
.
PROTOCOL_TLSv1
,
True
)
...
...
greentest/test__greenlet.py
View file @
3d5c3dbc
...
...
@@ -487,6 +487,7 @@ class TestBasic(greentest.TestCase):
def
test_spawn_raw_kwargs
(
self
):
value
=
[]
def
f
(
*
args
,
**
kwargs
):
value
.
append
(
args
)
value
.
append
(
kwargs
)
...
...
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