summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorE-Paine <63801254+E-Paine@users.noreply.github.com>2020-07-09 19:18:34 (GMT)
committerGitHub <noreply@github.com>2020-07-09 19:18:34 (GMT)
commit1ee5dc15868ea0ad36800899e19a6a87170ada76 (patch)
treef0bdbb5789d2fd892beabc9f14a6393ae57cd7e3 /Doc/library
parentaf56c4fc76ac39ce76d649d7bebf7f78c1add4fa (diff)
downloadcpython-1ee5dc15868ea0ad36800899e19a6a87170ada76.zip
cpython-1ee5dc15868ea0ad36800899e19a6a87170ada76.tar.gz
cpython-1ee5dc15868ea0ad36800899e19a6a87170ada76.tar.bz2
Remove trailing >>> in enum docs (GH-21358)
The >>> as the last line serve no purpose and are not colored correctly by Sphinx.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/enum.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 4b4f5eb..b327a0a 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -113,7 +113,6 @@ The *type* of an enumeration member is the enumeration it belongs to::
<enum 'Color'>
>>> isinstance(Color.GREEN, Color)
True
- >>>
Enum members also have a property that contains just their item name::