From: Inada Naoki Date: Thu, 1 Apr 2021 23:57:05 +0000 (+0900) Subject: bpo-43651: Fix EncodingWarning in test_warnings (GH-25126) X-Git-Tag: v3.10.0a7~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=036fc7de24cc961d65b60fba266104009feb2797;p=thirdparty%2FPython%2Fcpython.git bpo-43651: Fix EncodingWarning in test_warnings (GH-25126) --- diff --git a/Lib/test/test_warnings/__init__.py b/Lib/test/test_warnings/__init__.py index 04f7560ecc09..4b1b4e193cb1 100644 --- a/Lib/test/test_warnings/__init__.py +++ b/Lib/test/test_warnings/__init__.py @@ -935,10 +935,10 @@ class PyWarningsDisplayTests(WarningsDisplayTests, unittest.TestCase): def test_tracemalloc(self): self.addCleanup(os_helper.unlink, os_helper.TESTFN) - with open(os_helper.TESTFN, 'w') as fp: + with open(os_helper.TESTFN, 'w', encoding="utf-8") as fp: fp.write(textwrap.dedent(""" def func(): - f = open(__file__) + f = open(__file__, "rb") # Emit ResourceWarning f = None @@ -973,7 +973,7 @@ class PyWarningsDisplayTests(WarningsDisplayTests, unittest.TestCase): File "{filename}", lineno 7 func() File "{filename}", lineno 3 - f = open(__file__) + f = open(__file__, "rb") ''').strip() self.assertEqual(stderr, expected)