Pylons / waitress

Waitress - A WSGI server for Python 3
https://docs.pylonsproject.org/projects/waitress/en/latest/
Other
1.45k stars 175 forks source link

Bugfix: wsgi.file_wrapper should pass-through seek/tell attrs #363

Closed digitalresistor closed 2 years ago

digitalresistor commented 2 years ago

When the application author uses wsgi.file_wrapper we want to allow downstream WSGI middleware to seek that file if the underlying file supports it, rather than needing to iterate over the full file to get to the part that the WSGI middleware wants to start at.

Closes #359