diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-02-27 23:47:49 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-02-27 23:47:49 (GMT) |
| commit | 9db1ab82508cd4be4195e520da8cb8d86cd1f7e4 (patch) | |
| tree | 74d3c7c12b1b5cc5ee7c345178b545fcc9afc31d /Lib/idlelib/idle_test/test_formatparagraph.py | |
| parent | b807577da257ba2475abe955120fb7bdf739875c (diff) | |
| download | cpython-9db1ab82508cd4be4195e520da8cb8d86cd1f7e4.zip cpython-9db1ab82508cd4be4195e520da8cb8d86cd1f7e4.tar.gz cpython-9db1ab82508cd4be4195e520da8cb8d86cd1f7e4.tar.bz2 | |
Issue #20567: Delete class attribute gui widgets in idle tests.
Code patch by Serhiy Storchaka
Diffstat (limited to 'Lib/idlelib/idle_test/test_formatparagraph.py')
| -rw-r--r-- | Lib/idlelib/idle_test/test_formatparagraph.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/idle_test/test_formatparagraph.py b/Lib/idlelib/idle_test/test_formatparagraph.py index 818c9d4..f4a7c2d 100644 --- a/Lib/idlelib/idle_test/test_formatparagraph.py +++ b/Lib/idlelib/idle_test/test_formatparagraph.py @@ -277,6 +277,9 @@ class FormatEventTest(unittest.TestCase): @classmethod def tearDownClass(cls): cls.root.destroy() + del cls.root + del cls.text + del cls.formatter def test_short_line(self): self.text.insert('1.0', "Short line\n") |
