From 7448f23d9f9128dbaaa889b205591c94db92e45a Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sun, 19 Mar 2017 13:54:19 -0700 Subject: [PATCH] spwd: move to 2and3 and add missing argument --- stdlib/{2 => 2and3}/spwd.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename stdlib/{2 => 2and3}/spwd.pyi (89%) diff --git a/stdlib/2/spwd.pyi b/stdlib/2and3/spwd.pyi similarity index 89% rename from stdlib/2/spwd.pyi rename to stdlib/2and3/spwd.pyi index ec60e1fbf..ca77abd37 100644 --- a/stdlib/2/spwd.pyi +++ b/stdlib/2and3/spwd.pyi @@ -12,4 +12,4 @@ class struct_spwd(object): sp_flag = ... # type: int def getspall() -> List[struct_spwd]: ... -def getspnam() -> struct_spwd: ... +def getspnam(name: str) -> struct_spwd: ...