(self)
| 40 | class ErrorStream(Protocol): |
| 41 | """WSGI error stream as defined in PEP 3333""" |
| 42 | def flush(self) -> object: ... |
| 43 | def write(self, s: str, /) -> object: ... |
| 44 | def writelines(self, seq: list[str], /) -> object: ... |
| 45 |
no outgoing calls
no test coverage detected