(**kw)
| 525 | |
| 526 | |
| 527 | def _makeEnviron(**kw): |
| 528 | environ = { |
| 529 | 'REQUEST_METHOD': 'GET', |
| 530 | 'wsgi.url_scheme': 'http', |
| 531 | 'SERVER_NAME': 'localhost', |
| 532 | 'SERVER_PORT': '80', |
| 533 | } |
| 534 | environ.update(kw) |
| 535 | return environ |
no test coverage detected
searching dependent graphs…