aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-jsonpickle/tests.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-03-05 14:58:22 -0300
committerLeo <thinkabit.ukim@gmail.com>2020-03-05 14:58:22 -0300
commit6e39f7e4b2045ceac96dea730e1b74e9b0a5d049 (patch)
tree078c50482e8f2aa7b88f0d3c51f6413fa5c91f23 /testing/py3-jsonpickle/tests.patch
parent55f3d873b047899b4d7b9ba10c418c8dd57e7184 (diff)
downloadaports-6e39f7e4b2045ceac96dea730e1b74e9b0a5d049.tar.bz2
aports-6e39f7e4b2045ceac96dea730e1b74e9b0a5d049.tar.xz
testing/py3-jsonpickle: upgrade to 1.3
Diffstat (limited to 'testing/py3-jsonpickle/tests.patch')
-rw-r--r--testing/py3-jsonpickle/tests.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/py3-jsonpickle/tests.patch b/testing/py3-jsonpickle/tests.patch
new file mode 100644
index 0000000000..99d78af962
--- /dev/null
+++ b/testing/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__()
+