cpython: asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written
http://hg.python.org/cpython/rev/1b09dcd39f76 changeset: 88846:1b09dcd39f76 user: Victor Stinner <victor.stinner@gmail.com> date: Fri Jan 31 12:28:30 2014 +0100 summary: asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written by Vajrasky Kok. files: Lib/asyncio/base_events.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -557,7 +557,7 @@ if universal_newlines: raise ValueError("universal_newlines must be False") if not shell: - raise ValueError("shell must be False") + raise ValueError("shell must be True") if bufsize != 0: raise ValueError("bufsize must be 0") protocol = protocol_factory() -- Repository URL: http://hg.python.org/cpython
participants (1)
-
victor.stinner