summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2016-06-22 08:50:16 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2016-06-22 08:50:16 (GMT)
commitdf1d34c1b4f1a0d38a865cf7cbfdce38edf933a4 (patch)
tree1a2887323b7409be81bcb86fea9255bd309873d4
parent5deed33e8f3fb4b38c4ab7486ef3424cec635539 (diff)
downloadcpython-df1d34c1b4f1a0d38a865cf7cbfdce38edf933a4.zip
cpython-df1d34c1b4f1a0d38a865cf7cbfdce38edf933a4.tar.gz
cpython-df1d34c1b4f1a0d38a865cf7cbfdce38edf933a4.tar.bz2
Issue #27365: add chunk
-rw-r--r--Lib/idlelib/help_about.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/help_about.py b/Lib/idlelib/help_about.py
index 362dcbb..65d94fc 100644
--- a/Lib/idlelib/help_about.py
+++ b/Lib/idlelib/help_about.py
@@ -145,5 +145,7 @@ class AboutDialog(Toplevel):
self.destroy()
if __name__ == '__main__':
+ import unittest
+ unittest.main('idlelib.idle_test.test_helpabout', verbosity=2, exit=False)
from idlelib.idle_test.htest import run
run(AboutDialog)