[issue30642] Fix leaks in idlelib

2017-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Unlinked old findleak.py after uploading much improved version to #31130. -- ___ Python tracker ___

[issue30642] Fix leaks in idlelib

2017-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file46948/findleak.py ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue30642] Fix leaks in idlelib

2017-06-15 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: f:\dev\36>python -m test -R: -ugui test_idle gives about 40 invoke event messages, but the test passes. So the messages and leaks are not connected. -- ___ Python tracker ___

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b0efd493b6af24a6ae744e7e02f4b69c70e88f3d by terryjreedy in branch '3.6': [3.6]bpo-30642: Fix ref leak in idle_test.test_macosx (#2163) (#2165) https://github.com/python/cpython/commit/b0efd493b6af24a6ae744e7e02f4b69c70e88f3d --

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2216 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: The macosx leak came from repeated calls to root.createcommand("::tk::mac::OpenDocument", doOpenFile) in macosx.addOpenEventSupport(root, flist), which is called from macosx.setupApp, which is called in test_macosx.SetupTest.test_setupapp. Attached is an im

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2214 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 2bfb45d447c445b3c3afc19d16b4cd4773975993 by terryjreedy in branch '3.6': bpo-30642: IDLE: Fix test_query refleak (#2147) (#2161) https://github.com/python/cpython/commit/2bfb45d447c445b3c3afc19d16b4cd4773975993 -- __

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2212 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30642] Fix leaks in idlelib

2017-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b070fd275b68df5c5ba9f6f43197b8d7066f0b18 by terryjreedy (mlouielu) in branch 'master': bpo-30642: IDLE: Fix test_query refleak (#2147) https://github.com/python/cpython/commit/b070fd275b68df5c5ba9f6f43197b8d7066f0b18 --

[issue30642] Fix leaks in idlelib

2017-06-12 Thread Louie Lu
Louie Lu added the comment: test_query were fixed in PR 2147, which is leak by not removing mock.Mock() in dialog. -- ___ Python tracker ___

[issue30642] Fix leaks in idlelib

2017-06-12 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2197 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue30642] Fix leaks in idlelib

2017-06-12 Thread Terry J. Reedy
New submission from Terry J. Reedy: When Louie Lu posted a link to https://blog.louie.lu/2017/06/12/diagnosing-and-fixing-reference-leaks-in-cpython/ on core-mentorship list, I tested idlelib. python -m test -ugui test_idle # SUCCESS, no extraneous output python -m test -R: test_idle # SUCCESS,