Files
typeshed/builtins/2.7/pwd.pyi
Matthias Kramm 8624f88996 add pwd.pyi
2015-09-17 15:12:56 -07:00

16 lines
481 B
Python

def getpwall() -> list<struct_passwd>
def getpwnam(name:str) -> struct_passwd
def getpwuid(uid:int) -> struct_passwd
class struct_passwd(tuple): ...
n_fields = ... # type: int
n_sequence_fields = ... # type: int
n_unnamed_fields = ... # type: int
pw_dir = ... # type: str
pw_name = ... # type: str
pw_passwd = ... # type: str
pw_shell = ... # type: str
pw_gecos = ... # type: str
pw_gid = ... # type: int
pw_uid = ... # type: int