aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-jsonpickle/tests.patch
diff options
context:
space:
mode:
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__()
+