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
5fd0f6ef
Commit
5fd0f6ef
authored
Feb 09, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more timeout adjustments for appveyor.
parent
a65501a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
changelog.rst
changelog.rst
+4
-1
greentest/greentest.py
greentest/greentest.py
+2
-1
No files found.
changelog.rst
View file @
5fd0f6ef
...
...
@@ -12,9 +12,12 @@
Reported in :issue:`798` by Garrett Heel.
- Python 2: Don't raise ``OverflowError`` when using the ``readline``
method of the WSGI input stream without a size hint or with a large
size hint when the client is uploading a large amount of data.
size hint when the client is uploading a large amount of data. (This
only impacted CPython 2; PyPy and Python 3 already handled this.)
Reported in :issue:`289` by ggjjlldd, with contributions by Nathan
Hoad.
- ``BaseServer`` and its subclasses like ``WSGIServer`` avoid
allocating a new closure for each request, reducing overhead.
1.1rc3 (Jan 04, 2016)
=====================
...
...
greentest/greentest.py
View file @
5fd0f6ef
...
...
@@ -510,7 +510,8 @@ class _DelayWaitMixin(object):
_default_delay_max_adj
=
0.11
else
:
# Timing resolution is extremely poor on Appveyor
_default_delay_max_adj
=
0.9
# and subject to jitter.
_default_delay_max_adj
=
0.98
def
wait
(
self
,
timeout
):
raise
NotImplementedError
(
'override me in subclass'
)
...
...
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