From 483061e802c77c3fdc0eb420d4f717b729ff4ff8 Mon Sep 17 00:00:00 2001 From: Hilton Bristow Date: Tue, 24 Dec 2013 16:39:29 +1000 Subject: [PATCH] explicit string encoding when writing to file in python3 --- modules/matlab/generator/build_info.py | 2 +- modules/matlab/generator/cvmex.py | 2 +- modules/matlab/generator/gen_matlab.py | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/matlab/generator/build_info.py b/modules/matlab/generator/build_info.py index 65619a2a7..1340d9f92 100644 --- a/modules/matlab/generator/build_info.py +++ b/modules/matlab/generator/build_info.py @@ -21,7 +21,7 @@ def substitute(build, output_dir): # populate template populated = template.render(build=build, time=time) with open(os.path.join(output_dir, 'buildInformation.m'), 'wb') as f: - f.write(populated) + f.write(populated.encode('utf-8')) if __name__ == "__main__": """ diff --git a/modules/matlab/generator/cvmex.py b/modules/matlab/generator/cvmex.py index 52c5f649f..731d30a0e 100644 --- a/modules/matlab/generator/cvmex.py +++ b/modules/matlab/generator/cvmex.py @@ -22,7 +22,7 @@ def substitute(cv, output_dir): # populate template populated = template.render(cv=cv, time=time) with open(os.path.join(output_dir, 'mex.m'), 'wb') as f: - f.write(populated) + f.write(populated.encode('utf-8')) if __name__ == "__main__": """ diff --git a/modules/matlab/generator/gen_matlab.py b/modules/matlab/generator/gen_matlab.py index 49e575099..9f0975d97 100644 --- a/modules/matlab/generator/gen_matlab.py +++ b/modules/matlab/generator/gen_matlab.py @@ -105,27 +105,27 @@ class MatlabWrapperGenerator(object): for method in namespace.methods: populated = tfunction.render(fun=method, time=time, includes=namespace.name) with open(output_source_dir+'/'+method.name+'.cpp', 'wb') as f: - f.write(populated) + f.write(populated.encode('utf-8')) if namespace.name in doc and method.name in doc[namespace.name]: populated = tdoc.render(fun=method, doc=doc[namespace.name][method.name], time=time) with open(output_class_dir+'/'+method.name+'.m', 'wb') as f: - f.write(populated) + f.write(populated.encode('utf-8')) # classes for clss in namespace.classes: # cpp converter populated = tclassc.render(clss=clss, time=time) with open(output_private_dir+'/'+clss.name+'Bridge.cpp', 'wb') as f: - f.write(populated) + f.write(populated.encode('utf-8')) # matlab classdef populated = tclassm.render(clss=clss, time=time) with open(output_class_dir+'/'+clss.name+'.m', 'wb') as f: - f.write(populated) + f.write(populated.encode('utf-8')) # create a global constants lookup table const = dict(constants(todict(parse_tree.namespaces))) populated = tconst.render(constants=const, time=time) with open(output_dir+'/cv.m', 'wb') as f: - f.write(populated) + f.write(populated.encode('utf-8')) if __name__ == "__main__":