This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_ttk_guionly leaks many references
Type: resource usage Stage: resolved
Components: Tkinter Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: gpolo, ocean-city, pitrou
Priority: high Keywords: patch

Created on 2010-10-31 16:25 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py3k_fix_test_ttk_guionly_refleak.patch ocean-city, 2010-11-02 14:37 review
Messages (4)
msg120067 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-10-31 16:25
This can be seen on all 3 branches:

$ ./python -m test.regrtest -uall -R 3:2 test_ttk_guionly
[306/349] test_ttk_guionly
beginning 5 repetitions
12345
.....
test_ttk_guionly leaked [590, 590] references, sum=1180
msg120225 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2010-11-02 14:37
It seems this issue can be fixed by attached patch.
msg120240 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-11-02 17:20
Hirokazu's patch works for me.
msg125258 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-01-04 00:33
Patch committed in r87721 (3.2), r87723 (2.7) and r87724 (3.1). Thanks!
History
Date User Action Args
2022-04-11 14:57:08adminsetgithub: 54476
2011-01-04 00:33:27pitrousetstatus: open -> closed
nosy: pitrou, ocean-city, gpolo
messages: + msg125258

resolution: fixed
stage: patch review -> resolved
2010-11-02 17:20:35pitrousetmessages: + msg120240
stage: patch review
2010-11-02 14:37:49ocean-citysetfiles: + py3k_fix_test_ttk_guionly_refleak.patch

nosy: + ocean-city
messages: + msg120225

keywords: + patch
2010-10-31 16:25:05pitroucreate