diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-01 01:41:06 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-01 01:41:06 +0100 |
| commit | a12c7cb40d924a899fcc04ebfd076589d7d64a14 (patch) | |
| tree | 4625ffaf43d1f7648bafe72bba66fc1e67a3213d /asyncio/subprocess.py | |
| parent | c68a68e69e695024b18be716dd50558ed3e691e9 (diff) | |
| download | trollius-git-a12c7cb40d924a899fcc04ebfd076589d7d64a14.tar.gz | |
Fix typo in __all__ of subprocess.py
Diffstat (limited to 'asyncio/subprocess.py')
| -rw-r--r-- | asyncio/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asyncio/subprocess.py b/asyncio/subprocess.py index 18b8b0a..60ef3b6 100644 --- a/asyncio/subprocess.py +++ b/asyncio/subprocess.py @@ -1,5 +1,5 @@ __all__ = ['create_subprocess_exec', 'create_subprocess_shell', - 'PIPE' 'STDOUT', 'DEVNULL'] + 'PIPE', 'STDOUT', 'DEVNULL'] import collections import subprocess |
