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 ncoghlan, serhiy.storchaka, vstinner
Date 2017-11-21.00:42:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511224936.67.0.213398074469.issue32089@psf.upfronthosting.co.za>
In-reply-to
Content
Attached PR 4482 fixes warnings filters:

haypo@selma$ ./python -X dev -c 'import warnings, pprint; pprint.pprint(warnings.filters)'
[('ignore', None, <class 'BytesWarning'>, None, 0),
 ('always', None, <class 'ResourceWarning'>, None, 0),
 ('default', None, <class 'Warning'>, None, 0)]
History
Date User Action Args
2017-11-21 00:42:16vstinnersetrecipients: + vstinner, ncoghlan, serhiy.storchaka
2017-11-21 00:42:16vstinnersetmessageid: <1511224936.67.0.213398074469.issue32089@psf.upfronthosting.co.za>
2017-11-21 00:42:16vstinnerlinkissue32089 messages
2017-11-21 00:42:16vstinnercreate