summaryrefslogtreecommitdiff
path: root/paste/util/scgiserver.py
Commit message (Collapse)AuthorAgeFilesLines
* Strip trailing spacesVictor Stinner2015-04-211-4/+4
|
* Python 3: use six.reraise() to re-raise an exception with the tracebackCyril Roelandt2014-03-181-1/+2
|
* Python 3: Replace "except Exception, exc" with "except Exception as exc:"Cyril Roelandt2014-03-181-1/+1
|
* remove unneeded shebangianb2009-03-041-1/+0
|
* remove tabsianb2007-07-221-1/+1
|
* Fix #134 from cookedm: paste.util.scgiserver doesn't like an empty string as ↵ianb2006-11-021-1/+1
| | | | the prefix
* A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ianb2006-10-201-4/+4
| | | | of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up.
* Several name problems, small bugs, extra imports caught by pyflakesianb2006-10-201-1/+0
|
* added optional host and max_children args to scgi's serve_application.pjenvey2006-06-171-2/+28
| | | | | | | | | | | | | | | Ideally the function prototype would match SCGIServers, i.e.: def serve_application(application, prefix, host=, port=None, max_children=None): or: def serve_application(application, prefix, **kwargs): (host, port and max_children could then default to SCGIServer's defaults), but that could break compatibility with those not explicitly using keyword args suggested by: greg@electricrain.com resolves: #55
* Typo; fixed #54 (no QUERY_STRING or QUERY_STRING on PATH_INFO)ianb2006-01-121-1/+1
|
* Added docstrings to some modulesianb2006-01-041-3/+2
|
* Copied over scgiserver from an old tag, so Titus can do some work on itianb2005-12-231-0/+148