Skip to content

Commit c8e5eb9

Browse files
authored
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25181)
* Fix test_shutil * Fix test_imp * Fix test_import * Fix test_importlib
1 parent ee952b5 commit c8e5eb9

11 files changed

+55
-50
lines changed

Lib/test/test_imp.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def test_issue3594(self):
102102
temp_mod_name = 'test_imp_helper'
103103
sys.path.insert(0, '.')
104104
try:
105-
with open(temp_mod_name + '.py', 'w') as file:
105+
with open(temp_mod_name + '.py', 'w', encoding="latin-1") as file:
106106
file.write("# coding: cp1252\nu = 'test.test_imp'\n")
107107
file, filename, info = imp.find_module(temp_mod_name)
108108
file.close()
@@ -157,7 +157,7 @@ def test_issue5604(self):
157157
# if the curdir is not in sys.path the test fails when run with
158158
# ./python ./Lib/test/regrtest.py test_imp
159159
sys.path.insert(0, os.curdir)
160-
with open(temp_mod_name + '.py', 'w') as file:
160+
with open(temp_mod_name + '.py', 'w', encoding="utf-8") as file:
161161
file.write('a = 1\n')
162162
file, filename, info = imp.find_module(temp_mod_name)
163163
with file:
@@ -185,7 +185,7 @@ def test_issue5604(self):
185185

186186
if not os.path.exists(test_package_name):
187187
os.mkdir(test_package_name)
188-
with open(init_file_name, 'w') as file:
188+
with open(init_file_name, 'w', encoding="utf-8") as file:
189189
file.write('b = 2\n')
190190
with warnings.catch_warnings():
191191
warnings.simplefilter('ignore')
@@ -310,7 +310,7 @@ def test_bug7732(self):
310310
def test_multiple_calls_to_get_data(self):
311311
# Issue #18755: make sure multiple calls to get_data() can succeed.
312312
loader = imp._LoadSourceCompatibility('imp', imp.__file__,
313-
open(imp.__file__))
313+
open(imp.__file__, encoding="utf-8"))
314314
loader.get_data(imp.__file__) # File should be closed
315315
loader.get_data(imp.__file__) # Will need to create a newly opened file
316316

Lib/test/test_import/__init__.py

+23-22
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_from_import_missing_attr_path_is_canonical(self):
117117
def test_from_import_star_invalid_type(self):
118118
import re
119119
with _ready_to_import() as (name, path):
120-
with open(path, 'w') as f:
120+
with open(path, 'w', encoding='utf-8') as f:
121121
f.write("__all__ = [b'invalid_type']")
122122
globals = {}
123123
with self.assertRaisesRegex(
@@ -126,7 +126,7 @@ def test_from_import_star_invalid_type(self):
126126
exec(f"from {name} import *", globals)
127127
self.assertNotIn(b"invalid_type", globals)
128128
with _ready_to_import() as (name, path):
129-
with open(path, 'w') as f:
129+
with open(path, 'w', encoding='utf-8') as f:
130130
f.write("globals()[b'invalid_type'] = object()")
131131
globals = {}
132132
with self.assertRaisesRegex(
@@ -155,7 +155,7 @@ def test_with_extension(ext):
155155
else:
156156
pyc = TESTFN + ".pyc"
157157

158-
with open(source, "w") as f:
158+
with open(source, "w", encoding='utf-8') as f:
159159
print("# This tests Python's ability to import a",
160160
ext, "file.", file=f)
161161
a = random.randrange(1000)
@@ -195,7 +195,7 @@ def test_module_with_large_stack(self, module='longlist'):
195195
filename = module + '.py'
196196

197197
# Create a file with a list of 65000 elements.
198-
with open(filename, 'w') as f:
198+
with open(filename, 'w', encoding='utf-8') as f:
199199
f.write('d = [\n')
200200
for i in range(65000):
201201
f.write('"",\n')
@@ -232,7 +232,7 @@ def test_module_with_large_stack(self, module='longlist'):
232232

233233
def test_failing_import_sticks(self):
234234
source = TESTFN + ".py"
235-
with open(source, "w") as f:
235+
with open(source, "w", encoding='utf-8') as f:
236236
print("a = 1/0", file=f)
237237

238238
# New in 2.4, we shouldn't be able to import that no matter how often
@@ -281,7 +281,7 @@ def test_issue31286(self):
281281
def test_failing_reload(self):
282282
# A failing reload should leave the module object in sys.modules.
283283
source = TESTFN + os.extsep + "py"
284-
with open(source, "w") as f:
284+
with open(source, "w", encoding='utf-8') as f:
285285
f.write("a = 1\nb=2\n")
286286

287287
sys.path.insert(0, os.curdir)
@@ -298,7 +298,7 @@ def test_failing_reload(self):
298298
remove_files(TESTFN)
299299

300300
# Now damage the module.
301-
with open(source, "w") as f:
301+
with open(source, "w", encoding='utf-8') as f:
302302
f.write("a = 10\nb=20//0\n")
303303

304304
self.assertRaises(ZeroDivisionError, importlib.reload, mod)
@@ -320,7 +320,7 @@ def test_failing_reload(self):
320320
def test_file_to_source(self):
321321
# check if __file__ points to the source file where available
322322
source = TESTFN + ".py"
323-
with open(source, "w") as f:
323+
with open(source, "w", encoding='utf-8') as f:
324324
f.write("test = None\n")
325325

326326
sys.path.insert(0, os.curdir)
@@ -369,7 +369,7 @@ def test_timestamp_overflow(self):
369369
try:
370370
source = TESTFN + ".py"
371371
compiled = importlib.util.cache_from_source(source)
372-
with open(source, 'w') as f:
372+
with open(source, 'w', encoding='utf-8') as f:
373373
pass
374374
try:
375375
os.utime(source, (2 ** 33 - 5, 2 ** 33 - 5))
@@ -574,7 +574,7 @@ def test_pyc_always_writable(self):
574574
# with later updates, see issue #6074 for details
575575
with _ready_to_import() as (name, path):
576576
# Write a Python file, make it read-only and import it
577-
with open(path, 'w') as f:
577+
with open(path, 'w', encoding='utf-8') as f:
578578
f.write("x = 'original'\n")
579579
# Tweak the mtime of the source to ensure pyc gets updated later
580580
s = os.stat(path)
@@ -584,7 +584,7 @@ def test_pyc_always_writable(self):
584584
self.assertEqual(m.x, 'original')
585585
# Change the file and then reimport it
586586
os.chmod(path, 0o600)
587-
with open(path, 'w') as f:
587+
with open(path, 'w', encoding='utf-8') as f:
588588
f.write("x = 'rewritten'\n")
589589
unload(name)
590590
importlib.invalidate_caches()
@@ -623,7 +623,7 @@ def setUp(self):
623623
self.sys_path = sys.path[:]
624624
self.orig_module = sys.modules.pop(self.module_name, None)
625625
os.mkdir(self.dir_name)
626-
with open(self.file_name, "w") as f:
626+
with open(self.file_name, "w", encoding='utf-8') as f:
627627
f.write(self.module_source)
628628
sys.path.insert(0, self.dir_name)
629629
importlib.invalidate_caches()
@@ -704,7 +704,8 @@ def tearDown(self):
704704

705705
# Regression test for http://bugs.python.org/issue1293.
706706
def test_trailing_slash(self):
707-
with open(os.path.join(self.path, 'test_trailing_slash.py'), 'w') as f:
707+
with open(os.path.join(self.path, 'test_trailing_slash.py'),
708+
'w', encoding='utf-8') as f:
708709
f.write("testdata = 'test_trailing_slash'")
709710
sys.path.append(self.path+'/')
710711
mod = __import__("test_trailing_slash")
@@ -842,7 +843,7 @@ def _clean(self):
842843
def setUp(self):
843844
self.source = TESTFN + '.py'
844845
self._clean()
845-
with open(self.source, 'w') as fp:
846+
with open(self.source, 'w', encoding='utf-8') as fp:
846847
print('# This is a test file written by test_import.py', file=fp)
847848
sys.path.insert(0, os.curdir)
848849
importlib.invalidate_caches()
@@ -941,9 +942,9 @@ def cleanup():
941942
os.mkdir('pep3147')
942943
self.addCleanup(cleanup)
943944
# Touch the __init__.py
944-
with open(os.path.join('pep3147', '__init__.py'), 'w'):
945+
with open(os.path.join('pep3147', '__init__.py'), 'wb'):
945946
pass
946-
with open(os.path.join('pep3147', 'foo.py'), 'w'):
947+
with open(os.path.join('pep3147', 'foo.py'), 'wb'):
947948
pass
948949
importlib.invalidate_caches()
949950
m = __import__('pep3147.foo')
@@ -964,9 +965,9 @@ def cleanup():
964965
os.mkdir('pep3147')
965966
self.addCleanup(cleanup)
966967
# Touch the __init__.py
967-
with open(os.path.join('pep3147', '__init__.py'), 'w'):
968+
with open(os.path.join('pep3147', '__init__.py'), 'wb'):
968969
pass
969-
with open(os.path.join('pep3147', 'foo.py'), 'w'):
970+
with open(os.path.join('pep3147', 'foo.py'), 'wb'):
970971
pass
971972
importlib.invalidate_caches()
972973
m = __import__('pep3147.foo')
@@ -986,7 +987,7 @@ def test_recompute_pyc_same_second(self):
986987
# source size is enough to trigger recomputation of the pyc file.
987988
__import__(TESTFN)
988989
unload(TESTFN)
989-
with open(self.source, 'a') as fp:
990+
with open(self.source, 'a', encoding='utf-8') as fp:
990991
print("x = 5", file=fp)
991992
m = __import__(TESTFN)
992993
self.assertEqual(m.x, 5)
@@ -1118,7 +1119,7 @@ def tearDown(self):
11181119

11191120
def create_module(self, mod, contents, ext=".py"):
11201121
fname = os.path.join(TESTFN, mod + ext)
1121-
with open(fname, "w") as f:
1122+
with open(fname, "w", encoding='utf-8') as f:
11221123
f.write(contents)
11231124
self.addCleanup(unload, mod)
11241125
importlib.invalidate_caches()
@@ -1195,10 +1196,10 @@ def _setup_broken_package(self, parent, child):
11951196
os.mkdir(pkg_path)
11961197
# Touch the __init__.py
11971198
init_path = os.path.join(pkg_path, '__init__.py')
1198-
with open(init_path, 'w') as f:
1199+
with open(init_path, 'w', encoding='utf-8') as f:
11991200
f.write(parent)
12001201
bar_path = os.path.join(pkg_path, 'bar.py')
1201-
with open(bar_path, 'w') as f:
1202+
with open(bar_path, 'w', encoding='utf-8') as f:
12021203
f.write(child)
12031204
importlib.invalidate_caches()
12041205
return init_path, bar_path

Lib/test/test_importlib/fixtures.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def build_files(file_defs, prefix=pathlib.Path()):
250250
with full_name.open('wb') as f:
251251
f.write(contents)
252252
else:
253-
with full_name.open('w') as f:
253+
with full_name.open('w', encoding='utf-8') as f:
254254
f.write(DALS(contents))
255255

256256

Lib/test/test_importlib/source/test_file_loader.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def test_module_reuse(self):
124124
module = loader.load_module('_temp')
125125
module_id = id(module)
126126
module_dict_id = id(module.__dict__)
127-
with open(mapping['_temp'], 'w') as file:
127+
with open(mapping['_temp'], 'w', encoding='utf-8') as file:
128128
file.write("testing_var = 42\n")
129129
with warnings.catch_warnings():
130130
warnings.simplefilter('ignore', DeprecationWarning)
@@ -145,7 +145,7 @@ def test_state_after_failure(self):
145145
orig_module = types.ModuleType(name)
146146
for attr in attributes:
147147
setattr(orig_module, attr, value)
148-
with open(mapping[name], 'w') as file:
148+
with open(mapping[name], 'w', encoding='utf-8') as file:
149149
file.write('+++ bad syntax +++')
150150
loader = self.machinery.SourceFileLoader('_temp', mapping['_temp'])
151151
with self.assertRaises(SyntaxError):
@@ -162,7 +162,7 @@ def test_state_after_failure(self):
162162
# [syntax error]
163163
def test_bad_syntax(self):
164164
with util.create_modules('_temp') as mapping:
165-
with open(mapping['_temp'], 'w') as file:
165+
with open(mapping['_temp'], 'w', encoding='utf-8') as file:
166166
file.write('=')
167167
loader = self.machinery.SourceFileLoader('_temp', mapping['_temp'])
168168
with self.assertRaises(SyntaxError):
@@ -175,7 +175,7 @@ def test_file_from_empty_string_dir(self):
175175
# Loading a module found from an empty string entry on sys.path should
176176
# not only work, but keep all attributes relative.
177177
file_path = '_temp.py'
178-
with open(file_path, 'w') as file:
178+
with open(file_path, 'w', encoding='utf-8') as file:
179179
file.write("# test file for importlib")
180180
try:
181181
with util.uncache('_temp'):
@@ -199,7 +199,7 @@ def test_timestamp_overflow(self):
199199
with util.create_modules('_temp') as mapping:
200200
source = mapping['_temp']
201201
compiled = self.util.cache_from_source(source)
202-
with open(source, 'w') as f:
202+
with open(source, 'w', encoding='utf-8') as f:
203203
f.write("x = 5")
204204
try:
205205
os.utime(source, (2 ** 33 - 5, 2 ** 33 - 5))

Lib/test/test_importlib/source/test_finder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def test_empty_string_for_dir(self):
127127
# The empty string from sys.path means to search in the cwd.
128128
finder = self.machinery.FileFinder('', (self.machinery.SourceFileLoader,
129129
self.machinery.SOURCE_SUFFIXES))
130-
with open('mod.py', 'w') as file:
130+
with open('mod.py', 'w', encoding='utf-8') as file:
131131
file.write("# test file for importlib")
132132
try:
133133
loader = self._find(finder, 'mod', loader_only=True)

Lib/test/test_importlib/test_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def test_reload_namespace_changed(self):
312312
'__file__': None,
313313
}
314314
os.mkdir(name)
315-
with open(bad_path, 'w') as init_file:
315+
with open(bad_path, 'w', encoding='utf-8') as init_file:
316316
init_file.write('eggs = None')
317317
module = self.init.import_module(name)
318318
ns = vars(module).copy()

Lib/test/test_importlib/test_files.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_read_bytes(self):
1515

1616
def test_read_text(self):
1717
files = resources.files(self.data)
18-
actual = files.joinpath('utf-8.file').read_text()
18+
actual = files.joinpath('utf-8.file').read_text(encoding='utf-8')
1919
assert actual == 'Hello, UTF-8 world!\n'
2020

2121
@unittest.skipUnless(

Lib/test/test_importlib/test_main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def pkg_with_dashes(site_dir):
8383
metadata_dir = site_dir / 'my_pkg.dist-info'
8484
metadata_dir.mkdir()
8585
metadata = metadata_dir / 'METADATA'
86-
with metadata.open('w') as strm:
86+
with metadata.open('w', encoding='utf-8') as strm:
8787
strm.write('Version: 1.0\n')
8888
return 'my-pkg'
8989

@@ -102,7 +102,7 @@ def pkg_with_mixed_case(site_dir):
102102
metadata_dir = site_dir / 'CherryPy.dist-info'
103103
metadata_dir.mkdir()
104104
metadata = metadata_dir / 'METADATA'
105-
with metadata.open('w') as strm:
105+
with metadata.open('w', encoding='utf-8') as strm:
106106
strm.write('Version: 1.0\n')
107107
return 'CherryPy'
108108

Lib/test/test_importlib/test_pkg_import.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def rewrite_file(self, contents):
4242
compiled_path = cache_from_source(self.module_path)
4343
if os.path.exists(compiled_path):
4444
os.remove(compiled_path)
45-
with open(self.module_path, 'w') as f:
45+
with open(self.module_path, 'w', encoding='utf-8') as f:
4646
f.write(contents)
4747

4848
def test_package_import__semantics(self):

Lib/test/test_importlib/util.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def case_insensitive_tests(test):
116116

117117
def submodule(parent, name, pkg_dir, content=''):
118118
path = os.path.join(pkg_dir, name + '.py')
119-
with open(path, 'w') as subfile:
119+
with open(path, 'w', encoding='utf-8') as subfile:
120120
subfile.write(content)
121121
return '{}.{}'.format(parent, name), path
122122

@@ -176,7 +176,7 @@ def temp_module(name, content='', *, pkg=False):
176176
content = ''
177177
if content is not None:
178178
# not a namespace package
179-
with open(modpath, 'w') as modfile:
179+
with open(modpath, 'w', encoding='utf-8') as modfile:
180180
modfile.write(content)
181181
yield location
182182

@@ -384,7 +384,7 @@ def create_modules(*names):
384384
os.mkdir(file_path)
385385
created_paths.append(file_path)
386386
file_path = os.path.join(file_path, name_parts[-1] + '.py')
387-
with open(file_path, 'w') as file:
387+
with open(file_path, 'w', encoding='utf-8') as file:
388388
file.write(source.format(name))
389389
created_paths.append(file_path)
390390
mapping[name] = file_path

0 commit comments

Comments
 (0)