diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-08 20:32:48 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-08 20:51:29 +0200 |
commit | 5ae86d77daf952ef6fb5c48128d23d83b60d5119 (patch) | |
tree | 38fa89af3ed6479f4c9616b2d65e2b58002204a8 /jsonpickle/tests.patch | |
parent | e7dfcd11bb8eec649cd84f09ddd2b3751dd99952 (diff) | |
download | apkbuilds-5ae86d77daf952ef6fb5c48128d23d83b60d5119.tar.gz apkbuilds-5ae86d77daf952ef6fb5c48128d23d83b60d5119.tar.bz2 apkbuilds-5ae86d77daf952ef6fb5c48128d23d83b60d5119.zip |
feat: Add gallery-dl
Adds gallery-dl from testing branch so I don't have to include it in the
build process.
Diffstat (limited to 'jsonpickle/tests.patch')
-rw-r--r-- | jsonpickle/tests.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/jsonpickle/tests.patch b/jsonpickle/tests.patch new file mode 100644 index 0000000..99d78af --- /dev/null +++ b/jsonpickle/tests.patch @@ -0,0 +1,15 @@ +diff --git a/jsonpickle/pickler.py b/jsonpickle/pickler.py +index ce64592..62ba575 100644 +--- a/jsonpickle/pickler.py ++++ b/jsonpickle/pickler.py +@@ -462,6 +462,9 @@ class Pickler(object): + if has_getinitargs: + data[tags.INITARGS] = self._flatten(obj.__getinitargs__()) + ++ if type(obj).__name__ == 'TextIOWrapper': ++ return None ++ + if has_getstate: + try: + state = obj.__getstate__() + |