(self)
| 353 | info = None |
| 354 | |
| 355 | def __init__(self): |
| 356 | if self.info is not None: |
| 357 | return |
| 358 | info = command_info(arch='arch', |
| 359 | machine='machine') |
| 360 | info['sysctl_hw'] = key_value_from_command('sysctl hw', sep='=') |
| 361 | self.__class__.info = info |
| 362 | |
| 363 | def _not_impl(self): pass |
| 364 |
nothing calls this directly
no test coverage detected