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