[Python-checkins] r45729 - python/trunk/Doc/whatsnew/whatsnew25.tex

andrew.kuchling python-checkins at python.org
Wed Apr 26 14:23:40 CEST 2006


Author: andrew.kuchling
Date: Wed Apr 26 14:23:39 2006
New Revision: 45729

Modified:
   python/trunk/Doc/whatsnew/whatsnew25.tex
Log:
Add labels to all sections

Modified: python/trunk/Doc/whatsnew/whatsnew25.tex
==============================================================================
--- python/trunk/Doc/whatsnew/whatsnew25.tex	(original)
+++ python/trunk/Doc/whatsnew/whatsnew25.tex	Wed Apr 26 14:23:39 2006
@@ -1063,7 +1063,7 @@
 
 
 %======================================================================
-\section{Other Language Changes}
+\section{Other Language Changes\label{other-lang}}
 
 Here are all of the changes that Python 2.5 makes to the core Python
 language.
@@ -1139,7 +1139,7 @@
 
 
 %======================================================================
-\subsection{Interactive Interpreter Changes}
+\subsection{Interactive Interpreter Changes\label{interactive}}
 
 In the interactive interpreter, \code{quit} and \code{exit} 
 have long been strings so that new users get a somewhat helpful message
@@ -1157,7 +1157,7 @@
 
 
 %======================================================================
-\subsection{Optimizations}
+\subsection{Optimizations\label{opts}}
 
 \begin{itemize}
 
@@ -1184,7 +1184,7 @@
 
 
 %======================================================================
-\section{New, Improved, and Removed Modules}
+\section{New, Improved, and Removed Modules\label{modules}}
 
 The standard library received many enhancements and bug fixes in
 Python 2.5.  Here's a partial list of the most notable changes, sorted
@@ -1521,7 +1521,7 @@
 
 
 %======================================================================
-\subsection{The ctypes package}
+\subsection{The ctypes package\label{module-ctypes}}
 
 The \module{ctypes} package, written by Thomas Heller, has been added 
 to the standard library.  \module{ctypes} lets you call arbitrary functions 
@@ -1603,7 +1603,7 @@
 
 
 %======================================================================
-\subsection{The ElementTree package}
+\subsection{The ElementTree package\label{module-etree}}
 
 A subset of Fredrik Lundh's ElementTree library for processing XML has
 been added to the standard library as \module{xmlcore.etree}.  The
@@ -1714,7 +1714,7 @@
 
 
 %======================================================================
-\subsection{The hashlib package}
+\subsection{The hashlib package\label{module-hashlib}}
 
 A new \module{hashlib} module, written by Gregory P. Smith, 
 has been added to replace the
@@ -1762,7 +1762,7 @@
 
 
 %======================================================================
-\subsection{The sqlite3 package}
+\subsection{The sqlite3 package\label{module-sqlite}}
 
 The pysqlite module (\url{http://www.pysqlite.org}), a wrapper for the
 SQLite embedded database, has been added to the standard library under
@@ -1876,7 +1876,7 @@
 
 
 % ======================================================================
-\section{Build and C API Changes}
+\section{Build and C API Changes\label{build-api}}
 
 Changes to Python's build process and to the C API include:
 
@@ -1954,7 +1954,7 @@
 
 
 %======================================================================
-\subsection{Port-Specific Changes}
+\subsection{Port-Specific Changes\label{ports}}
 
 \begin{itemize}
 
@@ -2018,7 +2018,7 @@
 
 
 %======================================================================
-\section{Porting to Python 2.5}
+\section{Porting to Python 2.5\label{porting}}
 
 This section lists previously described changes that may require
 changes to your code:


More information about the Python-checkins mailing list