True if client can accept status and headers
(self)
| 362 | |
| 363 | |
| 364 | def client_is_modern(self): |
| 365 | """True if client can accept status and headers""" |
| 366 | return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9' |
| 367 | |
| 368 | |
| 369 | def log_exception(self,exc_info): |
no test coverage detected