From b873894e169b0b15742eb8931f5320347b787dcc Mon Sep 17 00:00:00 2001 From: Rebecca Chen Date: Wed, 14 Aug 2019 18:14:30 -0700 Subject: [PATCH] Fix a typo (self -> cls) in stdlib/2/subprocess.pyi. (#3185) --- stdlib/2/subprocess.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2/subprocess.pyi b/stdlib/2/subprocess.pyi index 0c693a985..e4ffc3db3 100644 --- a/stdlib/2/subprocess.pyi +++ b/stdlib/2/subprocess.pyi @@ -82,7 +82,7 @@ class Popen(Generic[_T]): pid = 0 returncode = 0 - def __new__(self, + def __new__(cls, args: _CMD, bufsize: int = ..., executable: Optional[_TXT] = ...,