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
e8ec0f54
Commit
e8ec0f54
authored
Oct 16, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whitespace for pep8
parent
d646202b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
gevent/pywsgi.py
gevent/pywsgi.py
+5
-6
greentest/test__semaphore.py
greentest/test__semaphore.py
+0
-1
No files found.
gevent/pywsgi.py
View file @
e8ec0f54
...
@@ -370,12 +370,11 @@ class WSGIHandler(object):
...
@@ -370,12 +370,11 @@ class WSGIHandler(object):
response_length
=
0
# How much data we sent
response_length
=
0
# How much data we sent
result
=
None
# The return value of the WSGI application
result
=
None
# The return value of the WSGI application
wsgi_input
=
None
# Instance of Input()
wsgi_input
=
None
# Instance of Input()
content_length
=
0
# From application-provided headers
content_length
=
0
# From application-provided headers Incoming
headers
=
headers_factory
(
BytesIO
())
# Incoming request headers,
# request headers, instance of MessageClass (gunicorn uses hasattr
# instance of MessageClass
# on this so the default value needs to be compatible with the
# (gunicorn uses hasattr on this
# API)
# so the default value needs to be
headers
=
headers_factory
(
BytesIO
())
# compatible with the API)
request_version
=
None
# str: 'HTTP 1.1'
request_version
=
None
# str: 'HTTP 1.1'
command
=
None
# str: 'GET'
command
=
None
# str: 'GET'
path
=
None
# str: '/'
path
=
None
# str: '/'
...
...
greentest/test__semaphore.py
View file @
e8ec0f54
...
@@ -33,7 +33,6 @@ class TestSemaphore(greentest.TestCase):
...
@@ -33,7 +33,6 @@ class TestSemaphore(greentest.TestCase):
self
.
assertEqual
(
s
,
r
())
self
.
assertEqual
(
s
,
r
())
class
TestLock
(
greentest
.
TestCase
):
class
TestLock
(
greentest
.
TestCase
):
def
test_release_unheld_lock
(
self
):
def
test_release_unheld_lock
(
self
):
...
...
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