(cls)
| 735 | class _Processor: |
| 736 | @classmethod |
| 737 | def get(cls): |
| 738 | func = getattr(cls, f'get_{sys.platform}', cls.from_subprocess) |
| 739 | return func() or '' |
| 740 | |
| 741 | def get_win32(): |
| 742 | return os.environ.get('PROCESSOR_IDENTIFIER', _get_machine_win32()) |
no outgoing calls
no test coverage detected