(self)
| 546 | KEY_WOW64_32KEY, 0) |
| 547 | |
| 548 | def test_exception_numbers(self): |
| 549 | with self.assertRaises(FileNotFoundError) as ctx: |
| 550 | QueryValue(HKEY_CLASSES_ROOT, 'some_value_that_does_not_exist') |
| 551 | |
| 552 | |
| 553 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected