summaryrefslogtreecommitdiff
path: root/eventlet/wsgi.py
Commit message (Expand)AuthorAgeFilesLines
* wsgi: Fix handling partial writes on Python 3partial-write-fix-2Jakub Stasiak2016-02-091-8/+13
* wsgi: document default value for max_size (1024); Thanks to ashutosh-mishrap262ashutosh-mishra2015-11-111-0/+1
* wsgi: don't buffer empty strings from the applicationSamuel Merritt2015-10-121-2/+3
* wsgi: suppress output of 0-byte chunksSamuel Merritt2015-10-081-1/+2
* wsgi: improved request body discardwsgi-drop-invalidSergey Shepelev2015-09-071-16/+24
* wsgi: better error for chunk read failuresSamuel Merritt2015-08-101-1/+8
* wsgi: UNIX socket address was trimmed in "wsgi starting" log; Thanks to Ihar ...gh-235Sergey Shepelev2015-06-021-13/+20
* wsgi: Provide python logging compatibilitywsgi-logging-gh-75Sean Dague2015-03-311-14/+40
* Python 3 compat: Fix all Travis test failuresdevJakub Stasiak2015-02-131-21/+9
* pep8: trivial fixesChristoph Gysin2014-11-111-1/+1
* Python 3 compat; Improve WSGI, WS, threading and testsJakub Stasiak2014-11-111-2/+4
* wsgi.input: Make send_hundred_continue_headers a public APITushar Gohad2014-11-061-7/+13
* Improve documentationJakub Stasiak2014-10-311-0/+13
* Python 3 compat: Improve subprocess, WSGI and testsJakub Stasiak2014-10-131-3/+6
* Allow more gracefull shutdown of wsgi serverStuart McLaren2014-10-131-1/+5
* Python 3 compat: Improve SSL and WSGI compatJakub Stasiak2014-10-111-4/+2
* Python 3 compat: Fix precedence bugraylu2014-10-111-1/+1
* Python 3 compat: Improve various bitsJakub Stasiak2014-10-101-24/+24
* wsgi: pep8 fixesTushar Gohad2014-08-271-24/+43
* wsgi: Support optional headers w/ "100 Continue" responsesTushar Gohad2014-08-241-10/+40
* wsgi: websocket: Reformat code + tests (PEP-8)Jakub Stasiak2014-07-181-28/+29
* Python 3 compatibility fixesJakub Stasiak2014-07-181-12/+30
* wsgi: capitalize_response_headers optionSergey Shepelev2014-04-221-6/+28
* python3 compat fixesVictor Sergeyev2014-03-281-3/+5
* python3 compat: 2to3: `except E as e:` syntaxDavanum Srinivas2013-12-031-5/+5
* wsgi: Allow minimum_chunk_size to be overriden on a per request basisDavid Goetz2013-09-051-2/+4
* wsgi: configurable socket_timeoutSergey Shepelev2013-08-091-3/+10
* wsgi: pep8 whitespaceSergey Shepelev2013-08-081-2/+9
* wsgi: close timed out client connectionsSergey Shepelev2013-08-081-0/+1
* wsgi: handle connection socket timeoutsPaul Oppenheim2013-07-091-2/+8
* wsgi: env['wsgi.input'] was returning 1 byte stringsEric Urban2013-07-091-1/+1
* wsgi: minimum_chunk_size of last Server altered all previous (global variable)Jakub Stasiak2013-04-091-4/+12
* wsgi: environ[REMOTE_PORT], also available in log_format, plus log accept eve...Sergey Shepelev2013-01-231-12/+18
* Merged in clayg/eventlet/bug95 (pull request #25)Sergey Shepelev2012-12-101-74/+173
|\
| * Make the maximum URL length configurableTomas Sedovic2012-04-051-2/+7
| * Add environ['RAW_PATH_INFO'] to hold the request path as it was sent fromDoug Weimer2012-02-291-0/+1
| * mergejmg.utn2011-11-061-9/+16
| |\
| | * log_output flag parameter added to the wsgi serverjmg.utn2011-11-061-9/+16
| * | Limit overall HTTP header length and testsGregory Holt2011-10-201-4/+19
| * | Limit HTTP header line lengthGregory Holt2011-10-201-1/+32
| |/
| * Debug mode now has an off mode to silence tracebacks on 500, per redbo's sugg...Ryan Williams2011-02-041-7/+16
| * Stop wsgi server from blowing up when given an ipv6 socketredbo2011-01-071-2/+2
| * Fixing empty-query-string compatibility that mcarter reported, added unit tes...Ryan Williams2010-10-241-6/+4
| * Documenting ssl servers.Ryan Williams2010-09-171-1/+1
| * Support for SSL websockets, which also happens to improve our SSL support in ...Ryan Williams2010-09-161-1/+5
| * eventlet.wsgi no longer prints error messages, it instead uses the logfile. ...Ryan Williams2010-08-111-5/+5
| * Ensure that when an exception is raised in the application the server doesn't...Ryan Williams2010-08-111-2/+4
| * wsgi posthooksGreg Holt2010-07-021-0/+4
| * Upgrading wsgi to also ignore tpooled AlreadyHandled results (because isinsta...Ryan Williams2010-06-211-1/+2
| * Chunked readline fixes by schmir, ported from gevent by redbo.Ryan Williams2010-05-271-28/+47