diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-04 02:19:17 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-04 02:19:17 (GMT) |
commit | 75cbeb5dac8f4f57777f053eee257dbba5553d98 (patch) | |
tree | 9d3a48f3a70cb987e3801a110f8d5084f2bcac3b /Lib/idlelib/idle_test/test_formatparagraph.py | |
parent | 1ef8c7e886ea5260e5a6967ec2b8a4c32640f1a8 (diff) | |
download | cpython-75cbeb5dac8f4f57777f053eee257dbba5553d98.zip cpython-75cbeb5dac8f4f57777f053eee257dbba5553d98.tar.gz cpython-75cbeb5dac8f4f57777f053eee257dbba5553d98.tar.bz2 |
Issue 20567: Revise idle_test/README.txt and some tests to match new advice.
Diffstat (limited to 'Lib/idlelib/idle_test/test_formatparagraph.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_formatparagraph.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_formatparagraph.py b/Lib/idlelib/idle_test/test_formatparagraph.py index f6039e6..e5561d8 100644 --- a/Lib/idlelib/idle_test/test_formatparagraph.py +++ b/Lib/idlelib/idle_test/test_formatparagraph.py @@ -276,10 +276,9 @@ class FormatEventTest(unittest.TestCase): @classmethod def tearDownClass(cls): + del cls.text, cls.formatter 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") |