From: Elliott Sales de Andrade Date: Sat, 30 Jun 2018 20:51:57 -0400 Subject: Patch tests against Python 3.7. Signed-off-by: Elliott Sales de Andrade 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 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',), ) + (<...Exception'>, Exception('fail'...), ) >>> pickle.loads(s2) - (<...Exception'>, Exception('fail',), ) + (<...Exception'>, Exception('fail'...), ) >>> pickle.loads(s3) - (<...Exception'>, Exception('fail',), ) + (<...Exception'>, Exception('fail'...), ) Raising ~~~~~~~