Fix a typo (self -> cls) in stdlib/2/subprocess.pyi. (#3185)

This commit is contained in:
Rebecca Chen
2019-08-14 18:14:30 -07:00
committed by Jelle Zijlstra
parent 1edd6cd8a8
commit b873894e16

View File

@@ -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] = ...,