()
| 186 | |
| 187 | @staticmethod |
| 188 | def winreg_processor_brand(): |
| 189 | key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, r"Hardware\Description\System\CentralProcessor\0") |
| 190 | processor_brand = winreg.QueryValueEx(key, "ProcessorNameString")[0] |
| 191 | winreg.CloseKey(key) |
| 192 | return processor_brand |
| 193 | |
| 194 | @staticmethod |
| 195 | def winreg_vendor_id(): |
no outgoing calls
no test coverage detected