summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-10-10 14:45:11 (GMT)
committerGeorg Brandl <georg@python.org>2012-10-10 14:45:11 (GMT)
commit3a2e101be564ffcb73dac708533d9178d90c2da8 (patch)
treed48c0e22d21a2be1509bbc69a700d7b8ddf9a788 /Doc/library
parent4614cc4f7fcdc4537ea98fc49308719b71093972 (diff)
downloadcpython-3a2e101be564ffcb73dac708533d9178d90c2da8.zip
cpython-3a2e101be564ffcb73dac708533d9178d90c2da8.tar.gz
cpython-3a2e101be564ffcb73dac708533d9178d90c2da8.tar.bz2
Issue #12947: revert earlier workaround and use a monkey-patch to enable showing doctest directives only in the doctest docs.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/doctest.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst
index ed53f06..ec8edbe 100644
--- a/Doc/library/doctest.rst
+++ b/Doc/library/doctest.rst
@@ -1,3 +1,5 @@
+:keepdoctest:
+
:mod:`doctest` --- Test interactive Python examples
===================================================
@@ -652,7 +654,7 @@ example. Use ``+`` to enable the named behavior, or ``-`` to disable it.
For example, this test passes::
- >>> print(list(range(20))) #doctest: +NORMALIZE_WHITESPACE
+ >>> print(list(range(20))) # doctest: +NORMALIZE_WHITESPACE
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
@@ -664,7 +666,8 @@ so::
>>> print(list(range(20))) # doctest: +ELLIPSIS
[0, 1, ..., 18, 19]
-Multiple directives can be used on a single physical line, separated by commas::
+Multiple directives can be used on a single physical line, separated by
+commas::
>>> print(list(range(20))) # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
[0, 1, ..., 18, 19]