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
993dd2e1
Commit
993dd2e1
authored
Apr 21, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
note about package to install to run tests on debian. [skip ci]
parent
0c07fd60
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
README.rst
README.rst
+3
-1
src/gevent/baseserver.py
src/gevent/baseserver.py
+2
-1
No files found.
README.rst
View file @
993dd2e1
...
...
@@ -88,7 +88,6 @@ can be done using tox::
pip install tox
tox
The testrunner accepts a ``--coverage`` argument to enable code
coverage metrics through the `coverage.py`_ package. That would go
something like this::
...
...
@@ -113,6 +112,9 @@ common code smells, etc).
:target: https://landscape.io/github/gevent/gevent/master
:alt: Code Health
.. note:: On Debian, you will probably need ``libpythonX.Y-testsuite``
installed to run all the tests.
Continuous integration
----------------------
...
...
src/gevent/baseserver.py
View file @
993dd2e1
...
...
@@ -45,7 +45,8 @@ class BaseServer(object):
:meth:`set_handle`.
When the request handler returns, the socket used for the
request will be closed.
request will be closed. Therefore, the handler must not return if
the socket is still in use (for example, by manually spawned greenlets).
:keyword spawn: If provided, is called to create a new
greenlet to run the handler. By default,
...
...
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