| 378 | |
| 379 | |
| 380 | class DummyEditwin: |
| 381 | def __init__(self, root, text): |
| 382 | self.root = root |
| 383 | self.text = text |
| 384 | self.indentwidth = 4 |
| 385 | self.tabwidth = 4 |
| 386 | self.usetabs = False |
| 387 | self.context_use_ps1 = True |
| 388 | |
| 389 | _make_blanks = EditorWindow._make_blanks |
| 390 | get_selection_indices = EditorWindow.get_selection_indices |
| 391 | |
| 392 | |
| 393 | class FormatRegionTest(unittest.TestCase): |
no outgoing calls
searching dependent graphs…