From: Serhiy Storchaka Date: Tue, 24 Jan 2017 07:06:22 +0000 (+0200) Subject: Issue #29338: Fix test_enum. X-Git-Tag: v3.7.0a1~1475 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90f6332382d616ce5a3329c1176ffa1cff27ea7e;p=python Issue #29338: Fix test_enum. --- diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index e97ef947b1..4239412834 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -2325,6 +2325,8 @@ expected_help_output_with_docs = """\ Help on class Color in module %s: class Color(enum.Enum) + | Color(value, names=None, *, module=None, qualname=None, type=None, start=1) + |\x20\x20 | An enumeration. |\x20\x20 | Method resolution order: @@ -2362,6 +2364,8 @@ expected_help_output_without_docs = """\ Help on class Color in module %s: class Color(enum.Enum) + | Color(value, names=None, *, module=None, qualname=None, type=None, start=1) + |\x20\x20 | Method resolution order: | Color | enum.Enum