[Python-checkins] cpython: Issue #29338: Fix test_enum.

serhiy.storchaka python-checkins at python.org
Tue Jan 24 02:06:39 EST 2017


https://hg.python.org/cpython/rev/b74a6a7d4389
changeset:   106297:b74a6a7d4389
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue Jan 24 09:06:22 2017 +0200
summary:
  Issue #29338: Fix test_enum.

files:
  Lib/test/test_enum.py |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py
--- a/Lib/test/test_enum.py
+++ b/Lib/test/test_enum.py
@@ -2325,6 +2325,8 @@
 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 @@
 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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list