(self)
| 18 | |
| 19 | class UnclosableBytesIO(BytesIO): |
| 20 | def close(self): |
| 21 | # WSGIRequestHandler closes the output file; we need to make this a |
| 22 | # no-op so we can still read its contents. |
| 23 | pass |
| 24 | |
| 25 | |
| 26 | class WSGIRequestHandlerTestCase(SimpleTestCase): |
no outgoing calls
no test coverage detected