- The pwd module incorrectly advertised its struct type as

struct_pwent; this has been renamed to struct_passwd.  (The old name
  is still supported for backwards compatibility.)
This commit is contained in:
Guido van Rossum 2003-10-23 23:54:57 +00:00
parent 50a25709f2
commit 16b9fa8db3
2 changed files with 6 additions and 0 deletions

View File

@ -47,6 +47,10 @@ Core and builtins
Extension modules
-----------------
- The pwd module incorrectly advertised its struct type as
struct_pwent; this has been renamed to struct_passwd. (The old name
is still supported for backwards compatibility.)
- The xml.parsers.expat module now provides Expat 1.95.7.
- socket.IPPROTO_IPV6 was added.

View File

@ -184,5 +184,7 @@ initpwd(void)
PyStructSequence_InitType(&StructPwdType, &struct_pwd_type_desc);
Py_INCREF((PyObject *) &StructPwdType);
PyModule_AddObject(m, "struct_passwd", (PyObject *) &StructPwdType);
/* And for b/w compatibility (this was defined by mistake): */
PyModule_AddObject(m, "struct_pwent", (PyObject *) &StructPwdType);
}