spwd: move to 2and3 and add missing argument

This commit is contained in:
Jelle Zijlstra
2017-03-19 13:54:19 -07:00
committed by Łukasz Langa
parent 16babfdfda
commit 7448f23d9f

View File

@@ -1,15 +0,0 @@
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]: ...
def getspnam() -> struct_spwd: ...