Commit 469b1f0d authored by Michael Foord's avatar Michael Foord

Adding versionadded to several new functions in unittest documentation.

parent 90e6d040
...@@ -1888,6 +1888,8 @@ handling functionality within test frameworks. ...@@ -1888,6 +1888,8 @@ handling functionality within test frameworks.
(usually in response to the user pressing control-c) all registered results (usually in response to the user pressing control-c) all registered results
have :meth:`~TestResult.stop` called. have :meth:`~TestResult.stop` called.
.. versionadded:: 3.2
.. function:: registerResult(result) .. function:: registerResult(result)
Register a :class:`TestResult` object for control-c handling. Registering a Register a :class:`TestResult` object for control-c handling. Registering a
...@@ -1898,12 +1900,16 @@ handling functionality within test frameworks. ...@@ -1898,12 +1900,16 @@ handling functionality within test frameworks.
handling is not enabled, so test frameworks can unconditionally register handling is not enabled, so test frameworks can unconditionally register
all results they create independently of whether or not handling is enabled. all results they create independently of whether or not handling is enabled.
.. versionadded:: 3.2
.. function:: removeResult(result) .. function:: removeResult(result)
Remove a registered result. Once a result has been removed then Remove a registered result. Once a result has been removed then
:meth:`~TestResult.stop` will no longer be called on that result object in :meth:`~TestResult.stop` will no longer be called on that result object in
response to a control-c. response to a control-c.
.. versionadded:: 3.2
.. function:: removeHandler(function=None) .. function:: removeHandler(function=None)
When called without arguments this function removes the control-c handler When called without arguments this function removes the control-c handler
...@@ -1914,3 +1920,5 @@ handling functionality within test frameworks. ...@@ -1914,3 +1920,5 @@ handling functionality within test frameworks.
def test_signal_handling(self): def test_signal_handling(self):
... ...
.. versionadded:: 3.2
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment