(self)
| 93 | return self._splash_args.get('http_method', 'GET') |
| 94 | |
| 95 | def __str__(self): |
| 96 | if not self._processed: |
| 97 | return super(SplashRequest, self).__str__() |
| 98 | return "<%s %s via %s>" % (self._original_method, self._original_url, self.url) |
| 99 | |
| 100 | __repr__ = __str__ |
| 101 |
nothing calls this directly
no outgoing calls
no test coverage detected