( self )
| 70 | |
| 71 | |
| 72 | def Response( self ): |
| 73 | if self._response is None and self._response_future is not None: |
| 74 | # Block |
| 75 | self._response = self.HandleFuture( self._response_future, |
| 76 | display_message = not self._silent ) |
| 77 | |
| 78 | return self._response |
| 79 | |
| 80 | |
| 81 | def RunPostCommandActionsIfNeeded( self, |
no test coverage detected