summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_exceptions.py
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2021-04-02 03:53:46 (GMT)
committerGitHub <noreply@github.com>2021-04-02 03:53:46 (GMT)
commit8bbfeb3330c10d52274bb85fce59ae614f0500bf (patch)
treee599878998ff1f8b1cf61bce14ff2a2037871a87 /Lib/test/test_exceptions.py
parentbef7b26f7229f8b7cde843118a7bc7e2b00f0372 (diff)
downloadcpython-8bbfeb3330c10d52274bb85fce59ae614f0500bf.zip
cpython-8bbfeb3330c10d52274bb85fce59ae614f0500bf.tar.gz
cpython-8bbfeb3330c10d52274bb85fce59ae614f0500bf.tar.bz2
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25142)
* test__xxsubinterpreters * test_builtin * test_doctest * test_exceptions * test_opcodes * test_support * test_argparse * test_baseexception * test_bdb * test_bool * test_asdl_parser
Diffstat (limited to 'Lib/test/test_exceptions.py')
-rw-r--r--Lib/test/test_exceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 21878c3..1e6f525 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -54,9 +54,9 @@ class ExceptionTests(unittest.TestCase):
self.assertRaises(AttributeError, getattr, sys, "undefined_attribute")
self.raise_catch(EOFError, "EOFError")
- fp = open(TESTFN, 'w')
+ fp = open(TESTFN, 'w', encoding="utf-8")
fp.close()
- fp = open(TESTFN, 'r')
+ fp = open(TESTFN, 'r', encoding="utf-8")
savestdin = sys.stdin
try:
try: