commit | 9d7d928b5853b921ed27f1e535dfe8174169854c | [log] [tgz] |
---|---|---|
author | Terry Jan Reedy <tjreedy@udel.edu> | Mon Aug 07 15:20:03 2017 -0400 |
committer | GitHub <noreply@github.com> | Mon Aug 07 15:20:03 2017 -0400 |
tree | cd1ab11653366bdb9275c6fbe2eb5abfd546ff9a | |
parent | b61de2d46596ac00dcf2d33bbce2023d0bf4207b [diff] [blame] |
[3.6] bpo-31130: IDLE -- stop leaks in test_configdialog. (GH-3016) (#3018) Initial patch by Victor Stinner. (cherry picked from commit 733d0f6)
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 6d8a03b..e634d5f 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py
@@ -1856,6 +1856,7 @@ def clear(self): "Clear lists (for tests)." + # Call after all tests in a module to avoid memory leaks. self.untraced.clear() self.traced.clear()