add spwd.pyi

This commit is contained in:
Matthias Kramm
2015-09-21 08:29:25 -07:00
parent 14cbfb0dea
commit 0e6ba447d2

15
builtins/2.7/spwd.pyi Normal file
View File

@@ -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