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.

Author vstinner
Recipients vstinner
Date 2017-08-07.09:24:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1502097887.03.0.529765316852.issue31130@psf.upfronthosting.co.za>
In-reply-to
Content
Starting at the following build, test_idle started to leak references:
http://buildbot.python.org/all/builders/AMD64%20Windows8.1%20Refleaks%203.x/builds/60/steps/test/logs/stdio

Example of leak:

$ ./python -m test -R 3:3 -u all test_idle -m idlelib.idle_test.test_configdialog.FontPageTest.test_set_samples
(...)
test_idle leaked [2168, 2168, 2168] references, sum=6504
test_idle leaked [1152, 1154, 1155] memory blocks, sum=3461
(...)

A bisection identified this commit:

commit 9397e2a87ed6e0e724ad71a0c751553620cb775e
Author: csabella <cheryl.sabella@gmail.com>
Date:   Sun Jul 30 13:34:25 2017 -0400

    bpo-31004: IDLE: Factor out FontPage class from configdialog (step 1) (#2905)
    
    The slightly modified tests continue to pass. The General test
    broken by the switch to Notebook is fixed.
    Patch mostly by Cheryl Sabella.
History
Date User Action Args
2017-08-07 09:24:47vstinnersetrecipients: + vstinner
2017-08-07 09:24:47vstinnersetmessageid: <1502097887.03.0.529765316852.issue31130@psf.upfronthosting.co.za>
2017-08-07 09:24:46vstinnerlinkissue31130 messages
2017-08-07 09:24:46vstinnercreate