From 9a3141d0a1b67e2c4c8ac18deead830adfdae0de Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sat, 30 Jun 2018 20:51:57 -0400 Subject: [PATCH] Patch tests against Python 3.7. Signed-off-by: Elliott Sales de Andrade --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index a4838e7..e034cb2 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 ~~~~~~~ -- 2.17.1