(self, args)
| 407 | return result |
| 408 | |
| 409 | def Editor(self, args): |
| 410 | if self._options.requires_editor: |
| 411 | return self._side_effect_handler.Command( |
| 412 | os.environ["EDITOR"], |
| 413 | args, |
| 414 | pipe=False, |
| 415 | cwd=self.default_cwd) |
| 416 | |
| 417 | def ReadURL(self, url, params=None, retry_on=None, wait_plan=None): |
| 418 | wait_plan = wait_plan or [3, 60, 600] |