@@ -117,7 +117,7 @@ def test_from_import_missing_attr_path_is_canonical(self):
117
117
def test_from_import_star_invalid_type (self ):
118
118
import re
119
119
with _ready_to_import () as (name , path ):
120
- with open (path , 'w' ) as f :
120
+ with open (path , 'w' , encoding = 'utf-8' ) as f :
121
121
f .write ("__all__ = [b'invalid_type']" )
122
122
globals = {}
123
123
with self .assertRaisesRegex (
@@ -126,7 +126,7 @@ def test_from_import_star_invalid_type(self):
126
126
exec (f"from { name } import *" , globals )
127
127
self .assertNotIn (b"invalid_type" , globals )
128
128
with _ready_to_import () as (name , path ):
129
- with open (path , 'w' ) as f :
129
+ with open (path , 'w' , encoding = 'utf-8' ) as f :
130
130
f .write ("globals()[b'invalid_type'] = object()" )
131
131
globals = {}
132
132
with self .assertRaisesRegex (
@@ -155,7 +155,7 @@ def test_with_extension(ext):
155
155
else :
156
156
pyc = TESTFN + ".pyc"
157
157
158
- with open (source , "w" ) as f :
158
+ with open (source , "w" , encoding = 'utf-8' ) as f :
159
159
print ("# This tests Python's ability to import a" ,
160
160
ext , "file." , file = f )
161
161
a = random .randrange (1000 )
@@ -195,7 +195,7 @@ def test_module_with_large_stack(self, module='longlist'):
195
195
filename = module + '.py'
196
196
197
197
# 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 :
199
199
f .write ('d = [\n ' )
200
200
for i in range (65000 ):
201
201
f .write ('"",\n ' )
@@ -232,7 +232,7 @@ def test_module_with_large_stack(self, module='longlist'):
232
232
233
233
def test_failing_import_sticks (self ):
234
234
source = TESTFN + ".py"
235
- with open (source , "w" ) as f :
235
+ with open (source , "w" , encoding = 'utf-8' ) as f :
236
236
print ("a = 1/0" , file = f )
237
237
238
238
# New in 2.4, we shouldn't be able to import that no matter how often
@@ -281,7 +281,7 @@ def test_issue31286(self):
281
281
def test_failing_reload (self ):
282
282
# A failing reload should leave the module object in sys.modules.
283
283
source = TESTFN + os .extsep + "py"
284
- with open (source , "w" ) as f :
284
+ with open (source , "w" , encoding = 'utf-8' ) as f :
285
285
f .write ("a = 1\n b=2\n " )
286
286
287
287
sys .path .insert (0 , os .curdir )
@@ -298,7 +298,7 @@ def test_failing_reload(self):
298
298
remove_files (TESTFN )
299
299
300
300
# Now damage the module.
301
- with open (source , "w" ) as f :
301
+ with open (source , "w" , encoding = 'utf-8' ) as f :
302
302
f .write ("a = 10\n b=20//0\n " )
303
303
304
304
self .assertRaises (ZeroDivisionError , importlib .reload , mod )
@@ -320,7 +320,7 @@ def test_failing_reload(self):
320
320
def test_file_to_source (self ):
321
321
# check if __file__ points to the source file where available
322
322
source = TESTFN + ".py"
323
- with open (source , "w" ) as f :
323
+ with open (source , "w" , encoding = 'utf-8' ) as f :
324
324
f .write ("test = None\n " )
325
325
326
326
sys .path .insert (0 , os .curdir )
@@ -369,7 +369,7 @@ def test_timestamp_overflow(self):
369
369
try :
370
370
source = TESTFN + ".py"
371
371
compiled = importlib .util .cache_from_source (source )
372
- with open (source , 'w' ) as f :
372
+ with open (source , 'w' , encoding = 'utf-8' ) as f :
373
373
pass
374
374
try :
375
375
os .utime (source , (2 ** 33 - 5 , 2 ** 33 - 5 ))
@@ -574,7 +574,7 @@ def test_pyc_always_writable(self):
574
574
# with later updates, see issue #6074 for details
575
575
with _ready_to_import () as (name , path ):
576
576
# 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 :
578
578
f .write ("x = 'original'\n " )
579
579
# Tweak the mtime of the source to ensure pyc gets updated later
580
580
s = os .stat (path )
@@ -584,7 +584,7 @@ def test_pyc_always_writable(self):
584
584
self .assertEqual (m .x , 'original' )
585
585
# Change the file and then reimport it
586
586
os .chmod (path , 0o600 )
587
- with open (path , 'w' ) as f :
587
+ with open (path , 'w' , encoding = 'utf-8' ) as f :
588
588
f .write ("x = 'rewritten'\n " )
589
589
unload (name )
590
590
importlib .invalidate_caches ()
@@ -623,7 +623,7 @@ def setUp(self):
623
623
self .sys_path = sys .path [:]
624
624
self .orig_module = sys .modules .pop (self .module_name , None )
625
625
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 :
627
627
f .write (self .module_source )
628
628
sys .path .insert (0 , self .dir_name )
629
629
importlib .invalidate_caches ()
@@ -704,7 +704,8 @@ def tearDown(self):
704
704
705
705
# Regression test for http://bugs.python.org/issue1293.
706
706
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 :
708
709
f .write ("testdata = 'test_trailing_slash'" )
709
710
sys .path .append (self .path + '/' )
710
711
mod = __import__ ("test_trailing_slash" )
@@ -842,7 +843,7 @@ def _clean(self):
842
843
def setUp (self ):
843
844
self .source = TESTFN + '.py'
844
845
self ._clean ()
845
- with open (self .source , 'w' ) as fp :
846
+ with open (self .source , 'w' , encoding = 'utf-8' ) as fp :
846
847
print ('# This is a test file written by test_import.py' , file = fp )
847
848
sys .path .insert (0 , os .curdir )
848
849
importlib .invalidate_caches ()
@@ -941,9 +942,9 @@ def cleanup():
941
942
os .mkdir ('pep3147' )
942
943
self .addCleanup (cleanup )
943
944
# Touch the __init__.py
944
- with open (os .path .join ('pep3147' , '__init__.py' ), 'w ' ):
945
+ with open (os .path .join ('pep3147' , '__init__.py' ), 'wb ' ):
945
946
pass
946
- with open (os .path .join ('pep3147' , 'foo.py' ), 'w ' ):
947
+ with open (os .path .join ('pep3147' , 'foo.py' ), 'wb ' ):
947
948
pass
948
949
importlib .invalidate_caches ()
949
950
m = __import__ ('pep3147.foo' )
@@ -964,9 +965,9 @@ def cleanup():
964
965
os .mkdir ('pep3147' )
965
966
self .addCleanup (cleanup )
966
967
# Touch the __init__.py
967
- with open (os .path .join ('pep3147' , '__init__.py' ), 'w ' ):
968
+ with open (os .path .join ('pep3147' , '__init__.py' ), 'wb ' ):
968
969
pass
969
- with open (os .path .join ('pep3147' , 'foo.py' ), 'w ' ):
970
+ with open (os .path .join ('pep3147' , 'foo.py' ), 'wb ' ):
970
971
pass
971
972
importlib .invalidate_caches ()
972
973
m = __import__ ('pep3147.foo' )
@@ -986,7 +987,7 @@ def test_recompute_pyc_same_second(self):
986
987
# source size is enough to trigger recomputation of the pyc file.
987
988
__import__ (TESTFN )
988
989
unload (TESTFN )
989
- with open (self .source , 'a' ) as fp :
990
+ with open (self .source , 'a' , encoding = 'utf-8' ) as fp :
990
991
print ("x = 5" , file = fp )
991
992
m = __import__ (TESTFN )
992
993
self .assertEqual (m .x , 5 )
@@ -1118,7 +1119,7 @@ def tearDown(self):
1118
1119
1119
1120
def create_module (self , mod , contents , ext = ".py" ):
1120
1121
fname = os .path .join (TESTFN , mod + ext )
1121
- with open (fname , "w" ) as f :
1122
+ with open (fname , "w" , encoding = 'utf-8' ) as f :
1122
1123
f .write (contents )
1123
1124
self .addCleanup (unload , mod )
1124
1125
importlib .invalidate_caches ()
@@ -1195,10 +1196,10 @@ def _setup_broken_package(self, parent, child):
1195
1196
os .mkdir (pkg_path )
1196
1197
# Touch the __init__.py
1197
1198
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 :
1199
1200
f .write (parent )
1200
1201
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 :
1202
1203
f .write (child )
1203
1204
importlib .invalidate_caches ()
1204
1205
return init_path , bar_path
0 commit comments