Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 43b586b

Browse files
committed
Silence warnings from 'make suspicious' to make the docs buildbot happy
1 parent fd0f84b commit 43b586b

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

Doc/library/enum.rst

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -837,16 +837,18 @@ Finer Points
837837
Enum class signature
838838
~~~~~~~~~~~~~~~~~~~~
839839

840-
``class SomeName(
841-
AnEnum,
842-
start=None,
843-
ignore='staticmethod classmethod property',
844-
):``
840+
::
845841

846-
``start`` can be used by a :meth:`_generate_next_value_` method to specify a
842+
class SomeName(
843+
AnEnum,
844+
start=None,
845+
ignore='staticmethod classmethod property',
846+
):
847+
848+
*start* can be used by a :meth:`_generate_next_value_` method to specify a
847849
starting value.
848850

849-
``ignore`` specifies which names, if any, will not attempt to auto-generate
851+
*ignore* specifies which names, if any, will not attempt to auto-generate
850852
a new value (they will also be removed from the class body).
851853

852854

0 commit comments

Comments
 (0)