(self, http_response)
| 734 | return response.content |
| 735 | |
| 736 | def parse_json(self, http_response): |
| 737 | try: |
| 738 | if Exchange.is_json_encoded_object(http_response): |
| 739 | return self.on_json_response(http_response) |
| 740 | except ValueError: # superclass of JsonDecodeError (python2) |
| 741 | pass |
| 742 | |
| 743 | def is_text_response(self, headers): |
| 744 | # https://github.com/ccxt/ccxt/issues/5302 |
no test coverage detected