From: Berker Peksag Date: Sat, 6 Aug 2016 10:37:22 +0000 (+0300) Subject: Silence warnings from 'make suspicious' to make the docs buildbot happy X-Git-Tag: v3.6.0a4~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43b586b951aa3232261869640d379f942d0873da;p=python Silence warnings from 'make suspicious' to make the docs buildbot happy --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 54defeba1b..bbd0b9e345 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -837,16 +837,18 @@ Finer Points Enum class signature ~~~~~~~~~~~~~~~~~~~~ - ``class SomeName( - AnEnum, - start=None, - ignore='staticmethod classmethod property', - ):`` +:: -``start`` can be used by a :meth:`_generate_next_value_` method to specify a + class SomeName( + AnEnum, + start=None, + ignore='staticmethod classmethod property', + ): + +*start* can be used by a :meth:`_generate_next_value_` method to specify a starting value. -``ignore`` specifies which names, if any, will not attempt to auto-generate +*ignore* specifies which names, if any, will not attempt to auto-generate a new value (they will also be removed from the class body).