()
| 112 | |
| 113 | |
| 114 | def _test(): # TODO check and convert to htest |
| 115 | from tkinter import Tk |
| 116 | from idlelib.editor import fixwordbreaks |
| 117 | from idlelib.run import fix_scaling |
| 118 | root = Tk() |
| 119 | fix_scaling(root) |
| 120 | fixwordbreaks(root) |
| 121 | root.withdraw() |
| 122 | flist = FileList(root) |
| 123 | flist.new() |
| 124 | if flist.inversedict: |
| 125 | root.mainloop() |
| 126 | |
| 127 | |
| 128 | if __name__ == '__main__': |
no test coverage detected
searching dependent graphs…