Home
last modified time | relevance | path

Searched refs:redirect_stdout (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Lib/
Dwebbrowser.py192 redirect_stdout = True variable in UnixBrowser
220 stdout=(self.redirect_stdout and inout or None),
329 redirect_stdout = False variable in Elinks
Dcontextlib.py319 class redirect_stdout(_RedirectStream): class
/external/python/cpython2/Lib/
Dwebbrowser.py213 redirect_stdout = True variable in UnixBrowser
237 stdout=(self.redirect_stdout and inout or None),
340 redirect_stdout = False variable in Elinks
/external/fonttools/Lib/fontTools/misc/
Dpy23.py471 from contextlib import redirect_stdout, redirect_stderr
497 class redirect_stdout(_RedirectStream): class
/external/python/cpython3/Doc/library/
Dcontextlib.rst229 .. function:: redirect_stdout(new_target)
242 with redirect_stdout(f):
250 with redirect_stdout(f):
255 with redirect_stdout(sys.stderr):
270 Similar to :func:`~contextlib.redirect_stdout` but redirecting
778 :func:`suppress` and :func:`redirect_stdout`. Here's a very simple example of
781 >>> from contextlib import redirect_stdout
784 >>> write_to_stream = redirect_stdout(stream)
801 :func:`redirect_stdout`, for example, is definitely not thread safe, as it
/external/fonttools/Tests/misc/
Dpy23_test.py12 round2, round3, isclose, redirect_stdout, redirect_stderr)
474 redirect_stream = redirect_stdout
/external/python/cpython3/Lib/test/
Dtest_contextlib.py982 redirect_stream = redirect_stdout
Dtest_dis.py412 with contextlib.redirect_stdout(output):
/external/fonttools/
DNEWS.rst533 - [py23] Added backports for ``redirect_stdout`` and ``redirect_stderr``
DPKG-INFO950 - [py23] Added backports for ``redirect_stdout`` and ``redirect_stderr``
/external/fonttools/Lib/fonttools.egg-info/
DPKG-INFO950 - [py23] Added backports for ``redirect_stdout`` and ``redirect_stderr``
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1023 :func:`~contextlib.redirect_stdout`) makes it easier for utility scripts to
D3.4.rst687 The new :func:`contextlib.redirect_stdout` context manager makes it easier
/external/python/cpython3/Misc/
DHISTORY3462 - Issue #19403: contextlib.redirect_stdout is now reentrant
3511 implementations of the new contextlib.redirect_stdout and
3815 - Issue #15805: Add contextlib.redirect_stdout().