From 830c2fb089a8e09ba7ff2c77868636a3ecb83311 Mon Sep 17 00:00:00 2001 From: Philip House Date: Fri, 16 Dec 2016 19:51:52 +0800 Subject: [PATCH] updating stderr to return type Any (#776) --- stdlib/3/subprocess.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/subprocess.pyi b/stdlib/3/subprocess.pyi index abfba248b..80ae03be5 100644 --- a/stdlib/3/subprocess.pyi +++ b/stdlib/3/subprocess.pyi @@ -11,7 +11,7 @@ if sys.version_info >= (3, 5): args = ... # type: Union[List, str] returncode = ... # type: int stdout = ... # type: Any - stderr = ... # type: Union[str, bytes] + stderr = ... # type: Any def __init__(self, args: Union[List, str], returncode: int, stdout: Union[str, bytes],