8000 gh-111895: Convert definition list to bullet list for readability on … · python/cpython@7d21e3d · GitHub
[go: up one dir, main page]

Skip to content

Commit 7d21e3d

Browse files
authored
gh-111895: Convert definition list to bullet list for readability on mobile (#111898)
Convert definition list to bullet list for readability on mobile
1 parent bc12f79 commit 7d21e3d

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
@@ -607,9 +607,9 @@ The complete signature is::
607607
start=1,
608608
)
609609

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

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

615615
'RED GREEN BLUE' | 'RED,GREEN,BLUE' | 'RED, GREEN, BLUE'
@@ -626,13 +626,13 @@ The complete signature is::
626626

627627
{'CHARTREUSE': 7, 'SEA_GREEN': 11, 'ROSEMARY': 42}
628628

629-
:module: name of module where new enum class can be found.
629+
* *module*: name of module where new enum class can be found.
630630

631-
:qualname: where in module new enum class can be found.
631+
* *qualname*: where in module new enum class can be found.
632632

633-
:type: type to mix in to new enum class.
633+
* *type*: type to mix in to new enum class.
634634

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

637637
.. versionchanged:: 3.5
638638
The *start* parameter was added.

0 commit comments

Comments
 (0)
0