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
7636521f
Commit
7636521f
authored
Oct 10, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs [skip ci]
parent
29e42097
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
12 deletions
+20
-12
doc/contents.rst
doc/contents.rst
+2
-1
doc/intro.rst
doc/intro.rst
+14
-10
src/greentest/greentest.py
src/greentest/greentest.py
+4
-1
No files found.
doc/contents.rst
View file @
7636521f
...
...
@@ -4,8 +4,9 @@ Table Of Contents
.. toctree::
intro
whatsnew_1_
1
whatsnew_1_
2
reference
whatsnew_1_1
whatsnew_1_0
changelog
...
...
doc/intro.rst
View file @
7636521f
...
...
@@ -22,19 +22,23 @@ Features include:
Installation and Requirements
=============================
`gevent 1.
1
`_ runs on Python 2 and Python 3. Version 2.7 of
Python 2 is supported, and versions 3.
3, 3.4, and 3.5
of Python 3 are
`gevent 1.
2
`_ runs on Python 2 and Python 3. Version 2.7 of
Python 2 is supported, and versions 3.
4, 3.5 and 3.6
of Python 3 are
supported. (Users of older versions of Python 2 need to install gevent
1.0.x (2.5) or 1.1.x (2.6); Python 3 is not supported by 1.0.) gevent requires the
greenlet__ library.
.. note:: For Python 3.3, version 3.3.5 or newer is required to use
the gevent's SSL support due to bugs in the standard library of older
versions. For Python 2, 2.7.9 or newer is recommended for
the best SSL support; 2.7.8 is also tested although it
offers a less-secure SSL module.
gevent 1.1 also runs on PyPy 2.6.1 and above, although 5.0 or above is
.. note:: Python 3.3 is no longer actively supported since it is not
supported by the Python developers. However, it should
continue to work with gevent 1.2 with the same level of
support as gevent 1.1. For Python 3.3, version 3.3.5 or
newer is required to use the gevent's SSL support due to
bugs in the standard library of older versions. For Python
2, 2.7.9 or newer is recommended for the best SSL support;
2.7.8 is also tested although it offers a less-secure SSL
module.
gevent 1.2 also runs on PyPy 2.6.1 and above, although 5.0 or above is
strongly recommended. On PyPy, there are no external dependencies.
gevent is tested on Windows, OS X, and Linux, and should run on most
...
...
@@ -60,7 +64,7 @@ Development instructions can be found `on PyPI <https://pypi.python.org/pypi/gev
__ http://pypi.python.org/pypi/greenlet
.. _`pip`: https://pip.pypa.io/en/stable/installing/
.. _`wheels`: http://pythonwheels.com
.. _`gevent 1.
1`: whatsnew_1_1
.html
.. _`gevent 1.
2`: whatsnew_1_2
.html
.. _`cffi`: https://cffi.readthedocs.io
.. _`limitations in libev`: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#WIN32_PLATFORM_LIMITATIONS_AND_WORKA
...
...
src/greentest/greentest.py
View file @
7636521f
...
...
@@ -315,7 +315,10 @@ class TestCaseMetaClass(type):
timeout
*=
6
check_totalrefcount
=
_get_class_attr
(
classDict
,
bases
,
'check_totalrefcount'
,
True
)
error_fatal
=
_get_class_attr
(
classDict
,
bases
,
'error_fatal'
,
True
)
for
key
,
value
in
list
(
classDict
.
items
()):
# Python 3: must copy, we mutate
# Python 3: must copy, we mutate the classDict. Interestingly enough,
# it doesn't actually error out, but under 3.6 we wind up wrapping
# and re-wrapping the same items over and over and over.
for
key
,
value
in
list
(
classDict
.
items
()):
if
key
.
startswith
(
'test'
)
and
callable
(
value
):
classDict
.
pop
(
key
)
#value = wrap_switch_count_check(value)
...
...
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