fix some versionchanged and versionadded directives

This commit is contained in:
Benjamin Peterson 2009-03-24 01:00:11 +00:00
parent 52baa29033
commit 70e32c837f
1 changed files with 3 additions and 11 deletions

View File

@ -620,6 +620,7 @@ Test cases
default value for *msg* can be computed to include representations of both default value for *msg* can be computed to include representations of both
*first* and *second*. *first* and *second*.
.. method:: assertAlmostEqual(first, second[, places[, msg]]) .. method:: assertAlmostEqual(first, second[, places[, msg]])
failUnlessAlmostEqual(first, second[, places[, msg]]) failUnlessAlmostEqual(first, second[, places[, msg]])
@ -656,7 +657,7 @@ Test cases
To catch any of a group of exceptions, a tuple containing the exception To catch any of a group of exceptions, a tuple containing the exception
classes may be passed as *exception*. classes may be passed as *exception*.
.. versionchanged:: 2.7 .. versionchanged:: 3.1
If *callable* is omitted or None, returns a context manager so that the If *callable* is omitted or None, returns a context manager so that the
code under test can be written inline rather than as a function:: code under test can be written inline rather than as a function::
@ -732,7 +733,6 @@ Test cases
.. _testsuite-objects: .. _testsuite-objects:
Grouping tests Grouping tests
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
@ -934,10 +934,6 @@ Loading and running tests
holding formatted tracebacks. Each tuple represents a test which raised an holding formatted tracebacks. Each tuple represents a test which raised an
unexpected exception. unexpected exception.
.. versionchanged:: 2.2
Contains formatted tracebacks instead of :func:`sys.exc_info` results.
.. attribute:: failures .. attribute:: failures
@ -946,16 +942,12 @@ Loading and running tests
was explicitly signalled using the :meth:`TestCase.fail\*` or was explicitly signalled using the :meth:`TestCase.fail\*` or
:meth:`TestCase.assert\*` methods. :meth:`TestCase.assert\*` methods.
.. versionchanged:: 2.2
Contains formatted tracebacks instead of :func:`sys.exc_info` results.
.. attribute:: skipped .. attribute:: skipped
A list containing 2-tuples of :class:`TestCase` instances and strings A list containing 2-tuples of :class:`TestCase` instances and strings
holding the reason for skipping the test. holding the reason for skipping the test.
.. versionadded:: 2.7 .. versionadded:: 3.1
.. attribute:: expectedFailures .. attribute:: expectedFailures