diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-06-20 13:11:29 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-06-20 13:11:29 (GMT) |
commit | 7c4e79c9eb82c7adabee7c4d6ce06b783d5ece76 (patch) | |
tree | c98ddab407062c41643a33a2a35590f04e59aba7 | |
parent | b1992d0ec6fd8795fd4d6951c3840d8ba334f886 (diff) | |
download | cpython-7c4e79c9eb82c7adabee7c4d6ce06b783d5ece76.zip cpython-7c4e79c9eb82c7adabee7c4d6ce06b783d5ece76.tar.gz cpython-7c4e79c9eb82c7adabee7c4d6ce06b783d5ece76.tar.bz2 |
Minor edits and rearrangements; markup fix
-rw-r--r-- | Doc/whatsnew/whatsnew25.tex | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index b78bd94..a95c195 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -2,7 +2,6 @@ \usepackage{distutils} % $Id$ -% wsgiref section % Fix XXX comments % Count up the patches and bugs @@ -19,18 +18,13 @@ This article explains the new features in Python 2.5. The final release of Python 2.5 is scheduled for August 2006; \pep{356} describes the planned release schedule. -Comments, suggestions, and error reports are welcome; please e-mail them -to the author or open a bug in the Python bug tracker. - -% XXX Compare with previous release in 2 - 3 sentences here. -The changes in Python 2.5 are an interesting mix of language and library -changes. The library changes -will be more important to Python's user community, I think, -because several widely-useful packages were added to the standard library; -the additions include -ElementTree for XML processing (section~\ref{module-etree}), -the SQLite database module (section~\ref{module-sqlite}), -and the \module{ctypes} module for calling C functions (\section~\ref{module-ctypes}). +The changes in Python 2.5 are an interesting mix of language and +library improvements. The library enhancements will be more important +to Python's user community, I think, because several widely-useful +packages were added. New modules include ElementTree for XML +processing (section~\ref{module-etree}), the SQLite database module +(section~\ref{module-sqlite}), and the \module{ctypes} module for +calling C functions (section~\ref{module-ctypes}). The language changes are of middling significance. Some pleasant new features were added, but most of them aren't features that you'll use @@ -45,15 +39,17 @@ improvements are worthwhile, but they're improvements to one specific language feature or another; none of them are broad modifications to Python's semantics. - -This article doesn't attempt to be a complete specification of the new -features, but instead is a brief introduction to each new feature. -For full details, you should refer to the documentation for Python -2.5. +This article doesn't try to be a complete specification of the new +features; instead changes are briefly introduced using helpful +examples. For full details, you should always refer to the +documentation for Python 2.5. % XXX add hyperlink when the documentation becomes available online. If you want to understand the complete implementation and design rationale, refer to the PEP for a particular new feature. +Comments, suggestions, and error reports for this document are +welcome; please e-mail them to the author or open a bug in the Python +bug tracker. %====================================================================== \section{PEP 308: Conditional Expressions\label{pep-308}} |