10000 [3.11] gh-111895: Convert definition list to bullet list for readabil… · python/cpython@316221c · GitHub
[go: up one dir, main page]

Skip to content

Commit 316221c

Browse files
[3.11] gh-111895: Convert definition list to bullet list for readability on mobile (GH-111898) (#111909)
gh-111895: Convert definition list to bullet list for readability on mobile (GH-111898) Convert definition list to bullet list for readability on mobile (cherry picked from commit 7d21e3d) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
1 parent f108976 commit 316221c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/howto/enum.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -573,9 +573,9 @@ The complete signature is::
573573
start=1,
574574
)
575575

576-
:value: What the new enum class will record as its name.
576+
* *value*: What the new enum class will record as its name.
577577

578-
:names: The enum members. This can be a whitespace- or comma-separated string
578+
* *names*: The enum members. This can be a whitespace- or comma-separated string
579579
(values will start at 1 unless otherwise specified)::
580580

581581
'RED GREEN BLUE' | 'RED,GREEN,BLUE' | 'RED, GREEN, BLUE'
@@ -592,13 +592,13 @@ The complete signature is::
592592

593593
{'CHARTREUSE': 7, 'SEA_GREEN': 11, 'ROSEMARY': 42}
594594

595-
:module: name of module where new enum class can be found.
595+
* *module*: name of module where new enum class can be found.
596596

597-
:qualname: where in module new enum class can be found.
597+
* *qualname*: where in module new enum class can be found.
598598

599-
:type: type to mix in to new enum class.
599+
* *type*: type to mix in to new enum class.
600600

601-
:start: number to start counting at if only names are passed in.
601+
* *start*: number to start counting at if only names are passed in.
602602

603603
.. versionchanged:: 3.5
604604
The *start* parameter was added.

0 commit comments

Comments
 (0)
0