| 19 | |
| 20 | |
| 21 | class DebugInfoRequest( BaseRequest ): |
| 22 | def __init__( self, extra_data = None ): |
| 23 | super( DebugInfoRequest, self ).__init__() |
| 24 | self._extra_data = extra_data |
| 25 | self._response = None |
| 26 | |
| 27 | |
| 28 | def Start( self ): |
| 29 | request_data = BuildRequestData() |
| 30 | if self._extra_data: |
| 31 | request_data.update( self._extra_data ) |
| 32 | self._response = self.PostDataToHandler( request_data, |
| 33 | 'debug_info', |
| 34 | display_message = False ) |
| 35 | |
| 36 | |
| 37 | def Response( self ): |
| 38 | return self._response |
| 39 | |
| 40 | |
| 41 | def FormatDebugInfoResponse( response ): |
no outgoing calls
no test coverage detected