10000 bpo-31130: IDLE -- stop leak in test_configdialog. by terryjreedy · Pull Request #3016 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-31130: IDLE -- stop leak in test_configdialog. #3016

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 7, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
bpo-31130: IDLE -- stop leak in test_configdialog.
  • Loading branch information
terryjreedy committed Aug 7, 2017
commit 6a3b76d2ec44685d7aacba3038e206543e7b0974
1 change: 1 addition & 0 deletions Lib/idlelib/configdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -1856,6 +1856,7 @@ def __init__(self):

def clear(self):
"Clear lists (for tests)."
# Call after all tests in a module to avoid memory leaks.
self.untraced.clear()
self.traced.clear()

Expand Down
1 change: 1 addition & 0 deletions Lib/idlelib/idle_test/test_configdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def tearDownModule():
global root, dialog
idleConf.userCfg = usercfg
tracers.detach()
tracers.clear()
del dialog
root.update_idletasks()
root.destroy()
Expand Down
0