forked from AuroraMiddleware/gtk
gtk/gentypefuncs.py: Open files in utf-8 encoding
On Python-3.x, we need to set the encoding when opening files, when this script is run, as it might contain items that are not supported by the system's locale (for example, non-English Windows). So, we use a wrapper to set the encoding on Python 3.x, but open the file as we did when using Python 2.x, since file encodings are not supported there. https://bugzilla.gnome.org/show_bug.cgi?id=785210
This commit is contained in:
parent
e5a1de1c19
commit
0332dbca94
@ -17,9 +17,15 @@ if debug: print ('Output file: ', out_file)
|
||||
|
||||
if debug: print (len(in_files), 'input files')
|
||||
|
||||
def open_file(filename, mode):
|
||||
if sys.version_info[0] < 3:
|
||||
return open(filename, mode=mode)
|
||||
else:
|
||||
return open(filename, mode=mode, encoding='utf-8')
|
||||
|
||||
for filename in in_files:
|
||||
if debug: print ('Input file: ', filename)
|
||||
with open(filename, "r") as f:
|
||||
with open_file(filename, "r") as f:
|
||||
for line in f:
|
||||
line = line.rstrip('\n').rstrip('\r')
|
||||
# print line
|
||||
|
Loading…
Reference in New Issue
Block a user