diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-03-10 18:52:21 +0100 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-03-10 18:53:19 +0100 |
commit | 1c0f4d7ddf44ea29464cd18ea8444f95f0eb6ae3 (patch) | |
tree | 635222a6ce6806dcb6280fc60057e3ed13acddac /apks/py3-jsonpickle/tests.patch | |
parent | 02be4323ddeee691a5dcba864b93ec9aa3d47f38 (diff) | |
download | apkbuilds-1c0f4d7ddf44ea29464cd18ea8444f95f0eb6ae3.tar.gz apkbuilds-1c0f4d7ddf44ea29464cd18ea8444f95f0eb6ae3.tar.bz2 apkbuilds-1c0f4d7ddf44ea29464cd18ea8444f95f0eb6ae3.zip |
chore: Update py3-jsonpickle
Diffstat (limited to 'apks/py3-jsonpickle/tests.patch')
-rw-r--r-- | apks/py3-jsonpickle/tests.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/apks/py3-jsonpickle/tests.patch b/apks/py3-jsonpickle/tests.patch deleted file mode 100644 index 99d78af..0000000 --- a/apks/py3-jsonpickle/tests.patch +++ /dev/null @@ -1,15 +0,0 @@ -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__() - |