(self, type, value, traceback)
| 1060 | return self |
| 1061 | |
| 1062 | def __exit__(self, type, value, traceback): |
| 1063 | if self.aslr_backup is not None: |
| 1064 | CustomMachineConfiguration.SetASLR(self.aslr_backup) |
| 1065 | if self.governor_backup is not None: |
| 1066 | CustomMachineConfiguration.SetCPUGovernor(self.governor_backup) |
| 1067 | |
| 1068 | @staticmethod |
| 1069 | def GetASLR(): |
nothing calls this directly
no test coverage detected