Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 316221c

Browse filesBrowse 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
Copy full SHA for 316221c

File tree

Expand file treeCollapse file tree

1 file changed

+6
-6
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-6
lines changed

‎Doc/howto/enum.rst

Copy file name to clipboardExpand all lines: Doc/howto/enum.rst
+6-6Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.