summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-11 16:29:31 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-11 16:29:31 (GMT)
commite173d0123171adc1b5145ef7613364e14ccbd945 (patch)
treeafc2f18da0354bcb87387a208624ee3f082749a6 /Doc
parenta155d40ed50b7bf77338a80ad1793cb1ea8538bc (diff)
parent5a33f813483325ab3e13596814c3eade6e0bb518 (diff)
downloadcpython-e173d0123171adc1b5145ef7613364e14ccbd945.zip
cpython-e173d0123171adc1b5145ef7613364e14ccbd945.tar.gz
cpython-e173d0123171adc1b5145ef7613364e14ccbd945.tar.bz2
Merge #17987: properly document support.captured_xxx.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/test.rst26
1 files changed, 19 insertions, 7 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst
index 702ef8a..bf78b4d 100644
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -362,17 +362,29 @@ The :mod:`test.support` module defines the following functions:
New optional arguments *filters* and *quiet*.
-.. function:: captured_stdout()
+.. function:: captured_stdin()
+ captured_stdout()
+ captured_stderr()
- A context manager that runs the :keyword:`with` statement body using a
- :class:`io.StringIO` object as sys.stdout. That object can be retrieved
- using the ``as`` clause of the :keyword:`with` statement.
+ A context managers that temporarily replaces the named stream with
+ :class:`io.StringIO` object.
- Example use::
+ Example use with output streams::
- with captured_stdout() as s:
+ with captured_stdout() as stdout, captured_stderr() as stderr:
print("hello")
- assert s.getvalue() == "hello\n"
+ print("error", file=sys.stderr)
+ assert stdout.getvalue() == "hello\n"
+ assert stderr.getvalue() == "error\n"
+
+ Example use with input stream::
+
+ with captured_stdin() as stdin:
+ stdin.write('hello\n')
+ stdin.seek(0)
+ # call test code that consumes from sys.stdin
+ captured = input()
+ self.assertEqual(captured, "hello")
.. function:: temp_cwd(name='tempcwd', quiet=False, path=None)