From a571ad5c9a8679f27b7315c4f9b143165d5170c7 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 1 Feb 2014 22:25:41 +0100 Subject: Restore __all__ of asyncio.subprocess --- asyncio/__init__.py | 4 ++-- asyncio/subprocess.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/asyncio/__init__.py b/asyncio/__init__.py index e5a4753..3df2f80 100644 --- a/asyncio/__init__.py +++ b/asyncio/__init__.py @@ -24,7 +24,7 @@ from .locks import * from .protocols import * from .queues import * from .streams import * -from .subprocess import create_subprocess_exec, create_subprocess_shell +from .subprocess import * from .tasks import * from .transports import * @@ -40,6 +40,6 @@ __all__ = (events.__all__ + protocols.__all__ + queues.__all__ + streams.__all__ + - ['create_subprocess_exec', 'create_subprocess_shell'] + + subprocess.__all__ + tasks.__all__ + transports.__all__) diff --git a/asyncio/subprocess.py b/asyncio/subprocess.py index 60ef3b6..6c4ded3 100644 --- a/asyncio/subprocess.py +++ b/asyncio/subprocess.py @@ -1,5 +1,4 @@ -__all__ = ['create_subprocess_exec', 'create_subprocess_shell', - 'PIPE', 'STDOUT', 'DEVNULL'] +__all__ = ['create_subprocess_exec', 'create_subprocess_shell'] import collections import subprocess -- cgit v1.2.1