summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/CallTips.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/CallTips.py')
-rw-r--r--Lib/idlelib/CallTips.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py
index 3c8c096..41de756 100644
--- a/Lib/idlelib/CallTips.py
+++ b/Lib/idlelib/CallTips.py
@@ -264,4 +264,6 @@ def main():
print("%d of %d tests failed" % (num_fail, num_tests))
if __name__ == '__main__':
- main()
+ #main()
+ from unittest import main
+ main('idlelib.idle_test.test_calltips', verbosity=2, exit=False)