(self)
| 75 | cls.root.withdraw() |
| 76 | |
| 77 | def setUp(self): |
| 78 | self.text = text = TextWrapper(self.root) |
| 79 | text.insert('1.0', ">>> ") |
| 80 | text.mark_set('iomark', '1.4') |
| 81 | text.mark_gravity('iomark', 'left') |
| 82 | self.history = History(text) |
| 83 | self.history.history = [line1, line2] |
| 84 | |
| 85 | @classmethod |
| 86 | def tearDownClass(cls): |
nothing calls this directly
no test coverage detected