(self)
| 49 | class AbstractDefaultRootTest: |
| 50 | |
| 51 | def setUp(self): |
| 52 | self._old_support_default_root = tkinter._support_default_root |
| 53 | destroy_default_root() |
| 54 | tkinter._support_default_root = True |
| 55 | self.wantobjects = tkinter.wantobjects |
| 56 | |
| 57 | def tearDown(self): |
| 58 | destroy_default_root() |
nothing calls this directly
no test coverage detected