(exc_info)
| 425 | assert_(0, "No Content-Type header found in headers (%s)" % headers) |
| 426 | |
| 427 | def check_exc_info(exc_info): |
| 428 | assert_(exc_info is None or type(exc_info) is tuple, |
| 429 | "exc_info (%r) is not a tuple: %r" % (exc_info, type(exc_info))) |
| 430 | # More exc_info checks? |
| 431 | |
| 432 | def check_iterator(iterator): |
| 433 | # Technically a bytestring is legal, which is why it's a really bad |
no test coverage detected
searching dependent graphs…