From b599ca8cff849e45c30a499bc2d38c25766694b8 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 4 Apr 2015 12:48:04 +0300 Subject: [PATCH] Fixed test_enum for issue #15582. --- Lib/test/test_enum.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index acf9cfa965..278266ef07 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -1560,6 +1560,10 @@ expected_help_output = """ Help on class Color in module %s: class Color(enum.Enum) + | Generic enumeration. + |\x20\x20 + | Derive from this class to define new enumerations. + |\x20\x20 | Method resolution order: | Color | enum.Enum -- 2.50.1