summaryrefslogtreecommitdiff
path: root/paste/debug/debugapp.py
Commit message (Collapse)AuthorAgeFilesLines
* py3 fixes for form handling in paste.fixture (#8)Daniel Hahler2018-10-301-6/+6
| | | | | | | | | | | | | | | | | * py3 fixes for form handling in paste.fixture It uses "not six.PY2" in contrast to other places in the code to be forward-compatible. I've not looked too closely, but it might make sense to decode body/text in the beginning already, instead of having it as bytes internally?! Also, like mentioned in [1] already, it should probably use the correct source encoding?! 1: https://github.com/cdent/paste/blob/36e5b8bd16a6063ec654faf04541f3a20d19f7fe/paste/fixture.py#L820 * Add test, using/fixing SlowConsumer form app
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+79
See https://www.python.org/dev/peps/pep-0479/