From 63dfece675929bc585b1a37fbb3274822c5a3647 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 19 Feb 2004 02:37:29 +0000 Subject: [PATCH] Get test to work when run from regrtest (add test_main), remove all CRs (^M)s --- Lib/test/test_tcl.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index 3e0a781814d..6cab2e85e1a 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -2,6 +2,7 @@ import unittest import os +from test import test_support from Tkinter import Tcl from _tkinter import TclError @@ -152,8 +153,9 @@ def testLoadTkFailure(self): finally: if old_display is not None: os.environ['DISPLAY'] = old_display - + +def test_main(): + test_support.run_unittest(TclTest) + if __name__ == "__main__": - unittest.main() - - + test_main()