diff options
author | Britney Fransen <brfransen@gmail.com> | 2023-05-29 18:22:03 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2023-05-29 18:22:03 (GMT) |
commit | a21df060d2c4fe043e84ce4894afacafcc582b16 (patch) | |
tree | 8f06b34a200a234d22930a5aafaead053a80d899 /linhes/qt5-webkit/qt5-webkit-python-3.9.patch | |
parent | bb3e0b9a02ec0d57dc51807cf709b806c77355d6 (diff) | |
download | linhes_pkgbuild-a21df060d2c4fe043e84ce4894afacafcc582b16.zip linhes_pkgbuild-a21df060d2c4fe043e84ce4894afacafcc582b16.tar.gz linhes_pkgbuild-a21df060d2c4fe043e84ce4894afacafcc582b16.tar.bz2 |
qt5-webkit: patches
Diffstat (limited to 'linhes/qt5-webkit/qt5-webkit-python-3.9.patch')
-rw-r--r-- | linhes/qt5-webkit/qt5-webkit-python-3.9.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/linhes/qt5-webkit/qt5-webkit-python-3.9.patch b/linhes/qt5-webkit/qt5-webkit-python-3.9.patch new file mode 100644 index 0000000..bad26ef --- /dev/null +++ b/linhes/qt5-webkit/qt5-webkit-python-3.9.patch @@ -0,0 +1,27 @@ +From 78360c01c796b6260bf828bc9c8a0ef73c5132fd Mon Sep 17 00:00:00 2001 +From: Konstantin Tokarev <annulen@yandex.ru> +Date: Wed, 3 Jun 2020 15:01:42 +0300 +Subject: [PATCH] Fix compilation with Python 3.9: avoid passing encoding to + json.load() + +In Python 2.7 UTF-8 is assumed by default, while in Python 3 this argument +is not supported. + +Change-Id: Ic459d60a6b20bc1838d8771bc36ac41614fe61a9 +--- + Source/JavaScriptCore/generate-bytecode-files | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Source/JavaScriptCore/generate-bytecode-files b/Source/JavaScriptCore/generate-bytecode-files +index c5dab429c7b0f..af3431275ecf9 100644 +--- a/Source/JavaScriptCore/generate-bytecode-files ++++ b/Source/JavaScriptCore/generate-bytecode-files +@@ -163,7 +163,7 @@ if __name__ == "__main__": + initBytecodesFile = openOrExit(initASMFileName, "w") + + try: +- bytecodeSections = json.load(bytecodeFile, encoding = "utf-8") ++ bytecodeSections = json.load(bytecodeFile) + except: + print("Unexpected error parsing {0}: {1}".format(bytecodeJSONFile, sys.exc_info())) + |