(self)
| 295 | info = None |
| 296 | |
| 297 | def __init__(self): |
| 298 | if self.info is not None: |
| 299 | return |
| 300 | info = key_value_from_command('sysconf', sep=' ', |
| 301 | successful_status=(0, 1)) |
| 302 | self.__class__.info = info |
| 303 | |
| 304 | def _not_impl(self): pass |
| 305 |
nothing calls this directly
no test coverage detected