diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-03 22:28:05 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-03 22:28:05 -0400 |
commit | 3d7281d2bdf0bbea105d73a12555366f29d6830e (patch) | |
tree | 804d939f00db48fb2fd64731a30da221aa518ef6 /Lib/idlelib/idle_test/test_autoexpand.py | |
parent | 622b2f6ec90e071e9fe0e34a49a7b1218d4a7121 (diff) | |
parent | 75cbeb5dac8f4f57777f053eee257dbba5553d98 (diff) | |
download | cpython-git-3d7281d2bdf0bbea105d73a12555366f29d6830e.tar.gz |
Issue 20567: Revise idle_test/README.txt and some tests to match new advice.
Diffstat (limited to 'Lib/idlelib/idle_test/test_autoexpand.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_autoexpand.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_autoexpand.py b/Lib/idlelib/idle_test/test_autoexpand.py index 801976abda..5d234dd862 100644 --- a/Lib/idlelib/idle_test/test_autoexpand.py +++ b/Lib/idlelib/idle_test/test_autoexpand.py @@ -25,10 +25,10 @@ class AutoExpandTest(unittest.TestCase): @classmethod def tearDownClass(cls): + del cls.text, cls.auto_expand if hasattr(cls, 'tk'): cls.tk.destroy() del cls.tk - del cls.text, cls.auto_expand def tearDown(self): self.text.delete('1.0', 'end') |