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 christian.heimes, cstratak, martin.panter, matrixise, push0ebp, vstinner, ware, xtreak
Date 2019-05-13.15:09:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557760189.83.0.420463812819.issue35907@roundup.psfhosted.org>
In-reply-to
Content
If you use directly the URLopener class, Python 3 has a similar issue:
---
import urllib.request
req = urllib.request.URLopener().open('local_file:///etc/passwd')
print(req.read()[:30])
req.close()
---
History
Date User Action Args
2019-05-13 15:09:49vstinnersetrecipients: + vstinner, christian.heimes, martin.panter, matrixise, cstratak, xtreak, push0ebp, ware
2019-05-13 15:09:49vstinnersetmessageid: <1557760189.83.0.420463812819.issue35907@roundup.psfhosted.org>
2019-05-13 15:09:49vstinnerlinkissue35907 messages
2019-05-13 15:09:49vstinnercreate