Set utf-8 as an encoding for open()

Not every system uses 'utf-8' as a default encoding for opening files in Python.

Before you say that there must be a way to set default encoding in one line, no, there is not. At least, I didn't found a way to do this.
This commit is contained in:
Yallxe
2022-01-29 12:18:18 +01:00
parent 156f1084f1
commit 43b1612dfe
13 changed files with 19 additions and 15 deletions
+4
View File
@@ -6,6 +6,10 @@
import os
import sys
import importlib
importlib.reload(sys)
print(sys.getdefaultencoding())
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))