Commit e8ec0f54 authored by Jason Madden's avatar Jason Madden

whitespace for pep8

parent d646202b
...@@ -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: '/'
......
...@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment