File python3-fixes.patch of Package python3-instant
---
instant/build.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/instant/build.py
+++ b/instant/build.py
@@ -119,7 +119,7 @@ def recompile(modulename, module_path, n
compile_log_filename = os.path.join(module_path, "compile.log")
compile_log_filename_dest = os.path.join(get_default_error_dir(), \
modulename, "compile.log")
- compile_log_file = open(compile_log_filename, "w")
+ compile_log_file = open(compile_log_filename, "w", encoding='UTF-8')
ret = 1
try: