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 martin.panter, serhiy.storchaka, vstinner
Date 2016-11-14.12:56:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479128206.47.0.155651436814.issue28688@psf.upfronthosting.co.za>
In-reply-to
Content
The issue #23839 modified the test runner to always clear caches before running tests. As a side effect, test_warnings started to complain with:

Warning -- warnings.filters was modified by test_warnings

The issue comes from the following function of test_warnings/__init__.py:

def setUpModule():
    py_warnings.onceregistry.clear()
    c_warnings.onceregistry.clear()

I suggest to rewrite this function as a setUp/tearDown method in BaseTest and *restores* the old value of these dictionaries.

I guess that the bug affects all Python versions, even if only Python 3.7 logs a warning.
History
Date User Action Args
2016-11-14 12:56:46vstinnersetrecipients: + vstinner, martin.panter, serhiy.storchaka
2016-11-14 12:56:46vstinnersetmessageid: <1479128206.47.0.155651436814.issue28688@psf.upfronthosting.co.za>
2016-11-14 12:56:46vstinnerlinkissue28688 messages
2016-11-14 12:56:46vstinnercreate