File: 0001-Patch-tests-against-Python-3.7.patch

package info (click to toggle)
python-tblib 1.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 344 kB
  • sloc: python: 602; makefile: 10
file content (35 lines) | stat: -rw-r--r-- 1,202 bytes parent folder | download
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
 ~~~~~~~