summaryrefslogtreecommitdiff
path: root/debian/patches/0001-Patch-tests-against-Python-3.7.patch
blob: a1517827885ea601175ca8f2cc3fa7d2dd3e2598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
 ~~~~~~~