diff options
author | Georg Brandl <georg@python.org> | 2014-03-24 08:06:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-24 08:06:18 (GMT) |
commit | df48b97855b378a13d852656d358ca92ecbe4aa3 (patch) | |
tree | 3075e47c89a79974038451d9e65cd59c7f533396 /Doc/library/doctest.rst | |
parent | 645d3b76559d3c85cc90d2c8787fa6c765327e71 (diff) | |
download | cpython-df48b97855b378a13d852656d358ca92ecbe4aa3.zip cpython-df48b97855b378a13d852656d358ca92ecbe4aa3.tar.gz cpython-df48b97855b378a13d852656d358ca92ecbe4aa3.tar.bz2 |
Fix a few scoping issues with versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/doctest.rst')
-rw-r--r-- | Doc/library/doctest.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst index 28df49c..50626e9 100644 --- a/Doc/library/doctest.rst +++ b/Doc/library/doctest.rst @@ -502,7 +502,8 @@ or'ed together and passed to various functions. The names can also be used in :ref:`doctest directives <doctest-directives>`, and may be passed to the doctest command line interface via the ``-o`` option. -.. versionadded:: 3.4 the ``-o`` command line option +.. versionadded:: 3.4 + The ``-o`` command line option. The first group of options define test semantics, controlling aspects of how doctest decides whether actual output matches an example's expected output: |