Staging
v0.5.1
https://github.com/python/cpython
Revision ce0f33d04528fcafc673a8707871f8430d8f7ce8 authored by Bo Bayles on 30 January 2018, 06:40:39 UTC, committed by Gregory P. Smith on 30 January 2018, 06:40:39 UTC
Add "capture_output=True" option to subprocess.run, this is equivalent to
setting stdout=PIPE, stderr=PIPE but is much more readable.
1 parent 9544180
Raw File
Tip revision: ce0f33d04528fcafc673a8707871f8430d8f7ce8 authored by Bo Bayles on 30 January 2018, 06:40:39 UTC
bpo-32102 Add "capture_output=True" to subprocess.run (GH-5149)
Tip revision: ce0f33d
contextvars.py
from _contextvars import Context, ContextVar, Token, copy_context


__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')
back to top