summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-12-16 03:13:05 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-12-16 03:13:05 (GMT)
commit971dc01e8a59bf0c0186d5b104e2a929ec293f27 (patch)
tree96d83e5ad83ca1645be601526828b71b3a92bf5b /Doc/library/unittest.rst
parent9743e4f6169b3abe8cde3fc4cae1d7b673e29d6d (diff)
downloadcpython-971dc01e8a59bf0c0186d5b104e2a929ec293f27.zip
cpython-971dc01e8a59bf0c0186d5b104e2a929ec293f27.tar.gz
cpython-971dc01e8a59bf0c0186d5b104e2a929ec293f27.tar.bz2
Fix one versionchanged
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index bcb9517..c011be8 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1936,8 +1936,11 @@ Loading and running tests
Calling ``main`` actually returns an instance of the ``TestProgram`` class.
This stores the result of the tests run as the ``result`` attribute.
+ .. versionchanged:: 3.1
+ The ``exit`` parameter was added.
+
.. versionchanged:: 3.2
- The ``exit``, ``verbosity``, ``failfast``, ``catchbreak``, ``buffer``,
+ The ``verbosity``, ``failfast``, ``catchbreak``, ``buffer``
and ``warnings`` parameters were added.