(body=REQUEST_BODY, headers=None)
| 86 | |
| 87 | |
| 88 | def _request_dict(body=REQUEST_BODY, headers=None): |
| 89 | if headers is None: |
| 90 | headers = {} |
| 91 | |
| 92 | return { |
| 93 | 'body': body, |
| 94 | 'headers': headers, |
| 95 | } |
| 96 | |
| 97 | |
| 98 | def request_dict_non_seekable_text_stream(): |
no outgoing calls
no test coverage detected