From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 4 Jun 2018 17:23:41 +0000 (-0700) Subject: bpo-33509: Fix test_warnings for python3 -Werror (GH-7365) X-Git-Tag: v3.7.0rc1~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2c6ecc234e705b60cbcbb9dd4c99022407d0dd0;p=python bpo-33509: Fix test_warnings for python3 -Werror (GH-7365) Fix test_warnings.test_module_globals() when python3 is run with -Werror. (cherry picked from commit e292b75e3ecdc6bbe81cda09de836dc9e27ab9e6) Co-authored-by: Victor Stinner --- diff --git a/Lib/test/test_warnings/__init__.py b/Lib/test/test_warnings/__init__.py index 940db5c143..b48debd31f 100644 --- a/Lib/test/test_warnings/__init__.py +++ b/Lib/test/test_warnings/__init__.py @@ -221,6 +221,8 @@ class FilterTests(BaseTest): def test_module_globals(self): with original_warnings.catch_warnings(record=True, module=self.module) as w: + self.module.simplefilter("always", UserWarning) + # bpo-33509: module_globals=None must not crash self.module.warn_explicit('msg', UserWarning, "filename", 42, module_globals=None)