Module spwd :: Class struct_spwd
[hide private]
[frames] | no frames]

type struct_spwd

object --+
         |
        struct_spwd

spwd.struct_spwd: Results from getsp*() routines.

This object may be accessed either as a 9-tuple of
  (sp_nam,sp_pwd,sp_lstchg,sp_min,sp_max,sp_warn,sp_inact,sp_expire,sp_flag)
or via the object attributes as named in the above tuple.

Instance Methods [hide private]
 
__add__(x, y)
x+y
 
__contains__(x, y)
y in x
 
__eq__(x, y)
x==y
 
__ge__(x, y)
x>=y
 
__getitem__(x, y)
x[y]
 
__getslice__(x, i, j)
x[i:j]
 
__gt__(x, y)
x>y
 
__hash__(x)
hash(x)
 
__le__(x, y)
x<=y
 
__len__(x)
len(x)
 
__lt__(x, y)
x<y
 
__mul__(x, n)
x*n
 
__ne__(x, y)
x!=y
a new object with type S, a subtype of T
__new__(T, S, ...)
 
__reduce__(...)
 
__repr__(x)
repr(x)
 
__rmul__(x, n)
n*x
Class Variables [hide private]
  n_fields = 9
  n_sequence_fields = 9
  n_unnamed_fields = 0
Properties [hide private]
  sp_expire
#days since 1970-01-01 until account is disabled
  sp_flag
reserved
  sp_inact
#days after pw expires until account is blocked
  sp_lstchg
date of last change
  sp_max
max #days between changes
  sp_min
min #days between changes
  sp_nam
login name
  sp_pwd
encrypted password
  sp_warn
#days before pw expires to warn user about it
Method Details [hide private]

__getslice__(x, i, j)
(Slicling operator)

 

x[i:j]

Use of negative indices is not supported.

__hash__(x)
(Hashing function)

 

hash(x)

Overrides: object.__hash__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__reduce__(...)

 
Overrides: object.__reduce__
(inherited documentation)

__repr__(x)
(Representation operator)

 

repr(x)

Overrides: object.__repr__