| 14 | |
| 15 | |
| 16 | class DummyEditwin: |
| 17 | def __init__(self, root, text): |
| 18 | self.root = root |
| 19 | self.text = text |
| 20 | self.indentwidth = 8 |
| 21 | self.tabwidth = 8 |
| 22 | self.prompt_last_line = '>>>' # Currently not used by autocomplete. |
| 23 | |
| 24 | |
| 25 | class AutoCompleteTest(unittest.TestCase): |
no outgoing calls
searching dependent graphs…