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 neonene, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-07-04.19:11:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562267513.1.0.161837527387.issue37498@roundup.psfhosted.org>
In-reply-to
Content
Python3.8.0a4,b1,b2(x64,x32)
Python3.7.4rc1,rc2 (x64,x32)
In Windows7 SP1(x64), memory usage keep increasing by the following code.
---
from urllib import request
from time import sleep
while True:
    req = request.Request('https://www.python.org/')
    request.urlopen(req)
    sleep(1)
---
Sorry, I'm not sure why.
History
Date User Action Args
2019-07-04 19:11:53neonenesetrecipients: + neonene, paul.moore, tim.golden, zach.ware, steve.dower
2019-07-04 19:11:53neonenesetmessageid: <1562267513.1.0.161837527387.issue37498@roundup.psfhosted.org>
2019-07-04 19:11:53neonenelinkissue37498 messages
2019-07-04 19:11:52neonenecreate