(self, text)
| 22 | |
| 23 | class Dummy_editwin: |
| 24 | def __init__(self, text): |
| 25 | self.text = text |
| 26 | self.text_frame = self.text.master |
| 27 | self.per = Percolator(text) |
| 28 | self.undo = Delegator() |
| 29 | self.per.insertfilter(self.undo) |
| 30 | |
| 31 | def setvar(self, name, value): |
| 32 | pass |
nothing calls this directly
no test coverage detected