summaryrefslogtreecommitdiff
path: root/tests/test_httpserver.py
Commit message (Collapse)AuthorAgeFilesLines
* add ipv6 support by setting address family (#50)Lekinho2020-02-121-1/+60
| | | * add ipv6 support by setting address family
* LimitedLengthFile: Handle io.UnsupportedOperation from socket.tell(). (#35)Benjamin Peterson2019-09-091-0/+21
| | | On Python 3, socket.makefile() returns an object with a tell() method, but one that always raises io.UnsupportedOperation.
* Make LimitedLengthFile file return empty bytes rather than empty string when ↵Benjamin Peterson2019-09-041-1/+9
| | | | it's done. (#32)
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+45
See https://www.python.org/dev/peps/pep-0479/