()
| 869 | return func() or '' |
| 870 | |
| 871 | def get_win32(): |
| 872 | try: |
| 873 | manufacturer, caption = _wmi_query('CPU', 'Manufacturer', 'Caption') |
| 874 | except OSError: |
| 875 | return os.environ.get('PROCESSOR_IDENTIFIER', _get_machine_win32()) |
| 876 | else: |
| 877 | return f'{caption}, {manufacturer}' |
| 878 | |
| 879 | def get_OpenVMS(): |
| 880 | try: |
nothing calls this directly
no test coverage detected