()
| 824 | return func() or '' |
| 825 | |
| 826 | def get_win32(): |
| 827 | try: |
| 828 | manufacturer, caption = _wmi_query('CPU', 'Manufacturer', 'Caption') |
| 829 | except OSError: |
| 830 | return os.environ.get('PROCESSOR_IDENTIFIER', _get_machine_win32()) |
| 831 | else: |
| 832 | return f'{caption}, {manufacturer}' |
| 833 | |
| 834 | def get_OpenVMS(): |
| 835 | try: |
nothing calls this directly
no test coverage detected