• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""
2Idlelib objects with no external idlelib dependencies
3which are needed in more than one idlelib module.
4
5They are included here because
6    a) they don't particularly belong elsewhere; or
7    b) because inclusion here simplifies the idlelib dependency graph.
8
9TODO:
10    * Python versions (editor and help_about),
11    * tk version and patchlevel (pyshell, help_about, maxos?, editor?),
12    * std streams (pyshell, run),
13    * warning stuff (pyshell, run).
14"""
15from os import path
16
17# .pyw is for Windows; .pyi is for stub files.
18py_extensions = ('.py', '.pyw', '.pyi')  # Order needed for open/save dialogs.
19
20if __name__ == '__main__':
21    from unittest import main
22    main('idlelib.idle_test.test_util', verbosity=2)
23