(wsgi_errors)
| 407 | |
| 408 | |
| 409 | def check_errors(wsgi_errors): |
| 410 | for attr in ['flush', 'write', 'writelines']: |
| 411 | if not hasattr(wsgi_errors, attr): |
| 412 | raise AssertionError( |
| 413 | "wsgi.errors (%r) doesn't have the attribute %s" |
| 414 | % (wsgi_errors, attr) |
| 415 | ) |
| 416 | |
| 417 | |
| 418 | def check_status(status): |
no outgoing calls
no test coverage detected
searching dependent graphs…