(k)
| 28 | }.__contains__ |
| 29 | |
| 30 | def _needs_transcode(k): |
| 31 | return _is_request(k) or k.startswith('HTTP_') or k.startswith('SSL_') \ |
| 32 | or (k.startswith('REDIRECT_') and _needs_transcode(k[9:])) |
| 33 | |
| 34 | def read_environ(): |
| 35 | """Read environment, fixing HTTP variables""" |
no test coverage detected