diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-29 23:16:31 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-29 23:16:31 (GMT) |
| commit | 49b74d1a91e3bcfe26c34e12b209b460fda8354c (patch) | |
| tree | d8bfc3b90093e79ed3eb77b14cce03bf994555ad /Lib/asyncio/base_subprocess.py | |
| parent | 698a9bd3ba2a01664000668433254ddbb7b52c3f (diff) | |
| parent | 1241ecc21bbb3f86734a3071b93514a12dd1ee23 (diff) | |
| download | cpython-49b74d1a91e3bcfe26c34e12b209b460fda8354c.zip cpython-49b74d1a91e3bcfe26c34e12b209b460fda8354c.tar.gz cpython-49b74d1a91e3bcfe26c34e12b209b460fda8354c.tar.bz2 | |
Merge 3.4 (asyncio)
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 001f9b8..70676ab 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.""" |
