()
| 215 | |
| 216 | @staticmethod |
| 217 | def winreg_feature_bits(): |
| 218 | key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, r"Hardware\Description\System\CentralProcessor\0") |
| 219 | feature_bits = winreg.QueryValueEx(key, "FeatureSet")[0] |
| 220 | winreg.CloseKey(key) |
| 221 | return feature_bits |
| 222 | |
| 223 | def obj_to_b64(thing): |
| 224 | a = thing |
no outgoing calls
no test coverage detected