Files
typeshed/stdlib/2/spwd.pyi
Guido van Rossum cb97bb54c0 Move 2.7 to 2 (#635)
Closes #579.
2016-10-26 16:24:49 -07:00

16 lines
411 B
Python

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