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 neonene
Recipients christian-intra2net, christian.heimes, kc, miss-islington, neonene, paul.moore, schlenk, steve.dower, tim.golden, zach.ware
Date 2019-07-12.07:56:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562918189.83.0.233594231784.issue35941@roundup.psfhosted.org>
In-reply-to
Content
After this patch applied, memory usage increases every https-access and is not released in my Win7x64SP1.
I hope this will be fixed or reverted.

(case sample)
from urllib import request
from time import sleep
import gc
while True:
    request.urlopen(request.Request('https://...'))
    gc.collect()
    sleep(2)
History
Date User Action Args
2019-07-12 07:56:29neonenesetrecipients: + neonene, paul.moore, christian.heimes, tim.golden, zach.ware, steve.dower, schlenk, miss-islington, kc, christian-intra2net
2019-07-12 07:56:29neonenesetmessageid: <1562918189.83.0.233594231784.issue35941@roundup.psfhosted.org>
2019-07-12 07:56:29neonenelinkissue35941 messages
2019-07-12 07:56:29neonenecreate