From 0e6ba447d240b1f3b749da61cad1538b06bfe896 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Mon, 21 Sep 2015 08:29:25 -0700 Subject: [PATCH] add spwd.pyi --- builtins/2.7/spwd.pyi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 builtins/2.7/spwd.pyi diff --git a/builtins/2.7/spwd.pyi b/builtins/2.7/spwd.pyi new file mode 100644 index 000000000..ee09838af --- /dev/null +++ b/builtins/2.7/spwd.pyi @@ -0,0 +1,15 @@ +from typing import List + +class struct_spwd(object): + sp_nam = ... # type: str + sp_pwd = ... # type: str + sp_lstchg = ... # type: int + sp_min = ... # type: int + sp_max = ... # type: int + sp_warn = ... # type: int + sp_inact = ... # type: int + sp_expire = ... # type: int + sp_flag = ... # type: int + +def getspall() -> List[struct_spwd]: pass +def getspnam() -> struct_spwd: pass