homepage

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: tkinter: avoid reference loops with Variables and Fonts
Type: behavior Stage: resolved
Components: Tkinter Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: kbk, python-dev, roger.serwy, serhiy.storchaka, terry.reedy, vstinner
Priority: normal Keywords: patch

Created on 2014年07月25日 15:34 by serhiy.storchaka, last changed 2022年04月11日 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
tracemalloc.txt vstinner, 2014年07月25日 15:50
regrtest_tracemalloc.patch vstinner, 2014年07月25日 15:52 review
tkinter_refloops-2.7.patch serhiy.storchaka, 2014年07月26日 09:16 review
Messages (12)
msg223958 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014年07月25日 15:34
$ ./python -m test.regrtest -ugui -v test_idle test_gc
...
======================================================================
FAIL: test_saveall (test.test_gc.GCTests)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/home/serhiy/py/cpython-2.7/Lib/test/test_gc.py", line 200, in test_saveall
 self.assertEqual(gc.garbage, [])
AssertionError: Lists differ: [<Tkinter.StringVar instance a... != []
First list contains 24 additional elements.
First extra element 0:
PY_VAR0
Diff is 1123 characters long. Set self.maxDiff to None to see it.
----------------------------------------------------------------------
msg223960 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014年07月25日 15:50
It looks like test_idle leaks uncollectable objects.
I modified regrtest to use tracemalloc, I attach the output: tracemalloc.txt. Good luck to find the leaks ;-)
msg223961 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014年07月25日 15:52
regrtest_tracemalloc.patch: my patch for regrtest.py to dump the traceback where garbage objects where allocated using tracemalloc.
http://pytracemalloc.readthedocs.org/
(Note: you need to recompile Python to use tracemalloc on Python < 3.4.)
msg223963 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014年07月25日 16:34
Indeed, there are a lot of small reference loops in ConfigDialog. Tk variables save reference to the dialog and the dialog saves references to variables. Either variables should be created with different argument (i.e. self.parent), or they should be deleted when ConfigDialog is destroyed.
msg224021 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014年07月26日 06:43
ConfigDialog is a good guess as I added a minimal test this month.
I will try to revise to not create loops in the first place.
msg224033 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014年07月26日 09:16
Here is a patch against 2.7 which get rid of reference loops in Tk variables and Font. This will fix not only ConfigDialog, but any similar user code.
In 3.4+ such reference loops are successfully resolved, but I think we should foreport this path to 3.4+ because it also fixes other minor bug: callbacks registered to trace variable now live while the variable lives, not while widget lives.
msg224042 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014年07月26日 11:41
I agree that the patch shoukd also br applied to 3.4.
msg224092 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014年07月27日 00:11
F:\Python\dev>2\py27\pcbuild\python_d.exe -m test.regrtest -R :: -uall test_idle
test_idle leaked [1945, 1945, 1945, 1945] references, sum=7780
There are none with 3.4, so the new gc is doing its job.
There are also none with test_configdialog renamed xtest... ,
GetCfgSectionNameDialog.__init__ in configSectionNameDialog.py saves self.parent for later use as the parent for XyxVars. I am looking at doing the same for config dialog.
msg224361 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014年07月30日 23:25
New changeset 6b7f189daa62 by Terry Jan Reedy in branch '2.7':
Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog.
http://hg.python.org/cpython/rev/6b7f189daa62
New changeset 1927f47a1838 by Terry Jan Reedy in branch '3.4':
Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog.
http://hg.python.org/cpython/rev/1927f47a1838 
msg224363 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014年07月30日 23:32
-R no longer finds leaks with current Idle tests. There might still be some in modules not tested.
msg225273 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014年08月13日 10:11
If there are no objections I'll commit the patch.
msg225440 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014年08月17日 12:34
New changeset 0b79c702abda by Serhiy Storchaka in branch '2.7':
Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.
http://hg.python.org/cpython/rev/0b79c702abda
New changeset 873002eb8087 by Serhiy Storchaka in branch '3.4':
Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.
http://hg.python.org/cpython/rev/873002eb8087
New changeset f44f5daff665 by Serhiy Storchaka in branch 'default':
Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.
http://hg.python.org/cpython/rev/f44f5daff665 
History
Date User Action Args
2022年04月11日 14:58:06adminsetgithub: 66266
2014年08月17日 13:47:14serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2014年08月17日 12:34:53python-devsetmessages: + msg225440
2014年08月13日 10:11:50serhiy.storchakasetmessages: + msg225273
2014年07月30日 23:32:43terry.reedysetmessages: + msg224363
components: - IDLE, Tests
title: test_idle leaks uncollectable objects -> tkinter: avoid reference loops with Variables and Fonts
2014年07月30日 23:25:11python-devsetnosy: + python-dev
messages: + msg224361
2014年07月29日 22:29:27vstinnersettitle: test_gc fails after test_idle -> test_idle leaks uncollectable objects
2014年07月27日 00:11:49terry.reedysetmessages: + msg224092
versions: + Python 3.4, Python 3.5
2014年07月26日 11:41:03vstinnersetmessages: + msg224042
2014年07月26日 09:16:37serhiy.storchakasetfiles: + tkinter_refloops-2.7.patch
messages: + msg224033

assignee: serhiy.storchaka
components: + Tkinter
stage: patch review
2014年07月26日 06:43:31terry.reedysetmessages: + msg224021
2014年07月25日 16:34:36serhiy.storchakasetmessages: + msg223963
2014年07月25日 15:52:27vstinnersetfiles: + regrtest_tracemalloc.patch
keywords: + patch
messages: + msg223961
2014年07月25日 15:50:42vstinnersetfiles: + tracemalloc.txt
nosy: + vstinner
messages: + msg223960

2014年07月25日 15:34:59serhiy.storchakacreate

AltStyle によって変換されたページ (->オリジナル) /