@@ -170,7 +170,7 @@ Data Types
170170 final *enum *, as well as creating the enum members, properly handling
171171 duplicates, providing iteration over the enum class, etc.
172172
173- .. method :: EnumType.__call__(cls, value, names=None, \ *, module=None, qualname=None, type=None, start=1, boundary=None)
173+ .. method :: EnumType.__call__(cls, value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
174174
175175 This method is called in two different ways:
176176
@@ -350,7 +350,7 @@ Data Types
350350 >>> PowersOfThree.SECOND.value
351351 9
352352
353- .. method :: Enum.__init__(self, \ *args, \ **kwds)
353+ .. method :: Enum.__init__(self, *args, **kwds)
354354
355355 By default, does nothing. If multiple values are given in the member
356356 assignment, those values become separate arguments to ``__init__ ``; e.g.
@@ -361,7 +361,7 @@ Data Types
361361
362362 ``Weekday.__init__() `` would be called as ``Weekday.__init__(self, 1, 'Mon') ``
363363
364- .. method :: Enum.__init_subclass__(cls, \ **kwds)
364+ .. method :: Enum.__init_subclass__(cls, **kwds)
365365
366366 A *classmethod * that is used to further configure subsequent subclasses.
367367 By default, does nothing.
@@ -388,7 +388,7 @@ Data Types
388388 >>> Build('deBUG')
389389 <Build.DEBUG: 'debug'>
390390
391- .. method :: Enum.__new__(cls, \ *args, \ **kwds)
391+ .. method :: Enum.__new__(cls, *args, **kwds)
392392
393393 By default, doesn't exist. If specified, either in the enum class
394394 definition or in a mixin class (such as ``int ``), all values given
0 commit comments