diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 22:13:38 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 22:13:38 +0200 |
commit | e4390dd34e24ee97145bc3e9f717430db9745da3 (patch) | |
tree | 425afeb3b7bbdad0b4d26dd3fee350f71c7243ee /apks/py3-jsonpickle/tests.patch | |
parent | dea84da8bb781552be49070a56deb87234bbb399 (diff) | |
download | apkbuilds-e4390dd34e24ee97145bc3e9f717430db9745da3.tar.gz apkbuilds-e4390dd34e24ee97145bc3e9f717430db9745da3.tar.bz2 apkbuilds-e4390dd34e24ee97145bc3e9f717430db9745da3.zip |
fix: rename folder to match package's name
This makes the whole thing a bit easier
Diffstat (limited to 'apks/py3-jsonpickle/tests.patch')
-rw-r--r-- | apks/py3-jsonpickle/tests.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apks/py3-jsonpickle/tests.patch b/apks/py3-jsonpickle/tests.patch new file mode 100644 index 0000000..99d78af --- /dev/null +++ b/apks/py3-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__() + |