(self, msg)
| 835 | return self.supported_archs is None or arch in self.supported_archs |
| 836 | |
| 837 | def log_error(self, msg): |
| 838 | print('error: {}'.format(msg), file=sys.stdout) |
| 839 | |
| 840 | def log_info(self, msg='', flush=False, **kwargs): |
| 841 | if not self.env['quiet']: |
no outgoing calls