parent
dbd55b3737
commit
29001ff234
|
@ -8,10 +8,11 @@
|
||||||
This module provides access to the \UNIX{} user account and password
|
This module provides access to the \UNIX{} user account and password
|
||||||
database. It is available on all \UNIX{} versions.
|
database. It is available on all \UNIX{} versions.
|
||||||
|
|
||||||
Password database entries are reported as 7-tuples containing the
|
Password database entries are reported as a tuple-like object, whose
|
||||||
following items from the password database (see \code{<pwd.h>}), in order:
|
attributes correspond to the members of the \code{passwd} structure
|
||||||
|
(Attribute field below, see \code{<pwd.h>}):
|
||||||
|
|
||||||
\begin{tableiii}{r|l|l}{textrm}{Index}{Field}{Meaning}
|
\begin{tableiii}{r|l|l}{textrm}{Index}{Attribute}{Meaning}
|
||||||
\lineiii{0}{\code{pw_name}}{Login name}
|
\lineiii{0}{\code{pw_name}}{Login name}
|
||||||
\lineiii{1}{\code{pw_passwd}}{Optional encrypted password}
|
\lineiii{1}{\code{pw_passwd}}{Optional encrypted password}
|
||||||
\lineiii{2}{\code{pw_uid}}{Numerical user ID}
|
\lineiii{2}{\code{pw_uid}}{Numerical user ID}
|
||||||
|
|
|
@ -17,6 +17,8 @@ Core and builtins
|
||||||
|
|
||||||
Extension modules
|
Extension modules
|
||||||
|
|
||||||
|
- pwd and grp return enhanced tuples now, with symbolic field names.
|
||||||
|
|
||||||
- array.array is now a type object. A new format character
|
- array.array is now a type object. A new format character
|
||||||
'u' indicates Py_UNICODE arrays. For those, .tounicode and
|
'u' indicates Py_UNICODE arrays. For those, .tounicode and
|
||||||
.fromunicode methods are available. Arrays now support __iadd__
|
.fromunicode methods are available. Arrays now support __iadd__
|
||||||
|
|
Loading…
Reference in New Issue