From fcb04f1098c1a0f33053f4682a08c056cff6fbc8 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 21 Feb 2021 21:36:06 -0600 Subject: [PATCH] Updated doctest output for Python 3.6 --- examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples.py b/examples.py index b0790a7..a8eaab0 100644 --- a/examples.py +++ b/examples.py @@ -11,7 +11,7 @@ def parse(pair): >>> parse('invalid') Traceback (most recent call last): ... - ValueError: need more than 1 value to unpack + ValueError: not enough values to unpack (expected 2, got 1) Likewise if there is more than one separator: >>> parse('first: second: third') -- GitLab