diff options
author | Raymond Hettinger <python@rcn.com> | 2010-12-15 19:20:01 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-12-15 19:20:01 (GMT) |
commit | e434b3b68114a271d615848515f96de135e501b3 (patch) | |
tree | 9c8a0df9be99a9f31300759c7421c85e05b52433 | |
parent | d00862ac2715b35cb3309b10a1b75d060ea8b148 (diff) | |
download | cpython-e434b3b68114a271d615848515f96de135e501b3.zip cpython-e434b3b68114a271d615848515f96de135e501b3.tar.gz cpython-e434b3b68114a271d615848515f96de135e501b3.tar.bz2 |
Add intro to the changed modules section.
-rw-r--r-- | Doc/whatsnew/3.2.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 5c50c2f..73ef9af 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -515,6 +515,20 @@ Some smaller changes made to the core Python language are: New, Improved, and Deprecated Modules ===================================== +Python's standard library is now receiving significant maintenance efforts +and quality improvements. + +The biggest news for Python 3.2 is that the :mod:`email` package and +:mod:`nntplib` modules now work correctly with Python 3.2's bytes/text model. +For the first time, there is correct handling of inputs with mixed encodings. + +Another significant win is the addition of substantially better support for +*SSL* connections and security certificates. + +In addition, many more functions and classes now have a :term:`context manager` +to support convenient and reliable resource clean-up using the +:keyword:`with`-statement. + email ----- |