summaryrefslogtreecommitdiff
path: root/paste/request.py
Commit message (Collapse)AuthorAgeFilesLines
* Simplify parse_formvars. (#34)Benjamin Peterson2019-09-061-40/+29
| | | If we don't want to parse the request body with cgi, we can just not use cgi rather than building a fake request.
* Get MutableMapping from collections.abc on Python 3. (#26)Benjamin Peterson2019-07-241-1/+1
| | | This fixes a deprecation warning on 3.7.
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+428
See https://www.python.org/dev/peps/pep-0479/