diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-10-03 06:52:16 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-10-03 06:52:16 (GMT) |
commit | da0e579f39338ee3b63c02fddfbe3e0238083d2f (patch) | |
tree | 50254dcfba919f65805d760d46a96f88180cd133 | |
parent | 497ebdad423f3628b6f4033ef07c5b0716526daa (diff) | |
parent | 8f80e0a6515e7a0446c228ac982f0a876971bdc3 (diff) | |
download | cpython-da0e579f39338ee3b63c02fddfbe3e0238083d2f.zip cpython-da0e579f39338ee3b63c02fddfbe3e0238083d2f.tar.gz cpython-da0e579f39338ee3b63c02fddfbe3e0238083d2f.tar.bz2 |
Merge doctest note from 3.3
-rw-r--r-- | Doc/library/doctest.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst index ed53f06..351db51 100644 --- a/Doc/library/doctest.rst +++ b/Doc/library/doctest.rst @@ -650,6 +650,14 @@ above. An example's doctest directives modify doctest's behavior for that single example. Use ``+`` to enable the named behavior, or ``-`` to disable it. +.. note:: + Due to an `unfortunate bug`_ in our documentation publishing process, the + directives in the following examples are not being displayed in the + rendered HTML version. Please use the "Show Source" link in the sidebar + to view the details of the directive usage examples. + + .. _unfortunate bug: http://bugs.python.org/issue12947 + For example, this test passes:: >>> print(list(range(20))) #doctest: +NORMALIZE_WHITESPACE |