summaryrefslogtreecommitdiff
path: root/debian/patches/0001-Patch-tests-against-Python-3.7.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0001-Patch-tests-against-Python-3.7.patch')
-rw-r--r--debian/patches/0001-Patch-tests-against-Python-3.7.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/debian/patches/0001-Patch-tests-against-Python-3.7.patch b/debian/patches/0001-Patch-tests-against-Python-3.7.patch
deleted file mode 100644
index a151782..0000000
--- a/debian/patches/0001-Patch-tests-against-Python-3.7.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
-Date: Sat, 30 Jun 2018 20:51:57 -0400
-Subject: Patch tests against Python 3.7.
-
-Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
-
-Origin: vendor, https://src.fedoraproject.org/rpms/python-tblib/blob/master/f/0001-Patch-tests-against-Python-3.7.patch
-Bug: https://github.com/ionelmc/python-tblib/issues/36<Paste>
-Bug-Debian: https://bugs.debian.org/912034
-Last-Update: 2018-10-28
----
- README.rst | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/README.rst b/README.rst
-index a4838e7..051cc57 100644
---- a/README.rst
-+++ b/README.rst
-@@ -162,13 +162,13 @@ Unpickling
- ::
-
- >>> pickle.loads(s1)
-- (<...Exception'>, Exception('fail',), <traceback object at ...>)
-+ (<...Exception'>, Exception('fail'...), <traceback object at ...>)
-
- >>> pickle.loads(s2)
-- (<...Exception'>, Exception('fail',), <traceback object at ...>)
-+ (<...Exception'>, Exception('fail'...), <traceback object at ...>)
-
- >>> pickle.loads(s3)
-- (<...Exception'>, Exception('fail',), <traceback object at ...>)
-+ (<...Exception'>, Exception('fail'...), <traceback object at ...>)
-
- Raising
- ~~~~~~~