summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-10-23 23:54:57 (GMT)
committerGuido van Rossum <guido@python.org>2003-10-23 23:54:57 (GMT)
commit16b9fa8db30f6657fa3fb73724cc3d3f1432c16d (patch)
treea616fb75c8790623bf3397dd58de6ba811261515 /Misc
parent50a25709f2693cbd8953d5bc0cf084ec03aa1e7b (diff)
downloadcpython-16b9fa8db30f6657fa3fb73724cc3d3f1432c16d.zip
cpython-16b9fa8db30f6657fa3fb73724cc3d3f1432c16d.tar.gz
cpython-16b9fa8db30f6657fa3fb73724cc3d3f1432c16d.tar.bz2
- 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.)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 203972d..a53fdaf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.