diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-08-07 19:20:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-07 19:20:03 (GMT) |
commit | 9d7d928b5853b921ed27f1e535dfe8174169854c (patch) | |
tree | cd1ab11653366bdb9275c6fbe2eb5abfd546ff9a /Lib/idlelib/configdialog.py | |
parent | b61de2d46596ac00dcf2d33bbce2023d0bf4207b (diff) | |
download | cpython-9d7d928b5853b921ed27f1e535dfe8174169854c.zip cpython-9d7d928b5853b921ed27f1e535dfe8174169854c.tar.gz cpython-9d7d928b5853b921ed27f1e535dfe8174169854c.tar.bz2 |
[3.6] bpo-31130: IDLE -- stop leaks in test_configdialog. (GH-3016) (#3018)
Initial patch by Victor Stinner.
(cherry picked from commit 733d0f6)
Diffstat (limited to 'Lib/idlelib/configdialog.py')
-rw-r--r-- | Lib/idlelib/configdialog.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ class VarTrace: def clear(self): "Clear lists (for tests)." + # Call after all tests in a module to avoid memory leaks. self.untraced.clear() self.traced.clear() |