(text, string)
| 93 | |
| 94 | |
| 95 | def insert(text, string): |
| 96 | text.delete('1.0', 'end') |
| 97 | text.insert('end', string) |
| 98 | text.update_idletasks() # Force update for colorizer to finish. |
| 99 | |
| 100 | |
| 101 | class IndentAndNewlineTest(unittest.TestCase): |
no test coverage detected
searching dependent graphs…