Correct Moshe's e-mail address

Point to PEP 100 for MAL's Unicode proposal
Fix URL for XML HOWTO
Bump version number
This commit is contained in:
Andrew M. Kuchling 2002-05-02 14:48:26 +00:00
parent 2a1598035d
commit 9546772ccd
1 changed files with 6 additions and 8 deletions

View File

@ -3,9 +3,9 @@
% $Id$ % $Id$
\title{What's New in Python 2.0} \title{What's New in Python 2.0}
\release{1.01} \release{1.02}
\author{A.M. Kuchling and Moshe Zadka} \author{A.M. Kuchling and Moshe Zadka}
\authoraddress{\email{akuchlin@mems-exchange.org}, \email{moshez@math.huji.ac.il} } \authoraddress{\email{akuchlin@mems-exchange.org}, \email{moshez@twistedmatrix.com} }
\begin{document} \begin{document}
\maketitle\tableofcontents \maketitle\tableofcontents
@ -152,11 +152,9 @@ The final interface for Unicode support was arrived at through
countless often-stormy discussions on the python-dev mailing list, and countless often-stormy discussions on the python-dev mailing list, and
mostly implemented by Marc-Andr\'e Lemburg, based on a Unicode string mostly implemented by Marc-Andr\'e Lemburg, based on a Unicode string
type implementation by Fredrik Lundh. A detailed explanation of the type implementation by Fredrik Lundh. A detailed explanation of the
interface is in the file \file{Misc/unicode.txt} in the Python source interface was written up as \pep{100}, ``Python Unicode Integration''.
distribution; it's also available on the Web at This article will simply cover the most significant points about the
\url{http://starship.python.net/crew/lemburg/unicode-proposal.txt}. Unicode interfaces.
This article will simply cover the most significant points about the Unicode
interfaces.
In Python source code, Unicode strings are written as In Python source code, Unicode strings are written as
\code{u"string"}. Arbitrary Unicode characters can be written using a \code{u"string"}. Arbitrary Unicode characters can be written using a
@ -1034,7 +1032,7 @@ parser.parse( 'hamlet.xml' )
\end{verbatim} \end{verbatim}
For more information, consult the Python documentation, or the XML For more information, consult the Python documentation, or the XML
HOWTO at \url{http://www.python.org/doc/howto/xml/}. HOWTO at \url{http://pyxml.sourceforge.net/topics/howto/xml-howto.html}.
\subsection{DOM Support} \subsection{DOM Support}