summaryrefslogtreecommitdiff
path: root/asyncio/subprocess.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-01 01:41:06 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-02-01 01:41:06 +0100
commita12c7cb40d924a899fcc04ebfd076589d7d64a14 (patch)
tree4625ffaf43d1f7648bafe72bba66fc1e67a3213d /asyncio/subprocess.py
parentc68a68e69e695024b18be716dd50558ed3e691e9 (diff)
downloadtrollius-git-a12c7cb40d924a899fcc04ebfd076589d7d64a14.tar.gz
Fix typo in __all__ of subprocess.py
Diffstat (limited to 'asyncio/subprocess.py')
-rw-r--r--asyncio/subprocess.py2
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