diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-30 00:16:14 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-30 00:16:14 +0100 |
commit | b010e17aa67edfa97618893f0539ffc8802d1982 (patch) | |
tree | 12cef9e9c82c0e1d6c8dc0ff63ee28fa6588e3da /Lib/asyncio/base_subprocess.py | |
parent | 4f5e85a5e0f3e40c84bfd9f25919aa2d459ec243 (diff) | |
download | cpython-b010e17aa67edfa97618893f0539ffc8802d1982.tar.gz |
Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private
Diffstat (limited to 'Lib/asyncio/base_subprocess.py')
-rw-r--r-- | Lib/asyncio/base_subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py index 001f9b8c24..70676ab3ff 100644 --- a/Lib/asyncio/base_subprocess.py +++ b/Lib/asyncio/base_subprocess.py @@ -208,7 +208,7 @@ class BaseSubprocessTransport(transports.SubprocessTransport): waiter.set_result(returncode) self._exit_waiters = None - def wait(self): + def _wait(self): """Wait until the process exit and return the process return code. This method is a coroutine.""" |