2002-03-26 15:17:43 -04:00
|
|
|
\documentclass{howto}
|
2003-02-07 10:52:18 -04:00
|
|
|
\usepackage{distutils}
|
2002-03-26 22:29:48 -04:00
|
|
|
% $Id$
|
|
|
|
|
|
|
|
\title{What's New in Python 2.3}
|
2003-10-23 15:08:03 -03:00
|
|
|
\release{1.01}
|
2003-01-17 18:50:10 -04:00
|
|
|
\author{A.M.\ Kuchling}
|
2004-01-02 02:57:50 -04:00
|
|
|
\authoraddress{
|
|
|
|
\strong{Python Software Foundation}\\
|
|
|
|
Email: \email{amk@amk.ca}
|
|
|
|
}
|
2002-03-26 15:17:43 -04:00
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
|
|
\tableofcontents
|
|
|
|
|
2003-07-29 09:06:32 -03:00
|
|
|
This article explains the new features in Python 2.3. Python 2.3 was
|
|
|
|
released on July 29, 2003.
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2003-07-17 23:12:16 -03:00
|
|
|
The main themes for Python 2.3 are polishing some of the features
|
|
|
|
added in 2.2, adding various small but useful enhancements to the core
|
|
|
|
language, and expanding the standard library. The new object model
|
|
|
|
introduced in the previous version has benefited from 18 months of
|
|
|
|
bugfixes and from optimization efforts that have improved the
|
|
|
|
performance of new-style classes. A few new built-in functions have
|
|
|
|
been added such as \function{sum()} and \function{enumerate()}. The
|
|
|
|
\keyword{in} operator can now be used for substring searches (e.g.
|
|
|
|
\code{"ab" in "abc"} returns \constant{True}).
|
|
|
|
|
|
|
|
Some of the many new library features include Boolean, set, heap, and
|
|
|
|
date/time data types, the ability to import modules from ZIP-format
|
|
|
|
archives, metadata support for the long-awaited Python catalog, an
|
|
|
|
updated version of IDLE, and modules for logging messages, wrapping
|
|
|
|
text, parsing CSV files, processing command-line options, using BerkeleyDB
|
|
|
|
databases... the list of new and enhanced modules is lengthy.
|
|
|
|
|
2002-03-26 22:29:48 -04:00
|
|
|
This article doesn't attempt to provide a complete specification of
|
|
|
|
the new features, but instead provides a convenient overview. For
|
|
|
|
full details, you should refer to the documentation for Python 2.3,
|
2003-02-07 10:52:18 -04:00
|
|
|
such as the \citetitle[../lib/lib.html]{Python Library Reference} and
|
|
|
|
the \citetitle[../ref/ref.html]{Python Reference Manual}. If you want
|
2003-07-16 11:44:12 -03:00
|
|
|
to understand the complete implementation and design rationale,
|
|
|
|
refer to the PEP for a particular new feature.
|
2002-03-26 22:29:48 -04:00
|
|
|
|
|
|
|
|
2002-08-19 22:34:06 -03:00
|
|
|
%======================================================================
|
|
|
|
\section{PEP 218: A Standard Set Datatype}
|
|
|
|
|
|
|
|
The new \module{sets} module contains an implementation of a set
|
|
|
|
datatype. The \class{Set} class is for mutable sets, sets that can
|
|
|
|
have members added and removed. The \class{ImmutableSet} class is for
|
2002-12-31 14:34:54 -04:00
|
|
|
sets that can't be modified, and instances of \class{ImmutableSet} can
|
|
|
|
therefore be used as dictionary keys. Sets are built on top of
|
|
|
|
dictionaries, so the elements within a set must be hashable.
|
2002-08-19 22:34:06 -03:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Here's a simple example:
|
2002-08-19 22:34:06 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import sets
|
|
|
|
>>> S = sets.Set([1,2,3])
|
|
|
|
>>> S
|
|
|
|
Set([1, 2, 3])
|
|
|
|
>>> 1 in S
|
|
|
|
True
|
|
|
|
>>> 0 in S
|
|
|
|
False
|
|
|
|
>>> S.add(5)
|
|
|
|
>>> S.remove(3)
|
|
|
|
>>> S
|
|
|
|
Set([1, 2, 5])
|
2002-11-13 10:59:06 -04:00
|
|
|
>>>
|
2002-08-19 22:34:06 -03:00
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The union and intersection of sets can be computed with the
|
2003-07-16 11:44:12 -03:00
|
|
|
\method{union()} and \method{intersection()} methods; an alternative
|
|
|
|
notation uses the bitwise operators \code{\&} and \code{|}.
|
2002-08-19 22:34:06 -03:00
|
|
|
Mutable sets also have in-place versions of these methods,
|
|
|
|
\method{union_update()} and \method{intersection_update()}.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> S1 = sets.Set([1,2,3])
|
|
|
|
>>> S2 = sets.Set([4,5,6])
|
|
|
|
>>> S1.union(S2)
|
|
|
|
Set([1, 2, 3, 4, 5, 6])
|
|
|
|
>>> S1 | S2 # Alternative notation
|
|
|
|
Set([1, 2, 3, 4, 5, 6])
|
2002-11-13 10:59:06 -04:00
|
|
|
>>> S1.intersection(S2)
|
2002-08-19 22:34:06 -03:00
|
|
|
Set([])
|
|
|
|
>>> S1 & S2 # Alternative notation
|
|
|
|
Set([])
|
|
|
|
>>> S1.union_update(S2)
|
|
|
|
>>> S1
|
|
|
|
Set([1, 2, 3, 4, 5, 6])
|
2002-11-13 10:59:06 -04:00
|
|
|
>>>
|
2002-08-19 22:34:06 -03:00
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
It's also possible to take the symmetric difference of two sets. This
|
|
|
|
is the set of all elements in the union that aren't in the
|
2003-07-16 11:44:12 -03:00
|
|
|
intersection. Another way of putting it is that the symmetric
|
|
|
|
difference contains all elements that are in exactly one
|
2002-12-31 14:34:54 -04:00
|
|
|
set. Again, there's an alternative notation (\code{\^}), and an
|
|
|
|
in-place version with the ungainly name
|
2002-08-19 22:34:06 -03:00
|
|
|
\method{symmetric_difference_update()}.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> S1 = sets.Set([1,2,3,4])
|
|
|
|
>>> S2 = sets.Set([3,4,5,6])
|
|
|
|
>>> S1.symmetric_difference(S2)
|
|
|
|
Set([1, 2, 5, 6])
|
|
|
|
>>> S1 ^ S2
|
|
|
|
Set([1, 2, 5, 6])
|
|
|
|
>>>
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
There are also \method{issubset()} and \method{issuperset()} methods
|
2003-02-10 15:24:50 -04:00
|
|
|
for checking whether one set is a subset or superset of another:
|
2002-08-19 22:34:06 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> S1 = sets.Set([1,2,3])
|
|
|
|
>>> S2 = sets.Set([2,3])
|
|
|
|
>>> S2.issubset(S1)
|
|
|
|
True
|
|
|
|
>>> S1.issubset(S2)
|
|
|
|
False
|
|
|
|
>>> S1.issuperset(S2)
|
|
|
|
True
|
|
|
|
>>>
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{218}{Adding a Built-In Set Object Type}{PEP written by Greg V. Wilson.
|
|
|
|
Implemented by Greg V. Wilson, Alex Martelli, and GvR.}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-04-01 15:28:09 -04:00
|
|
|
%======================================================================
|
2002-05-07 18:01:16 -03:00
|
|
|
\section{PEP 255: Simple Generators\label{section-generators}}
|
2002-04-01 15:28:09 -04:00
|
|
|
|
|
|
|
In Python 2.2, generators were added as an optional feature, to be
|
|
|
|
enabled by a \code{from __future__ import generators} directive. In
|
|
|
|
2.3 generators no longer need to be specially enabled, and are now
|
|
|
|
always present; this means that \keyword{yield} is now always a
|
|
|
|
keyword. The rest of this section is a copy of the description of
|
|
|
|
generators from the ``What's New in Python 2.2'' document; if you read
|
2002-12-31 14:34:54 -04:00
|
|
|
it back when Python 2.2 came out, you can skip the rest of this section.
|
2002-04-01 15:28:09 -04:00
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
You're doubtless familiar with how function calls work in Python or C.
|
|
|
|
When you call a function, it gets a private namespace where its local
|
2002-04-01 15:28:09 -04:00
|
|
|
variables are created. When the function reaches a \keyword{return}
|
|
|
|
statement, the local variables are destroyed and the resulting value
|
|
|
|
is returned to the caller. A later call to the same function will get
|
2002-05-07 18:01:16 -03:00
|
|
|
a fresh new set of local variables. But, what if the local variables
|
2002-04-01 15:28:09 -04:00
|
|
|
weren't thrown away on exiting a function? What if you could later
|
|
|
|
resume the function where it left off? This is what generators
|
|
|
|
provide; they can be thought of as resumable functions.
|
|
|
|
|
|
|
|
Here's the simplest example of a generator function:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
def generate_ints(N):
|
|
|
|
for i in range(N):
|
|
|
|
yield i
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
A new keyword, \keyword{yield}, was introduced for generators. Any
|
|
|
|
function containing a \keyword{yield} statement is a generator
|
|
|
|
function; this is detected by Python's bytecode compiler which
|
2002-11-13 10:59:06 -04:00
|
|
|
compiles the function specially as a result.
|
2002-04-01 15:28:09 -04:00
|
|
|
|
|
|
|
When you call a generator function, it doesn't return a single value;
|
|
|
|
instead it returns a generator object that supports the iterator
|
|
|
|
protocol. On executing the \keyword{yield} statement, the generator
|
|
|
|
outputs the value of \code{i}, similar to a \keyword{return}
|
|
|
|
statement. The big difference between \keyword{yield} and a
|
|
|
|
\keyword{return} statement is that on reaching a \keyword{yield} the
|
|
|
|
generator's state of execution is suspended and local variables are
|
|
|
|
preserved. On the next call to the generator's \code{.next()} method,
|
|
|
|
the function will resume executing immediately after the
|
|
|
|
\keyword{yield} statement. (For complicated reasons, the
|
|
|
|
\keyword{yield} statement isn't allowed inside the \keyword{try} block
|
2003-01-17 18:50:10 -04:00
|
|
|
of a \keyword{try}...\keyword{finally} statement; read \pep{255} for a full
|
2002-04-01 15:28:09 -04:00
|
|
|
explanation of the interaction between \keyword{yield} and
|
|
|
|
exceptions.)
|
|
|
|
|
2003-01-17 18:50:10 -04:00
|
|
|
Here's a sample usage of the \function{generate_ints()} generator:
|
2002-04-01 15:28:09 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> gen = generate_ints(3)
|
|
|
|
>>> gen
|
|
|
|
<generator object at 0x8117f90>
|
|
|
|
>>> gen.next()
|
|
|
|
0
|
|
|
|
>>> gen.next()
|
|
|
|
1
|
|
|
|
>>> gen.next()
|
|
|
|
2
|
|
|
|
>>> gen.next()
|
|
|
|
Traceback (most recent call last):
|
2002-06-17 10:40:04 -03:00
|
|
|
File "stdin", line 1, in ?
|
|
|
|
File "stdin", line 2, in generate_ints
|
2002-04-01 15:28:09 -04:00
|
|
|
StopIteration
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
You could equally write \code{for i in generate_ints(5)}, or
|
|
|
|
\code{a,b,c = generate_ints(3)}.
|
|
|
|
|
|
|
|
Inside a generator function, the \keyword{return} statement can only
|
|
|
|
be used without a value, and signals the end of the procession of
|
|
|
|
values; afterwards the generator cannot return any further values.
|
|
|
|
\keyword{return} with a value, such as \code{return 5}, is a syntax
|
|
|
|
error inside a generator function. The end of the generator's results
|
|
|
|
can also be indicated by raising \exception{StopIteration} manually,
|
|
|
|
or by just letting the flow of execution fall off the bottom of the
|
|
|
|
function.
|
|
|
|
|
|
|
|
You could achieve the effect of generators manually by writing your
|
|
|
|
own class and storing all the local variables of the generator as
|
|
|
|
instance variables. For example, returning a list of integers could
|
|
|
|
be done by setting \code{self.count} to 0, and having the
|
|
|
|
\method{next()} method increment \code{self.count} and return it.
|
|
|
|
However, for a moderately complicated generator, writing a
|
|
|
|
corresponding class would be much messier.
|
|
|
|
\file{Lib/test/test_generators.py} contains a number of more
|
|
|
|
interesting examples. The simplest one implements an in-order
|
|
|
|
traversal of a tree using generators recursively.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
# A recursive generator that generates Tree leaves in in-order.
|
|
|
|
def inorder(t):
|
|
|
|
if t:
|
|
|
|
for x in inorder(t.left):
|
|
|
|
yield x
|
|
|
|
yield t.label
|
|
|
|
for x in inorder(t.right):
|
|
|
|
yield x
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Two other examples in \file{Lib/test/test_generators.py} produce
|
|
|
|
solutions for the N-Queens problem (placing $N$ queens on an $NxN$
|
|
|
|
chess board so that no queen threatens another) and the Knight's Tour
|
|
|
|
(a route that takes a knight to every square of an $NxN$ chessboard
|
2002-11-13 10:59:06 -04:00
|
|
|
without visiting any square twice).
|
2002-04-01 15:28:09 -04:00
|
|
|
|
|
|
|
The idea of generators comes from other programming languages,
|
|
|
|
especially Icon (\url{http://www.cs.arizona.edu/icon/}), where the
|
|
|
|
idea of generators is central. In Icon, every
|
|
|
|
expression and function call behaves like a generator. One example
|
|
|
|
from ``An Overview of the Icon Programming Language'' at
|
|
|
|
\url{http://www.cs.arizona.edu/icon/docs/ipd266.htm} gives an idea of
|
|
|
|
what this looks like:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
sentence := "Store it in the neighboring harbor"
|
|
|
|
if (i := find("or", sentence)) > 5 then write(i)
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
In Icon the \function{find()} function returns the indexes at which the
|
|
|
|
substring ``or'' is found: 3, 23, 33. In the \keyword{if} statement,
|
|
|
|
\code{i} is first assigned a value of 3, but 3 is less than 5, so the
|
|
|
|
comparison fails, and Icon retries it with the second value of 23. 23
|
|
|
|
is greater than 5, so the comparison now succeeds, and the code prints
|
|
|
|
the value 23 to the screen.
|
|
|
|
|
|
|
|
Python doesn't go nearly as far as Icon in adopting generators as a
|
2002-12-31 14:34:54 -04:00
|
|
|
central concept. Generators are considered part of the core
|
2002-04-01 15:28:09 -04:00
|
|
|
Python language, but learning or using them isn't compulsory; if they
|
|
|
|
don't solve any problems that you have, feel free to ignore them.
|
|
|
|
One novel feature of Python's interface as compared to
|
|
|
|
Icon's is that a generator's state is represented as a concrete object
|
|
|
|
(the iterator) that can be passed around to other functions or stored
|
|
|
|
in a data structure.
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{255}{Simple Generators}{Written by Neil Schemenauer, Tim
|
|
|
|
Peters, Magnus Lie Hetland. Implemented mostly by Neil Schemenauer
|
|
|
|
and Tim Peters, with other fixes from the Python Labs crew.}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2002-08-05 22:40:48 -03:00
|
|
|
%======================================================================
|
2002-08-22 13:51:08 -03:00
|
|
|
\section{PEP 263: Source Code Encodings \label{section-encodings}}
|
2002-08-05 22:40:48 -03:00
|
|
|
|
|
|
|
Python source files can now be declared as being in different
|
|
|
|
character set encodings. Encodings are declared by including a
|
|
|
|
specially formatted comment in the first or second line of the source
|
|
|
|
file. For example, a UTF-8 file can be declared with:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Without such an encoding declaration, the default encoding used is
|
2003-07-16 11:44:12 -03:00
|
|
|
7-bit ASCII. Executing or importing modules that contain string
|
|
|
|
literals with 8-bit characters and have no encoding declaration will result
|
2003-02-17 20:43:24 -04:00
|
|
|
in a \exception{DeprecationWarning} being signalled by Python 2.3; in
|
|
|
|
2.4 this will be a syntax error.
|
2002-08-05 22:40:48 -03:00
|
|
|
|
2003-02-17 20:43:24 -04:00
|
|
|
The encoding declaration only affects Unicode string literals, which
|
|
|
|
will be converted to Unicode using the specified encoding. Note that
|
|
|
|
Python identifiers are still restricted to ASCII characters, so you
|
|
|
|
can't have variable names that use characters outside of the usual
|
|
|
|
alphanumerics.
|
2002-08-05 22:40:48 -03:00
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{263}{Defining Python Source Code Encodings}{Written by
|
2003-05-07 14:00:35 -03:00
|
|
|
Marc-Andr\'e Lemburg and Martin von~L\"owis; implemented by Suzuki
|
|
|
|
Hisao and Martin von~L\"owis.}
|
2002-08-05 22:40:48 -03:00
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2003-07-17 23:12:16 -03:00
|
|
|
%======================================================================
|
|
|
|
\section{PEP 273: Importing Modules from Zip Archives}
|
|
|
|
|
|
|
|
The new \module{zipimport} module adds support for importing
|
|
|
|
modules from a ZIP-format archive. You don't need to import the
|
|
|
|
module explicitly; it will be automatically imported if a ZIP
|
|
|
|
archive's filename is added to \code{sys.path}. For example:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
amk@nyman:~/src/python$ unzip -l /tmp/example.zip
|
|
|
|
Archive: /tmp/example.zip
|
|
|
|
Length Date Time Name
|
|
|
|
-------- ---- ---- ----
|
|
|
|
8467 11-26-02 22:30 jwzthreading.py
|
|
|
|
-------- -------
|
|
|
|
8467 1 file
|
|
|
|
amk@nyman:~/src/python$ ./python
|
|
|
|
Python 2.3 (#1, Aug 1 2003, 19:54:32)
|
|
|
|
>>> import sys
|
|
|
|
>>> sys.path.insert(0, '/tmp/example.zip') # Add .zip file to front of path
|
|
|
|
>>> import jwzthreading
|
|
|
|
>>> jwzthreading.__file__
|
|
|
|
'/tmp/example.zip/jwzthreading.py'
|
|
|
|
>>>
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
An entry in \code{sys.path} can now be the filename of a ZIP archive.
|
|
|
|
The ZIP archive can contain any kind of files, but only files named
|
|
|
|
\file{*.py}, \file{*.pyc}, or \file{*.pyo} can be imported. If an
|
|
|
|
archive only contains \file{*.py} files, Python will not attempt to
|
|
|
|
modify the archive by adding the corresponding \file{*.pyc} file, meaning
|
|
|
|
that if a ZIP archive doesn't contain \file{*.pyc} files, importing may be
|
|
|
|
rather slow.
|
|
|
|
|
|
|
|
A path within the archive can also be specified to only import from a
|
|
|
|
subdirectory; for example, the path \file{/tmp/example.zip/lib/}
|
|
|
|
would only import from the \file{lib/} subdirectory within the
|
|
|
|
archive.
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{273}{Import Modules from Zip Archives}{Written by James C. Ahlstrom,
|
|
|
|
who also provided an implementation.
|
|
|
|
Python 2.3 follows the specification in \pep{273},
|
|
|
|
but uses an implementation written by Just van~Rossum
|
|
|
|
that uses the import hooks described in \pep{302}.
|
|
|
|
See section~\ref{section-pep302} for a description of the new import hooks.
|
|
|
|
}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
2002-10-04 19:34:11 -03:00
|
|
|
%======================================================================
|
2002-10-07 15:52:29 -03:00
|
|
|
\section{PEP 277: Unicode file name support for Windows NT}
|
2002-10-04 19:34:11 -03:00
|
|
|
|
2002-10-07 15:52:29 -03:00
|
|
|
On Windows NT, 2000, and XP, the system stores file names as Unicode
|
2002-10-09 09:11:10 -03:00
|
|
|
strings. Traditionally, Python has represented file names as byte
|
|
|
|
strings, which is inadequate because it renders some file names
|
2002-10-07 15:52:29 -03:00
|
|
|
inaccessible.
|
|
|
|
|
2002-10-09 09:11:10 -03:00
|
|
|
Python now allows using arbitrary Unicode strings (within the
|
|
|
|
limitations of the file system) for all functions that expect file
|
2002-12-31 14:34:54 -04:00
|
|
|
names, most notably the \function{open()} built-in function. If a Unicode
|
|
|
|
string is passed to \function{os.listdir()}, Python now returns a list
|
2002-10-09 09:11:10 -03:00
|
|
|
of Unicode strings. A new function, \function{os.getcwdu()}, returns
|
|
|
|
the current directory as a Unicode string.
|
2002-10-07 15:52:29 -03:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Byte strings still work as file names, and on Windows Python will
|
|
|
|
transparently convert them to Unicode using the \code{mbcs} encoding.
|
2002-10-07 15:52:29 -03:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Other systems also allow Unicode strings as file names but convert
|
|
|
|
them to byte strings before passing them to the system, which can
|
|
|
|
cause a \exception{UnicodeError} to be raised. Applications can test
|
|
|
|
whether arbitrary Unicode strings are supported as file names by
|
2003-02-03 11:16:15 -04:00
|
|
|
checking \member{os.path.supports_unicode_filenames}, a Boolean value.
|
2002-10-07 15:52:29 -03:00
|
|
|
|
2003-03-01 22:31:58 -04:00
|
|
|
Under MacOS, \function{os.listdir()} may now return Unicode filenames.
|
|
|
|
|
2002-10-07 15:52:29 -03:00
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{277}{Unicode file name support for Windows NT}{Written by Neil
|
2003-05-07 14:00:35 -03:00
|
|
|
Hodgson; implemented by Neil Hodgson, Martin von~L\"owis, and Mark
|
2002-10-07 15:52:29 -03:00
|
|
|
Hammond.}
|
|
|
|
|
|
|
|
\end{seealso}
|
2002-10-04 19:34:11 -03:00
|
|
|
|
|
|
|
|
2002-04-14 23:27:55 -03:00
|
|
|
%======================================================================
|
|
|
|
\section{PEP 278: Universal Newline Support}
|
|
|
|
|
2002-05-06 14:46:39 -03:00
|
|
|
The three major operating systems used today are Microsoft Windows,
|
2002-05-07 18:01:16 -03:00
|
|
|
Apple's Macintosh OS, and the various \UNIX\ derivatives. A minor
|
2003-07-16 11:44:12 -03:00
|
|
|
irritation of cross-platform work
|
|
|
|
is that these three platforms all use different characters
|
2002-12-31 14:34:54 -04:00
|
|
|
to mark the ends of lines in text files. \UNIX\ uses the linefeed
|
2003-07-16 11:44:12 -03:00
|
|
|
(ASCII character 10), MacOS uses the carriage return (ASCII
|
|
|
|
character 13), and Windows uses a two-character sequence of a
|
2002-12-31 14:34:54 -04:00
|
|
|
carriage return plus a newline.
|
2002-05-06 14:46:39 -03:00
|
|
|
|
|
|
|
Python's file objects can now support end of line conventions other
|
|
|
|
than the one followed by the platform on which Python is running.
|
2002-11-13 10:59:06 -04:00
|
|
|
Opening a file with the mode \code{'U'} or \code{'rU'} will open a file
|
2002-05-06 14:46:39 -03:00
|
|
|
for reading in universal newline mode. All three line ending
|
2002-11-13 10:59:06 -04:00
|
|
|
conventions will be translated to a \character{\e n} in the strings
|
2002-05-06 14:46:39 -03:00
|
|
|
returned by the various file methods such as \method{read()} and
|
2002-11-13 10:59:06 -04:00
|
|
|
\method{readline()}.
|
2002-05-06 14:46:39 -03:00
|
|
|
|
|
|
|
Universal newline support is also used when importing modules and when
|
|
|
|
executing a file with the \function{execfile()} function. This means
|
|
|
|
that Python modules can be shared between all three operating systems
|
|
|
|
without needing to convert the line-endings.
|
|
|
|
|
2003-07-16 11:44:12 -03:00
|
|
|
This feature can be disabled when compiling Python by specifying
|
|
|
|
the \longprogramopt{without-universal-newlines} switch when running Python's
|
2002-11-13 10:59:06 -04:00
|
|
|
\program{configure} script.
|
2002-04-14 23:27:55 -03:00
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\seepep{278}{Universal Newline Support}{Written
|
2002-04-14 23:27:55 -03:00
|
|
|
and implemented by Jack Jansen.}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
2002-05-10 18:00:05 -03:00
|
|
|
|
2002-04-03 18:44:47 -04:00
|
|
|
%======================================================================
|
2003-05-13 11:23:54 -03:00
|
|
|
\section{PEP 279: enumerate()\label{section-enumerate}}
|
2002-05-10 18:00:05 -03:00
|
|
|
|
|
|
|
A new built-in function, \function{enumerate()}, will make
|
|
|
|
certain loops a bit clearer. \code{enumerate(thing)}, where
|
|
|
|
\var{thing} is either an iterator or a sequence, returns a iterator
|
2003-07-16 00:26:31 -03:00
|
|
|
that will return \code{(0, \var{thing}[0])}, \code{(1,
|
|
|
|
\var{thing}[1])}, \code{(2, \var{thing}[2])}, and so forth.
|
2002-12-31 14:34:54 -04:00
|
|
|
|
2003-07-16 11:44:12 -03:00
|
|
|
A common idiom to change every element of a list looks like this:
|
2002-05-10 18:00:05 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
for i in range(len(L)):
|
|
|
|
item = L[i]
|
|
|
|
# ... compute some result based on item ...
|
|
|
|
L[i] = result
|
|
|
|
\end{verbatim}
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-05-10 18:00:05 -03:00
|
|
|
This can be rewritten using \function{enumerate()} as:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
for i, item in enumerate(L):
|
|
|
|
# ... compute some result based on item ...
|
|
|
|
L[i] = result
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\seepep{279}{The enumerate() built-in function}{Written
|
2002-12-31 14:34:54 -04:00
|
|
|
and implemented by Raymond D. Hettinger.}
|
2002-05-10 18:00:05 -03:00
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2002-11-14 10:14:16 -04:00
|
|
|
%======================================================================
|
2003-05-13 11:23:54 -03:00
|
|
|
\section{PEP 282: The logging Package}
|
2002-11-14 10:14:16 -04:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
A standard package for writing logs, \module{logging}, has been added
|
|
|
|
to Python 2.3. It provides a powerful and flexible mechanism for
|
2003-07-16 17:37:26 -03:00
|
|
|
generating logging output which can then be filtered and processed in
|
|
|
|
various ways. A configuration file written in a standard format can
|
|
|
|
be used to control the logging behavior of a program. Python
|
|
|
|
includes handlers that will write log records to
|
2002-12-31 14:34:54 -04:00
|
|
|
standard error or to a file or socket, send them to the system log, or
|
2003-07-16 17:37:26 -03:00
|
|
|
even e-mail them to a particular address; of course, it's also
|
2002-12-31 14:34:54 -04:00
|
|
|
possible to write your own handler classes.
|
2002-11-14 19:07:57 -04:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
The \class{Logger} class is the primary class.
|
2002-11-14 19:07:57 -04:00
|
|
|
Most application code will deal with one or more \class{Logger}
|
|
|
|
objects, each one used by a particular subsystem of the application.
|
|
|
|
Each \class{Logger} is identified by a name, and names are organized
|
|
|
|
into a hierarchy using \samp{.} as the component separator. For
|
|
|
|
example, you might have \class{Logger} instances named \samp{server},
|
|
|
|
\samp{server.auth} and \samp{server.network}. The latter two
|
2002-12-31 14:34:54 -04:00
|
|
|
instances are below \samp{server} in the hierarchy. This means that
|
|
|
|
if you turn up the verbosity for \samp{server} or direct \samp{server}
|
|
|
|
messages to a different handler, the changes will also apply to
|
|
|
|
records logged to \samp{server.auth} and \samp{server.network}.
|
|
|
|
There's also a root \class{Logger} that's the parent of all other
|
|
|
|
loggers.
|
2002-11-14 19:07:57 -04:00
|
|
|
|
|
|
|
For simple uses, the \module{logging} package contains some
|
|
|
|
convenience functions that always use the root log:
|
2002-11-14 10:14:16 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logging.debug('Debugging information')
|
|
|
|
logging.info('Informational message')
|
2003-02-19 09:46:18 -04:00
|
|
|
logging.warning('Warning:config file %s not found', 'server.conf')
|
2002-11-14 10:14:16 -04:00
|
|
|
logging.error('Error occurred')
|
|
|
|
logging.critical('Critical error -- shutting down')
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
This produces the following output:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
2003-02-19 09:46:18 -04:00
|
|
|
WARNING:root:Warning:config file server.conf not found
|
2002-11-14 10:14:16 -04:00
|
|
|
ERROR:root:Error occurred
|
|
|
|
CRITICAL:root:Critical error -- shutting down
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
In the default configuration, informational and debugging messages are
|
2002-12-31 14:34:54 -04:00
|
|
|
suppressed and the output is sent to standard error. You can enable
|
2003-07-16 17:37:26 -03:00
|
|
|
the display of informational and debugging messages by calling the
|
2002-12-31 14:34:54 -04:00
|
|
|
\method{setLevel()} method on the root logger.
|
2002-11-14 19:07:57 -04:00
|
|
|
|
2003-02-19 09:46:18 -04:00
|
|
|
Notice the \function{warning()} call's use of string formatting
|
2002-11-14 19:07:57 -04:00
|
|
|
operators; all of the functions for logging messages take the
|
|
|
|
arguments \code{(\var{msg}, \var{arg1}, \var{arg2}, ...)} and log the
|
|
|
|
string resulting from \code{\var{msg} \% (\var{arg1}, \var{arg2},
|
|
|
|
...)}.
|
2002-11-14 10:14:16 -04:00
|
|
|
|
|
|
|
There's also an \function{exception()} function that records the most
|
|
|
|
recent traceback. Any of the other functions will also record the
|
2002-11-14 19:07:57 -04:00
|
|
|
traceback if you specify a true value for the keyword argument
|
2003-01-17 18:50:10 -04:00
|
|
|
\var{exc_info}.
|
2002-11-14 10:14:16 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
def f():
|
|
|
|
try: 1/0
|
|
|
|
except: logging.exception('Problem recorded')
|
|
|
|
|
|
|
|
f()
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
This produces the following output:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
ERROR:root:Problem recorded
|
|
|
|
Traceback (most recent call last):
|
|
|
|
File "t.py", line 6, in f
|
|
|
|
1/0
|
|
|
|
ZeroDivisionError: integer division or modulo by zero
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
Slightly more advanced programs will use a logger other than the root
|
2002-12-31 14:34:54 -04:00
|
|
|
logger. The \function{getLogger(\var{name})} function is used to get
|
|
|
|
a particular log, creating it if it doesn't exist yet.
|
2002-12-03 09:35:17 -04:00
|
|
|
\function{getLogger(None)} returns the root logger.
|
|
|
|
|
2002-11-14 10:14:16 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
log = logging.getLogger('server')
|
|
|
|
...
|
|
|
|
log.info('Listening on port %i', port)
|
|
|
|
...
|
|
|
|
log.critical('Disk full')
|
|
|
|
...
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
Log records are usually propagated up the hierarchy, so a message
|
|
|
|
logged to \samp{server.auth} is also seen by \samp{server} and
|
2003-04-13 18:44:28 -03:00
|
|
|
\samp{root}, but a \class{Logger} can prevent this by setting its
|
2003-01-17 18:50:10 -04:00
|
|
|
\member{propagate} attribute to \constant{False}.
|
2002-11-14 19:07:57 -04:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
There are more classes provided by the \module{logging} package that
|
|
|
|
can be customized. When a \class{Logger} instance is told to log a
|
|
|
|
message, it creates a \class{LogRecord} instance that is sent to any
|
|
|
|
number of different \class{Handler} instances. Loggers and handlers
|
|
|
|
can also have an attached list of filters, and each filter can cause
|
|
|
|
the \class{LogRecord} to be ignored or can modify the record before
|
2003-04-13 18:44:28 -03:00
|
|
|
passing it along. When they're finally output, \class{LogRecord}
|
|
|
|
instances are converted to text by a \class{Formatter} class. All of
|
|
|
|
these classes can be replaced by your own specially-written classes.
|
2002-12-31 14:34:54 -04:00
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
With all of these features the \module{logging} package should provide
|
|
|
|
enough flexibility for even the most complicated applications. This
|
2003-04-13 18:44:28 -03:00
|
|
|
is only an incomplete overview of its features, so please see the
|
|
|
|
\ulink{package's reference documentation}{../lib/module-logging.html}
|
|
|
|
for all of the details. Reading \pep{282} will also be helpful.
|
2002-11-14 10:14:16 -04:00
|
|
|
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{282}{A Logging System}{Written by Vinay Sajip and Trent Mick;
|
|
|
|
implemented by Vinay Sajip.}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2002-05-10 18:00:05 -03:00
|
|
|
%======================================================================
|
2003-05-13 11:23:54 -03:00
|
|
|
\section{PEP 285: A Boolean Type\label{section-bool}}
|
2002-05-06 14:46:39 -03:00
|
|
|
|
|
|
|
A Boolean type was added to Python 2.3. Two new constants were added
|
|
|
|
to the \module{__builtin__} module, \constant{True} and
|
2003-01-03 12:52:27 -04:00
|
|
|
\constant{False}. (\constant{True} and
|
|
|
|
\constant{False} constants were added to the built-ins
|
2003-07-16 17:37:26 -03:00
|
|
|
in Python 2.2.1, but the 2.2.1 versions are simply set to integer values of
|
2003-01-03 12:52:27 -04:00
|
|
|
1 and 0 and aren't a different type.)
|
|
|
|
|
|
|
|
The type object for this new type is named
|
2002-05-06 14:46:39 -03:00
|
|
|
\class{bool}; the constructor for it takes any Python value and
|
|
|
|
converts it to \constant{True} or \constant{False}.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> bool(1)
|
|
|
|
True
|
|
|
|
>>> bool(0)
|
|
|
|
False
|
|
|
|
>>> bool([])
|
|
|
|
False
|
|
|
|
>>> bool( (1,) )
|
|
|
|
True
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Most of the standard library modules and built-in functions have been
|
|
|
|
changed to return Booleans.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
2002-05-07 18:01:16 -03:00
|
|
|
>>> obj = []
|
|
|
|
>>> hasattr(obj, 'append')
|
2002-05-06 14:46:39 -03:00
|
|
|
True
|
2002-05-07 18:01:16 -03:00
|
|
|
>>> isinstance(obj, list)
|
2002-05-06 14:46:39 -03:00
|
|
|
True
|
2002-05-07 18:01:16 -03:00
|
|
|
>>> isinstance(obj, tuple)
|
2002-05-06 14:46:39 -03:00
|
|
|
False
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Python's Booleans were added with the primary goal of making code
|
|
|
|
clearer. For example, if you're reading a function and encounter the
|
2002-11-13 10:59:06 -04:00
|
|
|
statement \code{return 1}, you might wonder whether the \code{1}
|
2002-12-31 14:34:54 -04:00
|
|
|
represents a Boolean truth value, an index, or a
|
2002-05-06 14:46:39 -03:00
|
|
|
coefficient that multiplies some other quantity. If the statement is
|
|
|
|
\code{return True}, however, the meaning of the return value is quite
|
2002-12-31 14:34:54 -04:00
|
|
|
clear.
|
|
|
|
|
|
|
|
Python's Booleans were \emph{not} added for the sake of strict
|
|
|
|
type-checking. A very strict language such as Pascal would also
|
|
|
|
prevent you performing arithmetic with Booleans, and would require
|
|
|
|
that the expression in an \keyword{if} statement always evaluate to a
|
2003-07-16 17:37:26 -03:00
|
|
|
Boolean result. Python is not this strict and never will be, as
|
2002-12-31 14:34:54 -04:00
|
|
|
\pep{285} explicitly says. This means you can still use any
|
|
|
|
expression in an \keyword{if} statement, even ones that evaluate to a
|
2003-07-16 17:37:26 -03:00
|
|
|
list or tuple or some random object. The Boolean type is a
|
2002-12-31 14:34:54 -04:00
|
|
|
subclass of the \class{int} class so that arithmetic using a Boolean
|
|
|
|
still works.
|
2002-05-06 14:46:39 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> True + 1
|
|
|
|
2
|
|
|
|
>>> False + 1
|
|
|
|
1
|
|
|
|
>>> False * 75
|
|
|
|
0
|
|
|
|
>>> True * 75
|
|
|
|
75
|
|
|
|
\end{verbatim}
|
2002-04-03 18:44:47 -04:00
|
|
|
|
2002-05-06 14:46:39 -03:00
|
|
|
To sum up \constant{True} and \constant{False} in a sentence: they're
|
|
|
|
alternative ways to spell the integer values 1 and 0, with the single
|
|
|
|
difference that \function{str()} and \function{repr()} return the
|
2002-11-13 10:59:06 -04:00
|
|
|
strings \code{'True'} and \code{'False'} instead of \code{'1'} and
|
|
|
|
\code{'0'}.
|
2002-04-03 18:44:47 -04:00
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{285}{Adding a bool type}{Written and implemented by GvR.}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
2002-06-11 07:55:12 -03:00
|
|
|
|
2002-09-02 21:53:21 -03:00
|
|
|
%======================================================================
|
|
|
|
\section{PEP 293: Codec Error Handling Callbacks}
|
|
|
|
|
2002-10-07 16:01:07 -03:00
|
|
|
When encoding a Unicode string into a byte string, unencodable
|
2002-10-09 09:11:10 -03:00
|
|
|
characters may be encountered. So far, Python has allowed specifying
|
|
|
|
the error processing as either ``strict'' (raising
|
2002-12-31 14:34:54 -04:00
|
|
|
\exception{UnicodeError}), ``ignore'' (skipping the character), or
|
|
|
|
``replace'' (using a question mark in the output string), with
|
|
|
|
``strict'' being the default behavior. It may be desirable to specify
|
|
|
|
alternative processing of such errors, such as inserting an XML
|
|
|
|
character reference or HTML entity reference into the converted
|
|
|
|
string.
|
2002-10-07 16:01:07 -03:00
|
|
|
|
2002-11-27 15:11:10 -04:00
|
|
|
Python now has a flexible framework to add different processing
|
2002-10-09 09:11:10 -03:00
|
|
|
strategies. New error handlers can be added with
|
2003-07-16 17:37:26 -03:00
|
|
|
\function{codecs.register_error}, and codecs then can access the error
|
2002-10-09 09:11:10 -03:00
|
|
|
handler with \function{codecs.lookup_error}. An equivalent C API has
|
|
|
|
been added for codecs written in C. The error handler gets the
|
2002-12-31 14:34:54 -04:00
|
|
|
necessary state information such as the string being converted, the
|
2002-10-09 09:11:10 -03:00
|
|
|
position in the string where the error was detected, and the target
|
2002-12-31 14:34:54 -04:00
|
|
|
encoding. The handler can then either raise an exception or return a
|
2002-10-09 09:11:10 -03:00
|
|
|
replacement string.
|
2002-10-07 16:01:07 -03:00
|
|
|
|
|
|
|
Two additional error handlers have been implemented using this
|
2002-10-09 09:11:10 -03:00
|
|
|
framework: ``backslashreplace'' uses Python backslash quoting to
|
2002-11-27 15:11:10 -04:00
|
|
|
represent unencodable characters and ``xmlcharrefreplace'' emits
|
2002-10-07 16:01:07 -03:00
|
|
|
XML character references.
|
2002-09-02 21:53:21 -03:00
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\seepep{293}{Codec Error Handling Callbacks}{Written and implemented by
|
2002-10-09 09:11:10 -03:00
|
|
|
Walter D\"orwald.}
|
2002-09-02 21:53:21 -03:00
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2003-01-03 12:24:28 -04:00
|
|
|
%======================================================================
|
2003-02-07 10:52:18 -04:00
|
|
|
\section{PEP 301: Package Index and Metadata for
|
|
|
|
Distutils\label{section-pep301}}
|
2003-01-03 12:24:28 -04:00
|
|
|
|
2003-01-03 12:52:27 -04:00
|
|
|
Support for the long-requested Python catalog makes its first
|
|
|
|
appearance in 2.3.
|
|
|
|
|
2003-07-16 17:37:26 -03:00
|
|
|
The heart of the catalog is the new Distutils \command{register} command.
|
2003-02-07 10:52:18 -04:00
|
|
|
Running \code{python setup.py register} will collect the metadata
|
2003-01-03 12:52:27 -04:00
|
|
|
describing a package, such as its name, version, maintainer,
|
2003-02-26 15:00:52 -04:00
|
|
|
description, \&c., and send it to a central catalog server. The
|
2003-07-16 17:37:26 -03:00
|
|
|
resulting catalog is available from \url{http://www.python.org/pypi}.
|
2003-01-03 12:52:27 -04:00
|
|
|
|
|
|
|
To make the catalog a bit more useful, a new optional
|
2003-02-07 10:52:18 -04:00
|
|
|
\var{classifiers} keyword argument has been added to the Distutils
|
2003-01-03 12:52:27 -04:00
|
|
|
\function{setup()} function. A list of
|
2003-02-07 10:52:18 -04:00
|
|
|
\ulink{Trove}{http://catb.org/\textasciitilde esr/trove/}-style
|
|
|
|
strings can be supplied to help classify the software.
|
2003-01-03 12:52:27 -04:00
|
|
|
|
2003-01-27 12:36:34 -04:00
|
|
|
Here's an example \file{setup.py} with classifiers, written to be compatible
|
|
|
|
with older versions of the Distutils:
|
2003-01-03 12:52:27 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
2003-01-27 12:36:34 -04:00
|
|
|
from distutils import core
|
2003-02-07 10:52:18 -04:00
|
|
|
kw = {'name': "Quixote",
|
2003-01-27 12:36:34 -04:00
|
|
|
'version': "0.5.1",
|
|
|
|
'description': "A highly Pythonic Web application framework",
|
2003-02-07 10:52:18 -04:00
|
|
|
# ...
|
|
|
|
}
|
2003-01-27 12:36:34 -04:00
|
|
|
|
2003-04-09 14:26:38 -03:00
|
|
|
if (hasattr(core, 'setup_keywords') and
|
|
|
|
'classifiers' in core.setup_keywords):
|
2003-02-07 10:52:18 -04:00
|
|
|
kw['classifiers'] = \
|
|
|
|
['Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
|
|
'Environment :: No Input/Output (Daemon)',
|
|
|
|
'Intended Audience :: Developers'],
|
2003-01-27 12:36:34 -04:00
|
|
|
|
2003-02-07 10:52:18 -04:00
|
|
|
core.setup(**kw)
|
2003-01-03 12:52:27 -04:00
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The full list of classifiers can be obtained by running
|
2003-07-21 09:49:46 -03:00
|
|
|
\verb|python setup.py register --list-classifiers|.
|
2003-01-03 12:24:28 -04:00
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
2003-02-07 10:52:18 -04:00
|
|
|
\seepep{301}{Package Index and Metadata for Distutils}{Written and
|
|
|
|
implemented by Richard Jones.}
|
2003-01-03 12:24:28 -04:00
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2002-12-30 21:20:30 -04:00
|
|
|
%======================================================================
|
|
|
|
\section{PEP 302: New Import Hooks \label{section-pep302}}
|
|
|
|
|
|
|
|
While it's been possible to write custom import hooks ever since the
|
|
|
|
\module{ihooks} module was introduced in Python 1.3, no one has ever
|
2002-12-31 14:34:54 -04:00
|
|
|
been really happy with it because writing new import hooks is
|
|
|
|
difficult and messy. There have been various proposed alternatives
|
|
|
|
such as the \module{imputil} and \module{iu} modules, but none of them
|
|
|
|
has ever gained much acceptance, and none of them were easily usable
|
|
|
|
from \C{} code.
|
2002-12-30 21:20:30 -04:00
|
|
|
|
|
|
|
\pep{302} borrows ideas from its predecessors, especially from
|
|
|
|
Gordon McMillan's \module{iu} module. Three new items
|
|
|
|
are added to the \module{sys} module:
|
|
|
|
|
|
|
|
\begin{itemize}
|
2003-01-02 17:33:15 -04:00
|
|
|
\item \code{sys.path_hooks} is a list of callable objects; most
|
2003-01-17 18:50:10 -04:00
|
|
|
often they'll be classes. Each callable takes a string containing a
|
|
|
|
path and either returns an importer object that will handle imports
|
|
|
|
from this path or raises an \exception{ImportError} exception if it
|
|
|
|
can't handle this path.
|
2002-12-30 21:20:30 -04:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
\item \code{sys.path_importer_cache} caches importer objects for
|
2003-01-17 18:50:10 -04:00
|
|
|
each path, so \code{sys.path_hooks} will only need to be traversed
|
|
|
|
once for each path.
|
2002-12-30 21:20:30 -04:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
\item \code{sys.meta_path} is a list of importer objects that will
|
|
|
|
be traversed before \code{sys.path} is checked. This list is
|
|
|
|
initially empty, but user code can add objects to it. Additional
|
|
|
|
built-in and frozen modules can be imported by an object added to
|
|
|
|
this list.
|
2002-12-30 21:20:30 -04:00
|
|
|
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
Importer objects must have a single method,
|
|
|
|
\method{find_module(\var{fullname}, \var{path}=None)}. \var{fullname}
|
|
|
|
will be a module or package name, e.g. \samp{string} or
|
2002-12-31 14:34:54 -04:00
|
|
|
\samp{distutils.core}. \method{find_module()} must return a loader object
|
2002-12-30 21:20:30 -04:00
|
|
|
that has a single method, \method{load_module(\var{fullname})}, that
|
|
|
|
creates and returns the corresponding module object.
|
|
|
|
|
|
|
|
Pseudo-code for Python's new import logic, therefore, looks something
|
|
|
|
like this (simplified a bit; see \pep{302} for the full details):
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
for mp in sys.meta_path:
|
|
|
|
loader = mp(fullname)
|
|
|
|
if loader is not None:
|
2003-01-02 17:33:15 -04:00
|
|
|
<module> = loader.load_module(fullname)
|
2002-12-31 14:34:54 -04:00
|
|
|
|
2002-12-30 21:20:30 -04:00
|
|
|
for path in sys.path:
|
|
|
|
for hook in sys.path_hooks:
|
2003-01-02 17:33:15 -04:00
|
|
|
try:
|
|
|
|
importer = hook(path)
|
|
|
|
except ImportError:
|
|
|
|
# ImportError, so try the other path hooks
|
|
|
|
pass
|
|
|
|
else:
|
2002-12-30 21:20:30 -04:00
|
|
|
loader = importer.find_module(fullname)
|
2002-12-31 14:34:54 -04:00
|
|
|
<module> = loader.load_module(fullname)
|
2002-12-30 21:20:30 -04:00
|
|
|
|
|
|
|
# Not found!
|
|
|
|
raise ImportError
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{302}{New Import Hooks}{Written by Just van~Rossum and Paul Moore.
|
2002-12-31 10:03:45 -04:00
|
|
|
Implemented by Just van~Rossum.
|
2002-12-30 21:20:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2003-03-21 14:10:12 -04:00
|
|
|
%======================================================================
|
|
|
|
\section{PEP 305: Comma-separated Files \label{section-pep305}}
|
|
|
|
|
|
|
|
Comma-separated files are a format frequently used for exporting data
|
|
|
|
from databases and spreadsheets. Python 2.3 adds a parser for
|
|
|
|
comma-separated files.
|
2003-07-16 17:37:26 -03:00
|
|
|
|
|
|
|
Comma-separated format is deceptively simple at first glance:
|
2003-03-21 14:10:12 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
Costs,150,200,3.95
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Read a line and call \code{line.split(',')}: what could be simpler?
|
|
|
|
But toss in string data that can contain commas, and things get more
|
|
|
|
complicated:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
"Costs",150,200,3.95,"Includes taxes, shipping, and sundry items"
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
A big ugly regular expression can parse this, but using the new
|
|
|
|
\module{csv} package is much simpler:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
2003-04-13 18:13:02 -03:00
|
|
|
import csv
|
2003-03-21 14:10:12 -04:00
|
|
|
|
|
|
|
input = open('datafile', 'rb')
|
|
|
|
reader = csv.reader(input)
|
|
|
|
for line in reader:
|
|
|
|
print line
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The \function{reader} function takes a number of different options.
|
|
|
|
The field separator isn't limited to the comma and can be changed to
|
|
|
|
any character, and so can the quoting and line-ending characters.
|
|
|
|
|
|
|
|
Different dialects of comma-separated files can be defined and
|
2003-07-16 17:37:26 -03:00
|
|
|
registered; currently there are two dialects, both used by Microsoft Excel.
|
2003-03-21 14:10:12 -04:00
|
|
|
A separate \class{csv.writer} class will generate comma-separated files
|
|
|
|
from a succession of tuples or lists, quoting strings that contain the
|
|
|
|
delimiter.
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{305}{CSV File API}{Written and implemented
|
|
|
|
by Kevin Altis, Dave Cole, Andrew McNamara, Skip Montanaro, Cliff Wells.
|
|
|
|
}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
2003-03-21 14:32:43 -04:00
|
|
|
%======================================================================
|
|
|
|
\section{PEP 307: Pickle Enhancements \label{section-pep305}}
|
|
|
|
|
|
|
|
The \module{pickle} and \module{cPickle} modules received some
|
|
|
|
attention during the 2.3 development cycle. In 2.2, new-style classes
|
2003-04-09 14:26:38 -03:00
|
|
|
could be pickled without difficulty, but they weren't pickled very
|
2003-03-21 14:32:43 -04:00
|
|
|
compactly; \pep{307} quotes a trivial example where a new-style class
|
|
|
|
results in a pickled string three times longer than that for a classic
|
|
|
|
class.
|
|
|
|
|
|
|
|
The solution was to invent a new pickle protocol. The
|
|
|
|
\function{pickle.dumps()} function has supported a text-or-binary flag
|
|
|
|
for a long time. In 2.3, this flag is redefined from a Boolean to an
|
2003-07-16 17:37:26 -03:00
|
|
|
integer: 0 is the old text-mode pickle format, 1 is the old binary
|
|
|
|
format, and now 2 is a new 2.3-specific format. A new constant,
|
2003-03-21 14:32:43 -04:00
|
|
|
\constant{pickle.HIGHEST_PROTOCOL}, can be used to select the fanciest
|
2003-07-16 17:37:26 -03:00
|
|
|
protocol available.
|
2003-03-21 14:32:43 -04:00
|
|
|
|
|
|
|
Unpickling is no longer considered a safe operation. 2.2's
|
|
|
|
\module{pickle} provided hooks for trying to prevent unsafe classes
|
|
|
|
from being unpickled (specifically, a
|
|
|
|
\member{__safe_for_unpickling__} attribute), but none of this code
|
|
|
|
was ever audited and therefore it's all been ripped out in 2.3. You
|
|
|
|
should not unpickle untrusted data in any version of Python.
|
|
|
|
|
|
|
|
To reduce the pickling overhead for new-style classes, a new interface
|
|
|
|
for customizing pickling was added using three special methods:
|
|
|
|
\method{__getstate__}, \method{__setstate__}, and
|
|
|
|
\method{__getnewargs__}. Consult \pep{307} for the full semantics
|
|
|
|
of these methods.
|
|
|
|
|
|
|
|
As a way to compress pickles yet further, it's now possible to use
|
|
|
|
integer codes instead of long strings to identify pickled classes.
|
|
|
|
The Python Software Foundation will maintain a list of standardized
|
|
|
|
codes; there's also a range of codes for private use. Currently no
|
|
|
|
codes have been specified.
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seepep{307}{Extensions to the pickle protocol}{Written and implemented
|
|
|
|
by Guido van Rossum and Tim Peters.}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
2002-09-02 21:53:21 -03:00
|
|
|
%======================================================================
|
2002-07-11 17:09:50 -03:00
|
|
|
\section{Extended Slices\label{section-slices}}
|
|
|
|
|
|
|
|
Ever since Python 1.4, the slicing syntax has supported an optional
|
|
|
|
third ``step'' or ``stride'' argument. For example, these are all
|
|
|
|
legal Python syntax: \code{L[1:10:2]}, \code{L[:-1:1]},
|
2002-12-31 14:34:54 -04:00
|
|
|
\code{L[::-1]}. This was added to Python at the request of
|
|
|
|
the developers of Numerical Python, which uses the third argument
|
|
|
|
extensively. However, Python's built-in list, tuple, and string
|
2003-07-16 17:37:26 -03:00
|
|
|
sequence types have never supported this feature, raising a
|
2002-12-31 14:34:54 -04:00
|
|
|
\exception{TypeError} if you tried it. Michael Hudson contributed a
|
|
|
|
patch to fix this shortcoming.
|
2002-06-11 07:55:12 -03:00
|
|
|
|
2002-07-11 17:09:50 -03:00
|
|
|
For example, you can now easily extract the elements of a list that
|
|
|
|
have even indexes:
|
2002-07-03 09:02:01 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> L = range(10)
|
|
|
|
>>> L[::2]
|
|
|
|
[0, 2, 4, 6, 8]
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Negative values also work to make a copy of the same list in reverse
|
|
|
|
order:
|
2002-07-03 09:02:01 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> L[::-1]
|
|
|
|
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
|
|
|
|
\end{verbatim}
|
2002-04-03 18:44:47 -04:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
This also works for tuples, arrays, and strings:
|
2002-07-11 17:09:50 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> s='abcd'
|
|
|
|
>>> s[::2]
|
|
|
|
'ac'
|
|
|
|
>>> s[::-1]
|
|
|
|
'dcba'
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
If you have a mutable sequence such as a list or an array you can
|
2002-07-19 12:48:56 -03:00
|
|
|
assign to or delete an extended slice, but there are some differences
|
2002-12-31 14:34:54 -04:00
|
|
|
between assignment to extended and regular slices. Assignment to a
|
|
|
|
regular slice can be used to change the length of the sequence:
|
2002-07-19 12:48:56 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> a = range(3)
|
|
|
|
>>> a
|
|
|
|
[0, 1, 2]
|
|
|
|
>>> a[1:3] = [4, 5, 6]
|
|
|
|
>>> a
|
|
|
|
[0, 4, 5, 6]
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Extended slices aren't this flexible. When assigning to an extended
|
2003-07-16 17:37:26 -03:00
|
|
|
slice, the list on the right hand side of the statement must contain
|
2002-12-31 14:34:54 -04:00
|
|
|
the same number of items as the slice it is replacing:
|
2002-07-19 12:48:56 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> a = range(4)
|
|
|
|
>>> a
|
|
|
|
[0, 1, 2, 3]
|
|
|
|
>>> a[::2]
|
|
|
|
[0, 2]
|
2002-12-31 14:34:54 -04:00
|
|
|
>>> a[::2] = [0, -1]
|
2002-07-19 12:48:56 -03:00
|
|
|
>>> a
|
|
|
|
[0, 1, -1, 3]
|
2002-12-31 14:34:54 -04:00
|
|
|
>>> a[::2] = [0,1,2]
|
2002-07-19 12:48:56 -03:00
|
|
|
Traceback (most recent call last):
|
|
|
|
File "<stdin>", line 1, in ?
|
2003-01-17 12:20:23 -04:00
|
|
|
ValueError: attempt to assign sequence of size 3 to extended slice of size 2
|
2002-07-19 12:48:56 -03:00
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Deletion is more straightforward:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> a = range(4)
|
2002-12-31 14:34:54 -04:00
|
|
|
>>> a
|
|
|
|
[0, 1, 2, 3]
|
2002-07-19 12:48:56 -03:00
|
|
|
>>> a[::2]
|
|
|
|
[0, 2]
|
|
|
|
>>> del a[::2]
|
|
|
|
>>> a
|
|
|
|
[1, 3]
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
One can also now pass slice objects to the
|
|
|
|
\method{__getitem__} methods of the built-in sequences:
|
2002-07-19 12:48:56 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> range(10).__getitem__(slice(0, 5, 2))
|
|
|
|
[0, 2, 4]
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Or use slice objects directly in subscripts:
|
2002-07-19 12:48:56 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> range(10)[slice(0, 5, 2)]
|
|
|
|
[0, 2, 4]
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-11-29 15:43:45 -04:00
|
|
|
To simplify implementing sequences that support extended slicing,
|
|
|
|
slice objects now have a method \method{indices(\var{length})} which,
|
2003-01-17 18:50:10 -04:00
|
|
|
given the length of a sequence, returns a \code{(\var{start},
|
|
|
|
\var{stop}, \var{step})} tuple that can be passed directly to
|
|
|
|
\function{range()}.
|
2002-11-29 15:43:45 -04:00
|
|
|
\method{indices()} handles omitted and out-of-bounds indices in a
|
|
|
|
manner consistent with regular slices (and this innocuous phrase hides
|
|
|
|
a welter of confusing details!). The method is intended to be used
|
|
|
|
like this:
|
2002-07-19 12:48:56 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
class FakeSeq:
|
|
|
|
...
|
|
|
|
def calc_item(self, i):
|
|
|
|
...
|
|
|
|
def __getitem__(self, item):
|
|
|
|
if isinstance(item, slice):
|
2002-12-31 14:34:54 -04:00
|
|
|
indices = item.indices(len(self))
|
2003-07-30 08:55:06 -03:00
|
|
|
return FakeSeq([self.calc_item(i) for i in range(*indices)])
|
2002-11-13 10:59:06 -04:00
|
|
|
else:
|
2002-07-19 12:48:56 -03:00
|
|
|
return self.calc_item(i)
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
From this example you can also see that the built-in \class{slice}
|
2002-08-14 21:40:21 -03:00
|
|
|
object is now the type object for the slice type, and is no longer a
|
|
|
|
function. This is consistent with Python 2.2, where \class{int},
|
|
|
|
\class{str}, etc., underwent the same change.
|
|
|
|
|
2002-07-11 17:09:50 -03:00
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
%======================================================================
|
2002-07-03 09:02:01 -03:00
|
|
|
\section{Other Language Changes}
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-07-11 17:09:50 -03:00
|
|
|
Here are all of the changes that Python 2.3 makes to the core Python
|
|
|
|
language.
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item The \keyword{yield} statement is now always a keyword, as
|
|
|
|
described in section~\ref{section-generators} of this document.
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item A new built-in function \function{enumerate()}
|
2002-07-11 17:09:50 -03:00
|
|
|
was added, as described in section~\ref{section-enumerate} of this
|
|
|
|
document.
|
|
|
|
|
|
|
|
\item Two new constants, \constant{True} and \constant{False} were
|
|
|
|
added along with the built-in \class{bool} type, as described in
|
|
|
|
section~\ref{section-bool} of this document.
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-11-20 09:50:15 -04:00
|
|
|
\item The \function{int()} type constructor will now return a long
|
|
|
|
integer instead of raising an \exception{OverflowError} when a string
|
|
|
|
or floating-point number is too large to fit into an integer. This
|
|
|
|
can lead to the paradoxical result that
|
2002-12-30 21:20:30 -04:00
|
|
|
\code{isinstance(int(\var{expression}), int)} is false, but that seems
|
|
|
|
unlikely to cause problems in practice.
|
2002-11-20 09:50:15 -04:00
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item Built-in types now support the extended slicing syntax,
|
2002-07-11 17:09:50 -03:00
|
|
|
as described in section~\ref{section-slices} of this document.
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2003-04-24 13:38:20 -03:00
|
|
|
\item A new built-in function, \function{sum(\var{iterable}, \var{start}=0)},
|
|
|
|
adds up the numeric items in the iterable object and returns their sum.
|
|
|
|
\function{sum()} only accepts numbers, meaning that you can't use it
|
2003-07-16 17:37:26 -03:00
|
|
|
to concatenate a bunch of strings. (Contributed by Alex
|
2003-04-24 13:38:20 -03:00
|
|
|
Martelli.)
|
|
|
|
|
2003-05-07 14:00:35 -03:00
|
|
|
\item \code{list.insert(\var{pos}, \var{value})} used to
|
|
|
|
insert \var{value} at the front of the list when \var{pos} was
|
|
|
|
negative. The behaviour has now been changed to be consistent with
|
|
|
|
slice indexing, so when \var{pos} is -1 the value will be inserted
|
|
|
|
before the last element, and so forth.
|
|
|
|
|
2003-07-16 17:37:26 -03:00
|
|
|
\item \code{list.index(\var{value})}, which searches for \var{value}
|
|
|
|
within the list and returns its index, now takes optional
|
|
|
|
\var{start} and \var{stop} arguments to limit the search to
|
|
|
|
only part of the list.
|
|
|
|
|
2003-04-13 18:44:28 -03:00
|
|
|
\item Dictionaries have a new method, \method{pop(\var{key}\optional{,
|
|
|
|
\var{default}})}, that returns the value corresponding to \var{key}
|
|
|
|
and removes that key/value pair from the dictionary. If the requested
|
2003-04-24 13:38:20 -03:00
|
|
|
key isn't present in the dictionary, \var{default} is returned if it's
|
|
|
|
specified and \exception{KeyError} raised if it isn't.
|
2002-07-11 17:09:50 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> d = {1:2}
|
|
|
|
>>> d
|
|
|
|
{1: 2}
|
|
|
|
>>> d.pop(4)
|
|
|
|
Traceback (most recent call last):
|
2002-11-14 10:14:16 -04:00
|
|
|
File "stdin", line 1, in ?
|
2002-07-11 17:09:50 -03:00
|
|
|
KeyError: 4
|
|
|
|
>>> d.pop(1)
|
|
|
|
2
|
|
|
|
>>> d.pop(1)
|
|
|
|
Traceback (most recent call last):
|
2002-11-14 10:14:16 -04:00
|
|
|
File "stdin", line 1, in ?
|
2003-01-17 12:20:23 -04:00
|
|
|
KeyError: 'pop(): dictionary is empty'
|
2002-07-11 17:09:50 -03:00
|
|
|
>>> d
|
|
|
|
{}
|
|
|
|
>>>
|
|
|
|
\end{verbatim}
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-11-27 15:11:10 -04:00
|
|
|
There's also a new class method,
|
|
|
|
\method{dict.fromkeys(\var{iterable}, \var{value})}, that
|
|
|
|
creates a dictionary with keys taken from the supplied iterator
|
|
|
|
\var{iterable} and all values set to \var{value}, defaulting to
|
|
|
|
\code{None}.
|
|
|
|
|
|
|
|
(Patches contributed by Raymond Hettinger.)
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-12-30 21:20:30 -04:00
|
|
|
Also, the \function{dict()} constructor now accepts keyword arguments to
|
2002-12-14 16:20:45 -04:00
|
|
|
simplify creating small dictionaries:
|
2002-12-11 11:03:51 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> dict(red=1, blue=2, green=3, black=4)
|
|
|
|
{'blue': 2, 'black': 4, 'green': 3, 'red': 1}
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 10:03:45 -04:00
|
|
|
(Contributed by Just van~Rossum.)
|
2002-12-11 11:03:51 -04:00
|
|
|
|
2002-11-04 16:17:24 -04:00
|
|
|
\item The \keyword{assert} statement no longer checks the \code{__debug__}
|
2002-08-19 21:54:36 -03:00
|
|
|
flag, so you can no longer disable assertions by assigning to \code{__debug__}.
|
2002-11-13 10:59:06 -04:00
|
|
|
Running Python with the \programopt{-O} switch will still generate
|
2002-08-19 21:54:36 -03:00
|
|
|
code that doesn't execute any assertions.
|
|
|
|
|
|
|
|
\item Most type objects are now callable, so you can use them
|
|
|
|
to create new objects such as functions, classes, and modules. (This
|
|
|
|
means that the \module{new} module can be deprecated in a future
|
2002-12-31 14:34:54 -04:00
|
|
|
Python version, because you can now use the type objects available in
|
|
|
|
the \module{types} module.)
|
2002-08-19 21:54:36 -03:00
|
|
|
% XXX should new.py use PendingDeprecationWarning?
|
|
|
|
For example, you can create a new module object with the following code:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import types
|
|
|
|
>>> m = types.ModuleType('abc','docstring')
|
|
|
|
>>> m
|
|
|
|
<module 'abc' (built-in)>
|
|
|
|
>>> m.__doc__
|
|
|
|
'docstring'
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item
|
2002-08-19 21:54:36 -03:00
|
|
|
A new warning, \exception{PendingDeprecationWarning} was added to
|
|
|
|
indicate features which are in the process of being
|
|
|
|
deprecated. The warning will \emph{not} be printed by default. To
|
|
|
|
check for use of features that will be deprecated in the future,
|
|
|
|
supply \programopt{-Walways::PendingDeprecationWarning::} on the
|
|
|
|
command line or use \function{warnings.filterwarnings()}.
|
|
|
|
|
2003-01-13 09:59:22 -04:00
|
|
|
\item The process of deprecating string-based exceptions, as
|
|
|
|
in \code{raise "Error occurred"}, has begun. Raising a string will
|
|
|
|
now trigger \exception{PendingDeprecationWarning}.
|
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\item Using \code{None} as a variable name will now result in a
|
|
|
|
\exception{SyntaxWarning} warning. In a future version of Python,
|
|
|
|
\code{None} may finally become a keyword.
|
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
\item The \method{xreadlines()} method of file objects, introduced in
|
|
|
|
Python 2.1, is no longer necessary because files now behave as their
|
|
|
|
own iterator. \method{xreadlines()} was originally introduced as a
|
|
|
|
faster way to loop over all the lines in a file, but now you can
|
|
|
|
simply write \code{for line in file_obj}. File objects also have a
|
|
|
|
new read-only \member{encoding} attribute that gives the encoding used
|
|
|
|
by the file; Unicode strings written to the file will be automatically
|
|
|
|
converted to bytes using the given encoding.
|
|
|
|
|
2002-11-15 10:37:10 -04:00
|
|
|
\item The method resolution order used by new-style classes has
|
|
|
|
changed, though you'll only notice the difference if you have a really
|
2003-07-16 17:37:26 -03:00
|
|
|
complicated inheritance hierarchy. Classic classes are unaffected by
|
|
|
|
this change. Python 2.2 originally used a topological sort of a
|
2002-11-15 10:37:10 -04:00
|
|
|
class's ancestors, but 2.3 now uses the C3 algorithm as described in
|
2002-11-19 09:09:00 -04:00
|
|
|
the paper \ulink{``A Monotonic Superclass Linearization for
|
|
|
|
Dylan''}{http://www.webcom.com/haahr/dylan/linearization-oopsla96.html}.
|
2003-01-13 09:59:22 -04:00
|
|
|
To understand the motivation for this change,
|
|
|
|
read Michele Simionato's article
|
2003-02-07 10:52:18 -04:00
|
|
|
\ulink{``Python 2.3 Method Resolution Order''}
|
2003-02-07 16:22:33 -04:00
|
|
|
{http://www.python.org/2.3/mro.html}, or
|
2003-01-13 09:59:22 -04:00
|
|
|
read the thread on python-dev starting with the message at
|
2002-11-15 10:37:10 -04:00
|
|
|
\url{http://mail.python.org/pipermail/python-dev/2002-October/029035.html}.
|
|
|
|
Samuele Pedroni first pointed out the problem and also implemented the
|
|
|
|
fix by coding the C3 algorithm.
|
|
|
|
|
2002-09-13 19:21:42 -03:00
|
|
|
\item Python runs multithreaded programs by switching between threads
|
|
|
|
after executing N bytecodes. The default value for N has been
|
|
|
|
increased from 10 to 100 bytecodes, speeding up single-threaded
|
|
|
|
applications by reducing the switching overhead. Some multithreaded
|
|
|
|
applications may suffer slower response time, but that's easily fixed
|
2002-12-31 14:34:54 -04:00
|
|
|
by setting the limit back to a lower number using
|
2002-09-13 19:21:42 -03:00
|
|
|
\function{sys.setcheckinterval(\var{N})}.
|
2003-07-16 17:12:33 -03:00
|
|
|
The limit can be retrieved with the new
|
|
|
|
\function{sys.getcheckinterval()} function.
|
2002-09-13 19:21:42 -03:00
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\item One minor but far-reaching change is that the names of extension
|
|
|
|
types defined by the modules included with Python now contain the
|
2002-11-13 10:59:06 -04:00
|
|
|
module and a \character{.} in front of the type name. For example, in
|
2002-08-19 21:54:36 -03:00
|
|
|
Python 2.2, if you created a socket and printed its
|
|
|
|
\member{__class__}, you'd get this output:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> s = socket.socket()
|
|
|
|
>>> s.__class__
|
|
|
|
<type 'socket'>
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
In 2.3, you get this:
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> s.__class__
|
|
|
|
<type '_socket.socket'>
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-11-26 10:48:23 -04:00
|
|
|
\item One of the noted incompatibilities between old- and new-style
|
|
|
|
classes has been removed: you can now assign to the
|
|
|
|
\member{__name__} and \member{__bases__} attributes of new-style
|
|
|
|
classes. There are some restrictions on what can be assigned to
|
|
|
|
\member{__bases__} along the lines of those relating to assigning to
|
|
|
|
an instance's \member{__class__} attribute.
|
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
%======================================================================
|
2002-08-19 21:54:36 -03:00
|
|
|
\subsection{String Changes}
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
2003-01-17 18:50:10 -04:00
|
|
|
\item The \keyword{in} operator now works differently for strings.
|
2002-08-19 21:54:36 -03:00
|
|
|
Previously, when evaluating \code{\var{X} in \var{Y}} where \var{X}
|
|
|
|
and \var{Y} are strings, \var{X} could only be a single character.
|
|
|
|
That's now changed; \var{X} can be a string of any length, and
|
|
|
|
\code{\var{X} in \var{Y}} will return \constant{True} if \var{X} is a
|
|
|
|
substring of \var{Y}. If \var{X} is the empty string, the result is
|
|
|
|
always \constant{True}.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> 'ab' in 'abcd'
|
|
|
|
True
|
|
|
|
>>> 'ad' in 'abcd'
|
|
|
|
False
|
|
|
|
>>> '' in 'abcd'
|
|
|
|
True
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Note that this doesn't tell you where the substring starts; if you
|
2003-07-16 17:37:26 -03:00
|
|
|
need that information, use the \method{find()} string method.
|
2002-08-19 21:54:36 -03:00
|
|
|
|
2002-07-11 17:09:50 -03:00
|
|
|
\item The \method{strip()}, \method{lstrip()}, and \method{rstrip()}
|
|
|
|
string methods now have an optional argument for specifying the
|
|
|
|
characters to strip. The default is still to remove all whitespace
|
|
|
|
characters:
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-07-11 17:09:50 -03:00
|
|
|
\begin{verbatim}
|
|
|
|
>>> ' abc '.strip()
|
|
|
|
'abc'
|
|
|
|
>>> '><><abc<><><>'.strip('<>')
|
|
|
|
'abc'
|
|
|
|
>>> '><><abc<><><>\n'.strip('<>')
|
|
|
|
'abc<><><>\n'
|
|
|
|
>>> u'\u4000\u4001abc\u4000'.strip(u'\u4000')
|
|
|
|
u'\u4001abc'
|
|
|
|
>>>
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
(Suggested by Simon Brunning and implemented by Walter D\"orwald.)
|
2002-07-12 17:24:42 -03:00
|
|
|
|
2002-07-11 17:09:50 -03:00
|
|
|
\item The \method{startswith()} and \method{endswith()}
|
2003-07-17 20:56:58 -03:00
|
|
|
string methods now accept negative numbers for the \var{start} and \var{end}
|
2002-07-11 17:09:50 -03:00
|
|
|
parameters.
|
|
|
|
|
|
|
|
\item Another new string method is \method{zfill()}, originally a
|
|
|
|
function in the \module{string} module. \method{zfill()} pads a
|
|
|
|
numeric string with zeros on the left until it's the specified width.
|
|
|
|
Note that the \code{\%} operator is still more flexible and powerful
|
|
|
|
than \method{zfill()}.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> '45'.zfill(4)
|
|
|
|
'0045'
|
|
|
|
>>> '12345'.zfill(4)
|
|
|
|
'12345'
|
|
|
|
>>> 'goofy'.zfill(6)
|
|
|
|
'0goofy'
|
|
|
|
\end{verbatim}
|
|
|
|
|
2002-07-12 17:24:42 -03:00
|
|
|
(Contributed by Walter D\"orwald.)
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item A new type object, \class{basestring}, has been added.
|
2002-07-11 17:50:34 -03:00
|
|
|
Both 8-bit strings and Unicode strings inherit from this type, so
|
|
|
|
\code{isinstance(obj, basestring)} will return \constant{True} for
|
|
|
|
either kind of string. It's a completely abstract type, so you
|
|
|
|
can't create \class{basestring} instances.
|
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
\item Interned strings are no longer immortal and will now be
|
2002-08-19 21:54:36 -03:00
|
|
|
garbage-collected in the usual way when the only reference to them is
|
|
|
|
from the internal dictionary of interned strings. (Implemented by
|
|
|
|
Oren Tirosh.)
|
2002-08-05 22:40:48 -03:00
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\end{itemize}
|
2002-07-11 17:50:34 -03:00
|
|
|
|
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
%======================================================================
|
2002-08-19 21:54:36 -03:00
|
|
|
\subsection{Optimizations}
|
2002-07-11 17:09:50 -03:00
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\begin{itemize}
|
2002-07-11 17:09:50 -03:00
|
|
|
|
2002-12-30 21:20:30 -04:00
|
|
|
\item The creation of new-style class instances has been made much
|
|
|
|
faster; they're now faster than classic classes!
|
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\item The \method{sort()} method of list objects has been extensively
|
|
|
|
rewritten by Tim Peters, and the implementation is significantly
|
|
|
|
faster.
|
2002-07-11 17:09:50 -03:00
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\item Multiplication of large long integers is now much faster thanks
|
|
|
|
to an implementation of Karatsuba multiplication, an algorithm that
|
|
|
|
scales better than the O(n*n) required for the grade-school
|
|
|
|
multiplication algorithm. (Original patch by Christopher A. Craig,
|
|
|
|
and significantly reworked by Tim Peters.)
|
|
|
|
|
|
|
|
\item The \code{SET_LINENO} opcode is now gone. This may provide a
|
2002-12-31 14:34:54 -04:00
|
|
|
small speed increase, depending on your compiler's idiosyncrasies.
|
|
|
|
See section~\ref{section-other} for a longer explanation.
|
2002-08-19 21:54:36 -03:00
|
|
|
(Removed by Michael Hudson.)
|
|
|
|
|
2002-12-11 11:03:51 -04:00
|
|
|
\item \function{xrange()} objects now have their own iterator, making
|
|
|
|
\code{for i in xrange(n)} slightly faster than
|
|
|
|
\code{for i in range(n)}. (Patch by Raymond Hettinger.)
|
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
\item A number of small rearrangements have been made in various
|
2003-07-17 20:56:58 -03:00
|
|
|
hotspots to improve performance, such as inlining a function or removing
|
|
|
|
some code. (Implemented mostly by GvR, but lots of people have
|
|
|
|
contributed single changes.)
|
2002-07-11 17:09:50 -03:00
|
|
|
|
|
|
|
\end{itemize}
|
2002-05-29 12:54:55 -03:00
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
The net result of the 2.3 optimizations is that Python 2.3 runs the
|
|
|
|
pystone benchmark around 25\% faster than Python 2.2.
|
|
|
|
|
2002-08-19 21:54:36 -03:00
|
|
|
|
2002-03-26 22:29:48 -04:00
|
|
|
%======================================================================
|
2003-01-06 16:04:17 -04:00
|
|
|
\section{New, Improved, and Deprecated Modules}
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
As usual, Python's standard library received a number of enhancements and
|
2002-07-22 15:57:36 -03:00
|
|
|
bug fixes. Here's a partial list of the most notable changes, sorted
|
|
|
|
alphabetically by module name. Consult the
|
|
|
|
\file{Misc/NEWS} file in the source tree for a more
|
|
|
|
complete list of changes, or look through the CVS logs for all the
|
|
|
|
details.
|
2002-05-06 14:46:39 -03:00
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
2002-07-22 15:57:36 -03:00
|
|
|
\item The \module{array} module now supports arrays of Unicode
|
2002-11-13 10:59:06 -04:00
|
|
|
characters using the \character{u} format character. Arrays also now
|
2002-07-22 15:57:36 -03:00
|
|
|
support using the \code{+=} assignment operator to add another array's
|
|
|
|
contents, and the \code{*=} assignment operator to repeat an array.
|
|
|
|
(Contributed by Jason Orendorff.)
|
|
|
|
|
2003-09-21 20:41:02 -03:00
|
|
|
\item The \module{bsddb} module has been replaced by version 4.1.6
|
2002-11-19 09:05:33 -04:00
|
|
|
of the \ulink{PyBSDDB}{http://pybsddb.sourceforge.net} package,
|
|
|
|
providing a more complete interface to the transactional features of
|
|
|
|
the BerkeleyDB library.
|
2003-07-17 20:56:58 -03:00
|
|
|
|
2002-11-19 09:05:33 -04:00
|
|
|
The old version of the module has been renamed to
|
|
|
|
\module{bsddb185} and is no longer built automatically; you'll
|
|
|
|
have to edit \file{Modules/Setup} to enable it. Note that the new
|
|
|
|
\module{bsddb} package is intended to be compatible with the
|
|
|
|
old module, so be sure to file bugs if you discover any
|
2003-07-17 20:56:58 -03:00
|
|
|
incompatibilities. When upgrading to Python 2.3, if the new interpreter is compiled
|
|
|
|
with a new version of
|
2003-03-07 11:45:15 -04:00
|
|
|
the underlying BerkeleyDB library, you will almost certainly have to
|
|
|
|
convert your database files to the new version. You can do this
|
|
|
|
fairly easily with the new scripts \file{db2pickle.py} and
|
|
|
|
\file{pickle2db.py} which you will find in the distribution's
|
2003-07-17 20:56:58 -03:00
|
|
|
\file{Tools/scripts} directory. If you've already been using the PyBSDDB
|
2003-04-19 12:38:47 -03:00
|
|
|
package and importing it as \module{bsddb3}, you will have to change your
|
2003-07-17 20:56:58 -03:00
|
|
|
\code{import} statements to import it as \module{bsddb}.
|
2003-04-19 12:38:47 -03:00
|
|
|
|
|
|
|
\item The new \module{bz2} module is an interface to the bz2 data
|
2003-07-17 20:56:58 -03:00
|
|
|
compression library. bz2-compressed data is usually smaller than
|
|
|
|
corresponding \module{zlib}-compressed data. (Contributed by Gustavo Niemeyer.)
|
2002-11-19 09:05:33 -04:00
|
|
|
|
2003-12-23 12:46:41 -04:00
|
|
|
\item A set of standard date/time types has been added in the new \module{datetime}
|
2003-07-17 20:56:58 -03:00
|
|
|
module. See the following section for more details.
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item The Distutils \class{Extension} class now supports
|
|
|
|
an extra constructor argument named \var{depends} for listing
|
2002-07-22 15:57:36 -03:00
|
|
|
additional source files that an extension depends on. This lets
|
|
|
|
Distutils recompile the module if any of the dependency files are
|
2002-11-13 10:59:06 -04:00
|
|
|
modified. For example, if \file{sampmodule.c} includes the header
|
2002-07-22 15:57:36 -03:00
|
|
|
file \file{sample.h}, you would create the \class{Extension} object like
|
|
|
|
this:
|
2002-06-26 10:23:55 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
2002-07-22 15:57:36 -03:00
|
|
|
ext = Extension("samp",
|
|
|
|
sources=["sampmodule.c"],
|
|
|
|
depends=["sample.h"])
|
2002-06-26 10:23:55 -03:00
|
|
|
\end{verbatim}
|
|
|
|
|
2002-07-22 15:57:36 -03:00
|
|
|
Modifying \file{sample.h} would then cause the module to be recompiled.
|
|
|
|
(Contributed by Jeremy Hylton.)
|
2002-07-11 17:50:34 -03:00
|
|
|
|
2002-11-04 16:05:10 -04:00
|
|
|
\item Other minor changes to Distutils:
|
|
|
|
it now checks for the \envvar{CC}, \envvar{CFLAGS}, \envvar{CPP},
|
|
|
|
\envvar{LDFLAGS}, and \envvar{CPPFLAGS} environment variables, using
|
|
|
|
them to override the settings in Python's configuration (contributed
|
2003-01-27 12:36:34 -04:00
|
|
|
by Robert Weber).
|
2002-11-04 16:05:10 -04:00
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
\item Previously the \module{doctest} module would only search the
|
|
|
|
docstrings of public methods and functions for test cases, but it now
|
|
|
|
also examines private ones as well. The \function{DocTestSuite(}
|
|
|
|
function creates a \class{unittest.TestSuite} object from a set of
|
|
|
|
\module{doctest} tests.
|
|
|
|
|
2003-04-24 13:38:20 -03:00
|
|
|
\item The new \function{gc.get_referents(\var{object})} function returns a
|
|
|
|
list of all the objects referenced by \var{object}.
|
|
|
|
|
2002-07-11 17:09:50 -03:00
|
|
|
\item The \module{getopt} module gained a new function,
|
|
|
|
\function{gnu_getopt()}, that supports the same arguments as the existing
|
2002-11-13 10:59:06 -04:00
|
|
|
\function{getopt()} function but uses GNU-style scanning mode.
|
2002-07-11 17:09:50 -03:00
|
|
|
The existing \function{getopt()} stops processing options as soon as a
|
|
|
|
non-option argument is encountered, but in GNU-style mode processing
|
|
|
|
continues, meaning that options and arguments can be mixed. For
|
|
|
|
example:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> getopt.getopt(['-f', 'filename', 'output', '-v'], 'f:v')
|
|
|
|
([('-f', 'filename')], ['output', '-v'])
|
|
|
|
>>> getopt.gnu_getopt(['-f', 'filename', 'output', '-v'], 'f:v')
|
|
|
|
([('-f', 'filename'), ('-v', '')], ['output'])
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
(Contributed by Peter \AA{strand}.)
|
2002-03-26 15:17:43 -04:00
|
|
|
|
2002-07-11 17:50:34 -03:00
|
|
|
\item The \module{grp}, \module{pwd}, and \module{resource} modules
|
2002-11-13 10:59:06 -04:00
|
|
|
now return enhanced tuples:
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2002-05-06 14:46:39 -03:00
|
|
|
\begin{verbatim}
|
|
|
|
>>> import grp
|
|
|
|
>>> g = grp.getgrnam('amk')
|
|
|
|
>>> g.gr_name, g.gr_gid
|
|
|
|
('amk', 500)
|
|
|
|
\end{verbatim}
|
2002-04-14 23:27:55 -03:00
|
|
|
|
2002-12-30 21:20:30 -04:00
|
|
|
\item The \module{gzip} module can now handle files exceeding 2~Gb.
|
|
|
|
|
2002-08-05 22:40:48 -03:00
|
|
|
\item The new \module{heapq} module contains an implementation of a
|
|
|
|
heap queue algorithm. A heap is an array-like data structure that
|
2002-12-31 14:34:54 -04:00
|
|
|
keeps items in a partially sorted order such that, for every index
|
|
|
|
\var{k}, \code{heap[\var{k}] <= heap[2*\var{k}+1]} and
|
|
|
|
\code{heap[\var{k}] <= heap[2*\var{k}+2]}. This makes it quick to
|
|
|
|
remove the smallest item, and inserting a new item while maintaining
|
|
|
|
the heap property is O(lg~n). (See
|
2002-08-05 22:40:48 -03:00
|
|
|
\url{http://www.nist.gov/dads/HTML/priorityque.html} for more
|
|
|
|
information about the priority queue data structure.)
|
|
|
|
|
2002-11-13 09:24:41 -04:00
|
|
|
The \module{heapq} module provides \function{heappush()} and
|
2002-08-05 22:40:48 -03:00
|
|
|
\function{heappop()} functions for adding and removing items while
|
|
|
|
maintaining the heap property on top of some other mutable Python
|
2003-07-17 20:56:58 -03:00
|
|
|
sequence type. Here's an example that uses a Python list:
|
2002-08-05 22:40:48 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import heapq
|
|
|
|
>>> heap = []
|
|
|
|
>>> for item in [3, 7, 5, 11, 1]:
|
|
|
|
... heapq.heappush(heap, item)
|
|
|
|
...
|
|
|
|
>>> heap
|
|
|
|
[1, 3, 5, 11, 7]
|
|
|
|
>>> heapq.heappop(heap)
|
|
|
|
1
|
|
|
|
>>> heapq.heappop(heap)
|
|
|
|
3
|
|
|
|
>>> heap
|
|
|
|
[5, 7, 11]
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
(Contributed by Kevin O'Connor.)
|
2002-07-22 15:57:36 -03:00
|
|
|
|
2003-07-17 22:15:51 -03:00
|
|
|
\item The IDLE integrated development environment has been updated
|
|
|
|
using the code from the IDLEfork project
|
|
|
|
(\url{http://idlefork.sf.net}). The most notable feature is that the
|
|
|
|
code being developed is now executed in a subprocess, meaning that
|
|
|
|
there's no longer any need for manual \code{reload()} operations.
|
|
|
|
IDLE's core code has been incorporated into the standard library as the
|
|
|
|
\module{idlelib} package.
|
|
|
|
|
2003-01-03 12:24:28 -04:00
|
|
|
\item The \module{imaplib} module now supports IMAP over SSL.
|
|
|
|
(Contributed by Piers Lauder and Tino Lange.)
|
|
|
|
|
2003-03-01 22:13:52 -04:00
|
|
|
\item The \module{itertools} contains a number of useful functions for
|
|
|
|
use with iterators, inspired by various functions provided by the ML
|
|
|
|
and Haskell languages. For example,
|
|
|
|
\code{itertools.ifilter(predicate, iterator)} returns all elements in
|
|
|
|
the iterator for which the function \function{predicate()} returns
|
2003-03-01 22:31:58 -04:00
|
|
|
\constant{True}, and \code{itertools.repeat(obj, \var{N})} returns
|
2003-03-01 22:13:52 -04:00
|
|
|
\code{obj} \var{N} times. There are a number of other functions in
|
|
|
|
the module; see the \ulink{package's reference
|
|
|
|
documentation}{../lib/module-itertools.html} for details.
|
2003-03-09 03:19:38 -04:00
|
|
|
(Contributed by Raymond Hettinger.)
|
2003-02-19 12:08:08 -04:00
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item Two new functions in the \module{math} module,
|
2002-07-22 15:57:36 -03:00
|
|
|
\function{degrees(\var{rads})} and \function{radians(\var{degs})},
|
2002-11-13 10:59:06 -04:00
|
|
|
convert between radians and degrees. Other functions in the
|
2002-12-15 16:17:38 -04:00
|
|
|
\module{math} module such as \function{math.sin()} and
|
|
|
|
\function{math.cos()} have always required input values measured in
|
|
|
|
radians. Also, an optional \var{base} argument was added to
|
|
|
|
\function{math.log()} to make it easier to compute logarithms for
|
|
|
|
bases other than \code{e} and \code{10}. (Contributed by Raymond
|
|
|
|
Hettinger.)
|
2002-07-22 15:57:36 -03:00
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
\item Several new POSIX functions (\function{getpgid()}, \function{killpg()},
|
2002-12-31 10:03:45 -04:00
|
|
|
\function{lchown()}, \function{loadavg()}, \function{major()}, \function{makedev()},
|
|
|
|
\function{minor()}, and \function{mknod()}) were added to the
|
2002-10-10 13:04:08 -03:00
|
|
|
\module{posix} module that underlies the \module{os} module.
|
2002-12-31 10:03:45 -04:00
|
|
|
(Contributed by Gustavo Niemeyer, Geert Jansen, and Denis S. Otkidach.)
|
2002-07-22 15:57:36 -03:00
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
\item In the \module{os} module, the \function{*stat()} family of
|
|
|
|
functions can now report fractions of a second in a timestamp. Such
|
|
|
|
time stamps are represented as floats, similar to
|
|
|
|
the value returned by \function{time.time()}.
|
2002-12-31 14:34:54 -04:00
|
|
|
|
|
|
|
During testing, it was found that some applications will break if time
|
|
|
|
stamps are floats. For compatibility, when using the tuple interface
|
|
|
|
of the \class{stat_result} time stamps will be represented as integers.
|
|
|
|
When using named fields (a feature first introduced in Python 2.2),
|
|
|
|
time stamps are still represented as integers, unless
|
|
|
|
\function{os.stat_float_times()} is invoked to enable float return
|
|
|
|
values:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> os.stat("/tmp").st_mtime
|
|
|
|
1034791200
|
|
|
|
>>> os.stat_float_times(True)
|
|
|
|
>>> os.stat("/tmp").st_mtime
|
|
|
|
1034791200.6335014
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
In Python 2.4, the default will change to always returning floats.
|
|
|
|
|
|
|
|
Application developers should enable this feature only if all their
|
|
|
|
libraries work properly when confronted with floating point time
|
|
|
|
stamps, or if they use the tuple API. If used, the feature should be
|
|
|
|
activated on an application level instead of trying to enable it on a
|
|
|
|
per-use basis.
|
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
\item The \module{optparse} module contains a new parser for command-line arguments
|
|
|
|
that can convert option values to a particular Python type
|
|
|
|
and will automatically generate a usage message. See the following section for
|
|
|
|
more details.
|
|
|
|
|
2002-12-01 10:00:21 -04:00
|
|
|
\item The old and never-documented \module{linuxaudiodev} module has
|
2002-12-31 14:34:54 -04:00
|
|
|
been deprecated, and a new version named \module{ossaudiodev} has been
|
|
|
|
added. The module was renamed because the OSS sound drivers can be
|
|
|
|
used on platforms other than Linux, and the interface has also been
|
|
|
|
tidied and brought up to date in various ways. (Contributed by Greg
|
2003-01-03 14:03:21 -04:00
|
|
|
Ward and Nicholas FitzRoy-Dale.)
|
2002-12-01 10:00:21 -04:00
|
|
|
|
2003-04-24 13:38:20 -03:00
|
|
|
\item The new \module{platform} module contains a number of functions
|
|
|
|
that try to determine various properties of the platform you're
|
|
|
|
running on. There are functions for getting the architecture, CPU
|
2003-07-17 20:56:58 -03:00
|
|
|
type, the Windows OS version, and even the Linux distribution version.
|
2003-04-24 13:38:20 -03:00
|
|
|
(Contributed by Marc-Andr\'e Lemburg.)
|
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item The parser objects provided by the \module{pyexpat} module
|
2002-07-22 15:57:36 -03:00
|
|
|
can now optionally buffer character data, resulting in fewer calls to
|
|
|
|
your character data handler and therefore faster performance. Setting
|
2002-11-13 10:59:06 -04:00
|
|
|
the parser object's \member{buffer_text} attribute to \constant{True}
|
2002-07-22 15:57:36 -03:00
|
|
|
will enable buffering.
|
|
|
|
|
2002-11-13 09:24:41 -04:00
|
|
|
\item The \function{sample(\var{population}, \var{k})} function was
|
2003-07-17 20:56:58 -03:00
|
|
|
added to the \module{random} module. \var{population} is a sequence or
|
|
|
|
\class{xrange} object containing the elements of a population, and
|
|
|
|
\function{sample()} chooses \var{k} elements from the population without
|
|
|
|
replacing chosen elements. \var{k} can be any value up to
|
|
|
|
\code{len(\var{population})}. For example:
|
2002-11-13 09:24:41 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
2002-12-11 11:03:51 -04:00
|
|
|
>>> days = ['Mo', 'Tu', 'We', 'Th', 'Fr', 'St', 'Sn']
|
2002-12-17 12:15:34 -04:00
|
|
|
>>> random.sample(days, 3) # Choose 3 elements
|
2002-12-11 11:03:51 -04:00
|
|
|
['St', 'Sn', 'Th']
|
2002-12-17 12:15:34 -04:00
|
|
|
>>> random.sample(days, 7) # Choose 7 elements
|
2002-12-11 11:03:51 -04:00
|
|
|
['Tu', 'Th', 'Mo', 'We', 'St', 'Fr', 'Sn']
|
2002-12-17 12:15:34 -04:00
|
|
|
>>> random.sample(days, 7) # Choose 7 again
|
2002-12-11 11:03:51 -04:00
|
|
|
['We', 'Mo', 'Sn', 'Fr', 'Tu', 'St', 'Th']
|
2002-12-17 12:15:34 -04:00
|
|
|
>>> random.sample(days, 8) # Can't choose eight
|
2002-11-13 09:24:41 -04:00
|
|
|
Traceback (most recent call last):
|
2002-11-14 10:14:16 -04:00
|
|
|
File "<stdin>", line 1, in ?
|
2002-12-11 11:03:51 -04:00
|
|
|
File "random.py", line 414, in sample
|
|
|
|
raise ValueError, "sample larger than population"
|
2002-11-13 09:24:41 -04:00
|
|
|
ValueError: sample larger than population
|
2002-12-31 14:34:54 -04:00
|
|
|
>>> random.sample(xrange(1,10000,2), 10) # Choose ten odd nos. under 10000
|
2002-12-11 11:03:51 -04:00
|
|
|
[3407, 3805, 1505, 7023, 2401, 2267, 9733, 3151, 8083, 9195]
|
2002-11-13 09:24:41 -04:00
|
|
|
\end{verbatim}
|
2002-12-30 21:20:30 -04:00
|
|
|
|
|
|
|
The \module{random} module now uses a new algorithm, the Mersenne
|
|
|
|
Twister, implemented in C. It's faster and more extensively studied
|
|
|
|
than the previous algorithm.
|
|
|
|
|
|
|
|
(All changes contributed by Raymond Hettinger.)
|
2002-11-13 09:24:41 -04:00
|
|
|
|
2002-05-06 14:46:39 -03:00
|
|
|
\item The \module{readline} module also gained a number of new
|
|
|
|
functions: \function{get_history_item()},
|
|
|
|
\function{get_current_history_length()}, and \function{redisplay()}.
|
|
|
|
|
2003-01-06 16:04:17 -04:00
|
|
|
\item The \module{rexec} and \module{Bastion} modules have been
|
|
|
|
declared dead, and attempts to import them will fail with a
|
|
|
|
\exception{RuntimeError}. New-style classes provide new ways to break
|
|
|
|
out of the restricted execution environment provided by
|
|
|
|
\module{rexec}, and no one has interest in fixing them or time to do
|
|
|
|
so. If you have applications using \module{rexec}, rewrite them to
|
|
|
|
use something else.
|
|
|
|
|
|
|
|
(Sticking with Python 2.2 or 2.1 will not make your applications any
|
2003-04-24 10:23:43 -03:00
|
|
|
safer because there are known bugs in the \module{rexec} module in
|
2003-04-24 13:38:20 -03:00
|
|
|
those versions. To repeat: if you're using \module{rexec}, stop using
|
2003-01-06 16:04:17 -04:00
|
|
|
it immediately.)
|
|
|
|
|
2003-04-24 10:23:43 -03:00
|
|
|
\item The \module{rotor} module has been deprecated because the
|
|
|
|
algorithm it uses for encryption is not believed to be secure. If
|
|
|
|
you need encryption, use one of the several AES Python modules
|
|
|
|
that are available separately.
|
|
|
|
|
2002-12-30 21:20:30 -04:00
|
|
|
\item The \module{shutil} module gained a \function{move(\var{src},
|
2002-12-31 14:34:54 -04:00
|
|
|
\var{dest})} function that recursively moves a file or directory to a new
|
2002-12-30 21:20:30 -04:00
|
|
|
location.
|
|
|
|
|
2002-05-27 14:19:46 -03:00
|
|
|
\item Support for more advanced POSIX signal handling was added
|
2003-03-13 09:56:53 -04:00
|
|
|
to the \module{signal} but then removed again as it proved impossible
|
|
|
|
to make it work reliably across platforms.
|
2002-05-27 12:08:24 -03:00
|
|
|
|
2002-07-22 15:57:36 -03:00
|
|
|
\item The \module{socket} module now supports timeouts. You
|
|
|
|
can call the \method{settimeout(\var{t})} method on a socket object to
|
|
|
|
set a timeout of \var{t} seconds. Subsequent socket operations that
|
|
|
|
take longer than \var{t} seconds to complete will abort and raise a
|
2003-07-16 17:12:33 -03:00
|
|
|
\exception{socket.timeout} exception.
|
2002-07-22 15:57:36 -03:00
|
|
|
|
|
|
|
The original timeout implementation was by Tim O'Malley. Michael
|
2002-12-31 14:34:54 -04:00
|
|
|
Gilfix integrated it into the Python \module{socket} module and
|
|
|
|
shepherded it through a lengthy review. After the code was checked
|
|
|
|
in, Guido van~Rossum rewrote parts of it. (This is a good example of
|
|
|
|
a collaborative development process in action.)
|
2002-07-22 15:57:36 -03:00
|
|
|
|
2002-12-03 02:13:35 -04:00
|
|
|
\item On Windows, the \module{socket} module now ships with Secure
|
2003-02-10 15:24:50 -04:00
|
|
|
Sockets Layer (SSL) support.
|
2002-12-03 02:13:35 -04:00
|
|
|
|
2003-03-01 22:31:58 -04:00
|
|
|
\item The value of the C \constant{PYTHON_API_VERSION} macro is now
|
|
|
|
exposed at the Python level as \code{sys.api_version}. The current
|
|
|
|
exception can be cleared by calling the new \function{sys.exc_clear()}
|
|
|
|
function.
|
2002-09-13 19:21:42 -03:00
|
|
|
|
2003-01-06 20:07:19 -04:00
|
|
|
\item The new \module{tarfile} module
|
2003-01-08 01:27:42 -04:00
|
|
|
allows reading from and writing to \program{tar}-format archive files.
|
2003-01-06 20:07:19 -04:00
|
|
|
(Contributed by Lars Gust\"abel.)
|
|
|
|
|
2002-07-22 15:57:36 -03:00
|
|
|
\item The new \module{textwrap} module contains functions for wrapping
|
|
|
|
strings containing paragraphs of text. The \function{wrap(\var{text},
|
|
|
|
\var{width})} function takes a string and returns a list containing
|
|
|
|
the text split into lines of no more than the chosen width. The
|
|
|
|
\function{fill(\var{text}, \var{width})} function returns a single
|
|
|
|
string, reformatted to fit into lines no longer than the chosen width.
|
|
|
|
(As you can guess, \function{fill()} is built on top of
|
|
|
|
\function{wrap()}. For example:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import textwrap
|
|
|
|
>>> paragraph = "Not a whit, we defy augury: ... more text ..."
|
|
|
|
>>> textwrap.wrap(paragraph, 60)
|
2002-11-13 10:59:06 -04:00
|
|
|
["Not a whit, we defy augury: there's a special providence in",
|
|
|
|
"the fall of a sparrow. If it be now, 'tis not to come; if it",
|
2002-07-22 15:57:36 -03:00
|
|
|
...]
|
|
|
|
>>> print textwrap.fill(paragraph, 35)
|
|
|
|
Not a whit, we defy augury: there's
|
|
|
|
a special providence in the fall of
|
|
|
|
a sparrow. If it be now, 'tis not
|
|
|
|
to come; if it be not to come, it
|
|
|
|
will be now; if it be not now, yet
|
|
|
|
it will come: the readiness is all.
|
2002-11-13 10:59:06 -04:00
|
|
|
>>>
|
2002-07-22 15:57:36 -03:00
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The module also contains a \class{TextWrapper} class that actually
|
2002-11-13 10:59:06 -04:00
|
|
|
implements the text wrapping strategy. Both the
|
2002-07-22 15:57:36 -03:00
|
|
|
\class{TextWrapper} class and the \function{wrap()} and
|
|
|
|
\function{fill()} functions support a number of additional keyword
|
2003-04-13 18:44:28 -03:00
|
|
|
arguments for fine-tuning the formatting; consult the \ulink{module's
|
|
|
|
documentation}{../lib/module-textwrap.html} for details.
|
2002-07-22 15:57:36 -03:00
|
|
|
(Contributed by Greg Ward.)
|
|
|
|
|
2002-12-30 21:20:30 -04:00
|
|
|
\item The \module{thread} and \module{threading} modules now have
|
2002-12-31 14:34:54 -04:00
|
|
|
companion modules, \module{dummy_thread} and \module{dummy_threading},
|
|
|
|
that provide a do-nothing implementation of the \module{thread}
|
|
|
|
module's interface for platforms where threads are not supported. The
|
|
|
|
intention is to simplify thread-aware modules (ones that \emph{don't}
|
|
|
|
rely on threads to run) by putting the following code at the top:
|
2002-12-30 21:20:30 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
try:
|
|
|
|
import threading as _threading
|
|
|
|
except ImportError:
|
|
|
|
import dummy_threading as _threading
|
|
|
|
\end{verbatim}
|
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
In this example, \module{_threading} is used as the module name to make
|
|
|
|
it clear that the module being used is not necessarily the actual
|
|
|
|
\module{threading} module. Code can call functions and use classes in
|
|
|
|
\module{_threading} whether or not threads are supported, avoiding an
|
|
|
|
\keyword{if} statement and making the code slightly clearer. This
|
|
|
|
module will not magically make multithreaded code run without threads;
|
|
|
|
code that waits for another thread to return or to do something will
|
|
|
|
simply hang forever.
|
2002-12-30 21:20:30 -04:00
|
|
|
|
2002-07-22 16:21:06 -03:00
|
|
|
\item The \module{time} module's \function{strptime()} function has
|
2002-11-13 10:59:06 -04:00
|
|
|
long been an annoyance because it uses the platform C library's
|
2002-07-22 16:21:06 -03:00
|
|
|
\function{strptime()} implementation, and different platforms
|
|
|
|
sometimes have odd bugs. Brett Cannon contributed a portable
|
2002-12-31 14:34:54 -04:00
|
|
|
implementation that's written in pure Python and should behave
|
2002-07-22 16:21:06 -03:00
|
|
|
identically on all platforms.
|
|
|
|
|
2003-04-13 18:44:28 -03:00
|
|
|
\item The new \module{timeit} module helps measure how long snippets
|
|
|
|
of Python code take to execute. The \file{timeit.py} file can be run
|
|
|
|
directly from the command line, or the module's \class{Timer} class
|
|
|
|
can be imported and used directly. Here's a short example that
|
|
|
|
figures out whether it's faster to convert an 8-bit string to Unicode
|
|
|
|
by appending an empty Unicode string to it or by using the
|
|
|
|
\function{unicode()} function:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
import timeit
|
|
|
|
|
|
|
|
timer1 = timeit.Timer('unicode("abc")')
|
|
|
|
timer2 = timeit.Timer('"abc" + u""')
|
|
|
|
|
|
|
|
# Run three trials
|
|
|
|
print timer1.repeat(repeat=3, number=100000)
|
|
|
|
print timer2.repeat(repeat=3, number=100000)
|
|
|
|
|
|
|
|
# On my laptop this outputs:
|
|
|
|
# [0.36831796169281006, 0.37441694736480713, 0.35304892063140869]
|
|
|
|
# [0.17574405670166016, 0.18193507194519043, 0.17565798759460449]
|
|
|
|
\end{verbatim}
|
|
|
|
|
2003-07-10 12:48:33 -03:00
|
|
|
\item The \module{Tix} module has received various bug fixes and
|
2003-01-06 16:04:17 -04:00
|
|
|
updates for the current version of the Tix package.
|
|
|
|
|
2002-12-13 08:53:16 -04:00
|
|
|
\item The \module{Tkinter} module now works with a thread-enabled
|
|
|
|
version of Tcl. Tcl's threading model requires that widgets only be
|
|
|
|
accessed from the thread in which they're created; accesses from
|
|
|
|
another thread can cause Tcl to panic. For certain Tcl interfaces,
|
2002-12-31 14:34:54 -04:00
|
|
|
\module{Tkinter} will now automatically avoid this
|
|
|
|
when a widget is accessed from a different thread by marshalling a
|
|
|
|
command, passing it to the correct thread, and waiting for the
|
|
|
|
results. Other interfaces can't be handled automatically but
|
|
|
|
\module{Tkinter} will now raise an exception on such an access so that
|
2003-07-17 20:56:58 -03:00
|
|
|
you can at least find out about the problem. See
|
2003-04-30 12:03:46 -03:00
|
|
|
\url{http://mail.python.org/pipermail/python-dev/2002-December/031107.html} %
|
2002-12-13 08:53:16 -04:00
|
|
|
for a more detailed explanation of this change. (Implemented by
|
2003-05-07 14:00:35 -03:00
|
|
|
Martin von~L\"owis.)
|
2002-12-13 08:53:16 -04:00
|
|
|
|
2002-11-27 15:11:10 -04:00
|
|
|
\item Calling Tcl methods through \module{_tkinter} no longer
|
|
|
|
returns only strings. Instead, if Tcl returns other objects those
|
|
|
|
objects are converted to their Python equivalent, if one exists, or
|
|
|
|
wrapped with a \class{_tkinter.Tcl_Obj} object if no Python equivalent
|
2002-12-14 16:20:45 -04:00
|
|
|
exists. This behavior can be controlled through the
|
2002-11-27 15:11:10 -04:00
|
|
|
\method{wantobjects()} method of \class{tkapp} objects.
|
2002-11-26 05:47:25 -04:00
|
|
|
|
2002-11-27 15:11:10 -04:00
|
|
|
When using \module{_tkinter} through the \module{Tkinter} module (as
|
|
|
|
most Tkinter applications will), this feature is always activated. It
|
|
|
|
should not cause compatibility problems, since Tkinter would always
|
|
|
|
convert string results to Python types where possible.
|
2002-11-26 05:47:25 -04:00
|
|
|
|
2002-12-14 16:20:45 -04:00
|
|
|
If any incompatibilities are found, the old behavior can be restored
|
2002-11-27 15:11:10 -04:00
|
|
|
by setting the \member{wantobjects} variable in the \module{Tkinter}
|
|
|
|
module to false before creating the first \class{tkapp} object.
|
2002-11-26 05:47:25 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
import Tkinter
|
2002-11-26 17:39:48 -04:00
|
|
|
Tkinter.wantobjects = 0
|
2002-11-26 05:47:25 -04:00
|
|
|
\end{verbatim}
|
|
|
|
|
2002-12-13 08:53:16 -04:00
|
|
|
Any breakage caused by this change should be reported as a bug.
|
2002-11-26 05:47:25 -04:00
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
\item The \module{UserDict} module has a new \class{DictMixin} class which
|
|
|
|
defines all dictionary methods for classes that already have a minimum
|
|
|
|
mapping interface. This greatly simplifies writing classes that need
|
|
|
|
to be substitutable for dictionaries, such as the classes in
|
|
|
|
the \module{shelve} module.
|
|
|
|
|
|
|
|
Adding the mix-in as a superclass provides the full dictionary
|
|
|
|
interface whenever the class defines \method{__getitem__},
|
|
|
|
\method{__setitem__}, \method{__delitem__}, and \method{keys}.
|
|
|
|
For example:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import UserDict
|
|
|
|
>>> class SeqDict(UserDict.DictMixin):
|
|
|
|
... """Dictionary lookalike implemented with lists."""
|
|
|
|
... def __init__(self):
|
|
|
|
... self.keylist = []
|
|
|
|
... self.valuelist = []
|
|
|
|
... def __getitem__(self, key):
|
|
|
|
... try:
|
|
|
|
... i = self.keylist.index(key)
|
|
|
|
... except ValueError:
|
|
|
|
... raise KeyError
|
|
|
|
... return self.valuelist[i]
|
|
|
|
... def __setitem__(self, key, value):
|
|
|
|
... try:
|
|
|
|
... i = self.keylist.index(key)
|
|
|
|
... self.valuelist[i] = value
|
|
|
|
... except ValueError:
|
|
|
|
... self.keylist.append(key)
|
|
|
|
... self.valuelist.append(value)
|
|
|
|
... def __delitem__(self, key):
|
|
|
|
... try:
|
|
|
|
... i = self.keylist.index(key)
|
|
|
|
... except ValueError:
|
|
|
|
... raise KeyError
|
|
|
|
... self.keylist.pop(i)
|
|
|
|
... self.valuelist.pop(i)
|
|
|
|
... def keys(self):
|
|
|
|
... return list(self.keylist)
|
|
|
|
...
|
|
|
|
>>> s = SeqDict()
|
|
|
|
>>> dir(s) # See that other dictionary methods are implemented
|
|
|
|
['__cmp__', '__contains__', '__delitem__', '__doc__', '__getitem__',
|
|
|
|
'__init__', '__iter__', '__len__', '__module__', '__repr__',
|
|
|
|
'__setitem__', 'clear', 'get', 'has_key', 'items', 'iteritems',
|
|
|
|
'iterkeys', 'itervalues', 'keylist', 'keys', 'pop', 'popitem',
|
|
|
|
'setdefault', 'update', 'valuelist', 'values']
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
(Contributed by Raymond Hettinger.)
|
|
|
|
|
2003-04-19 12:38:47 -03:00
|
|
|
\item The DOM implementation
|
|
|
|
in \module{xml.dom.minidom} can now generate XML output in a
|
|
|
|
particular encoding by providing an optional encoding argument to
|
|
|
|
the \method{toxml()} and \method{toprettyxml()} methods of DOM nodes.
|
|
|
|
|
2003-07-17 22:15:51 -03:00
|
|
|
\item The \module{xmlrpclib} module now supports an XML-RPC extension
|
|
|
|
for handling nil data values such as Python's \code{None}. Nil values
|
|
|
|
are always supported on unmarshalling an XML-RPC response. To
|
|
|
|
generate requests containing \code{None}, you must supply a true value
|
|
|
|
for the \var{allow_none} parameter when creating a \class{Marshaller}
|
|
|
|
instance.
|
|
|
|
|
2003-04-19 12:38:47 -03:00
|
|
|
\item The new \module{DocXMLRPCServer} module allows writing
|
|
|
|
self-documenting XML-RPC servers. Run it in demo mode (as a program)
|
|
|
|
to see it in action. Pointing the Web browser to the RPC server
|
|
|
|
produces pydoc-style documentation; pointing xmlrpclib to the
|
|
|
|
server allows invoking the actual methods.
|
|
|
|
(Contributed by Brian Quinlan.)
|
|
|
|
|
2003-04-18 07:39:54 -03:00
|
|
|
\item Support for internationalized domain names (RFCs 3454, 3490,
|
|
|
|
3491, and 3492) has been added. The ``idna'' encoding can be used
|
|
|
|
to convert between a Unicode domain name and the ASCII-compatible
|
2003-04-19 12:38:47 -03:00
|
|
|
encoding (ACE) of that name.
|
2003-04-18 07:39:54 -03:00
|
|
|
|
2003-04-18 18:48:56 -03:00
|
|
|
\begin{alltt}
|
2003-07-16 01:00:14 -03:00
|
|
|
>{}>{}> u"www.Alliancefran\c caise.nu".encode("idna")
|
2003-04-18 07:39:54 -03:00
|
|
|
'www.xn--alliancefranaise-npb.nu'
|
2003-04-18 18:48:56 -03:00
|
|
|
\end{alltt}
|
2003-04-18 07:39:54 -03:00
|
|
|
|
2003-04-19 12:38:47 -03:00
|
|
|
The \module{socket} module has also been extended to transparently
|
|
|
|
convert Unicode hostnames to the ACE version before passing them to
|
|
|
|
the C library. Modules that deal with hostnames such as
|
|
|
|
\module{httplib} and \module{ftplib}) also support Unicode host names;
|
|
|
|
\module{httplib} also sends HTTP \samp{Host} headers using the ACE
|
|
|
|
version of the domain name. \module{urllib} supports Unicode URLs
|
|
|
|
with non-ASCII host names as long as the \code{path} part of the URL
|
|
|
|
is ASCII only.
|
2003-04-18 07:39:54 -03:00
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
To implement this change, the \module{stringprep} module, the
|
|
|
|
\code{mkstringprep} tool and the \code{punycode} encoding have been added.
|
2003-04-18 18:04:39 -03:00
|
|
|
|
2002-05-06 14:46:39 -03:00
|
|
|
\end{itemize}
|
2002-04-15 11:05:59 -03:00
|
|
|
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2003-01-13 15:09:03 -04:00
|
|
|
%======================================================================
|
|
|
|
\subsection{Date/Time Type}
|
|
|
|
|
|
|
|
Date and time types suitable for expressing timestamps were added as
|
|
|
|
the \module{datetime} module. The types don't support different
|
|
|
|
calendars or many fancy features, and just stick to the basics of
|
|
|
|
representing time.
|
|
|
|
|
|
|
|
The three primary types are: \class{date}, representing a day, month,
|
|
|
|
and year; \class{time}, consisting of hour, minute, and second; and
|
|
|
|
\class{datetime}, which contains all the attributes of both
|
2003-03-21 13:23:07 -04:00
|
|
|
\class{date} and \class{time}. There's also a
|
|
|
|
\class{timedelta} class representing differences between two points
|
2003-01-13 15:09:03 -04:00
|
|
|
in time, and time zone logic is implemented by classes inheriting from
|
|
|
|
the abstract \class{tzinfo} class.
|
|
|
|
|
|
|
|
You can create instances of \class{date} and \class{time} by either
|
|
|
|
supplying keyword arguments to the appropriate constructor,
|
|
|
|
e.g. \code{datetime.date(year=1972, month=10, day=15)}, or by using
|
2003-03-21 13:23:07 -04:00
|
|
|
one of a number of class methods. For example, the \method{date.today()}
|
2003-01-13 15:09:03 -04:00
|
|
|
class method returns the current local date.
|
|
|
|
|
|
|
|
Once created, instances of the date/time classes are all immutable.
|
|
|
|
There are a number of methods for producing formatted strings from
|
|
|
|
objects:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import datetime
|
|
|
|
>>> now = datetime.datetime.now()
|
|
|
|
>>> now.isoformat()
|
|
|
|
'2002-12-30T21:27:03.994956'
|
|
|
|
>>> now.ctime() # Only available on date, datetime
|
|
|
|
'Mon Dec 30 21:27:03 2002'
|
2003-01-17 12:20:23 -04:00
|
|
|
>>> now.strftime('%Y %d %b')
|
2003-01-13 15:09:03 -04:00
|
|
|
'2002 30 Dec'
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The \method{replace()} method allows modifying one or more fields
|
2003-07-17 20:56:58 -03:00
|
|
|
of a \class{date} or \class{datetime} instance, returning a new instance:
|
2003-01-13 15:09:03 -04:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> d = datetime.datetime.now()
|
|
|
|
>>> d
|
|
|
|
datetime.datetime(2002, 12, 30, 22, 15, 38, 827738)
|
|
|
|
>>> d.replace(year=2001, hour = 12)
|
|
|
|
datetime.datetime(2001, 12, 30, 12, 15, 38, 827738)
|
|
|
|
>>>
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Instances can be compared, hashed, and converted to strings (the
|
|
|
|
result is the same as that of \method{isoformat()}). \class{date} and
|
|
|
|
\class{datetime} instances can be subtracted from each other, and
|
2003-03-21 13:23:07 -04:00
|
|
|
added to \class{timedelta} instances. The largest missing feature is
|
2003-07-17 20:56:58 -03:00
|
|
|
that there's no standard library support for parsing strings and getting back a
|
2003-03-21 13:23:07 -04:00
|
|
|
\class{date} or \class{datetime}.
|
2003-01-13 15:09:03 -04:00
|
|
|
|
|
|
|
For more information, refer to the \ulink{module's reference
|
2003-04-13 18:44:28 -03:00
|
|
|
documentation}{../lib/module-datetime.html}.
|
2003-01-13 15:09:03 -04:00
|
|
|
(Contributed by Tim Peters.)
|
|
|
|
|
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
%======================================================================
|
2003-05-13 11:26:54 -03:00
|
|
|
\subsection{The optparse Module}
|
2002-11-14 19:07:57 -04:00
|
|
|
|
2002-11-14 19:40:42 -04:00
|
|
|
The \module{getopt} module provides simple parsing of command-line
|
|
|
|
arguments. The new \module{optparse} module (originally named Optik)
|
|
|
|
provides more elaborate command-line parsing that follows the Unix
|
|
|
|
conventions, automatically creates the output for \longprogramopt{help},
|
2002-12-31 14:34:54 -04:00
|
|
|
and can perform different actions for different options.
|
2002-11-14 19:40:42 -04:00
|
|
|
|
|
|
|
You start by creating an instance of \class{OptionParser} and telling
|
|
|
|
it what your program's options are.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
2003-02-17 20:48:23 -04:00
|
|
|
import sys
|
2002-11-14 19:40:42 -04:00
|
|
|
from optparse import OptionParser
|
|
|
|
|
|
|
|
op = OptionParser()
|
|
|
|
op.add_option('-i', '--input',
|
|
|
|
action='store', type='string', dest='input',
|
|
|
|
help='set input filename')
|
|
|
|
op.add_option('-l', '--length',
|
|
|
|
action='store', type='int', dest='length',
|
|
|
|
help='set maximum length of output')
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Parsing a command line is then done by calling the \method{parse_args()}
|
|
|
|
method.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
2003-07-17 20:56:58 -03:00
|
|
|
options, args = op.parse_args(sys.argv[1:])
|
2002-11-14 19:40:42 -04:00
|
|
|
print options
|
|
|
|
print args
|
|
|
|
\end{verbatim}
|
|
|
|
|
2003-07-17 20:56:58 -03:00
|
|
|
This returns an object containing all of the option values,
|
2002-11-14 19:40:42 -04:00
|
|
|
and a list of strings containing the remaining arguments.
|
|
|
|
|
|
|
|
Invoking the script with the various arguments now works as you'd
|
|
|
|
expect it to. Note that the length argument is automatically
|
|
|
|
converted to an integer.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
$ ./python opt.py -i data arg1
|
|
|
|
<Values at 0x400cad4c: {'input': 'data', 'length': None}>
|
|
|
|
['arg1']
|
|
|
|
$ ./python opt.py --input=data --length=4
|
|
|
|
<Values at 0x400cad2c: {'input': 'data', 'length': 4}>
|
2003-02-17 20:48:23 -04:00
|
|
|
[]
|
2002-11-14 19:40:42 -04:00
|
|
|
$
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The help message is automatically generated for you:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
$ ./python opt.py --help
|
|
|
|
usage: opt.py [options]
|
|
|
|
|
|
|
|
options:
|
|
|
|
-h, --help show this help message and exit
|
|
|
|
-iINPUT, --input=INPUT
|
|
|
|
set input filename
|
|
|
|
-lLENGTH, --length=LENGTH
|
|
|
|
set maximum length of output
|
|
|
|
$
|
|
|
|
\end{verbatim}
|
2002-11-19 09:05:33 -04:00
|
|
|
% $ prevent Emacs tex-mode from getting confused
|
2002-11-14 19:40:42 -04:00
|
|
|
|
2003-04-13 18:44:28 -03:00
|
|
|
See the \ulink{module's documentation}{../lib/module-optparse.html}
|
|
|
|
for more details.
|
|
|
|
|
2002-11-14 19:40:42 -04:00
|
|
|
Optik was written by Greg Ward, with suggestions from the readers of
|
|
|
|
the Getopt SIG.
|
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
|
2002-07-22 16:21:06 -03:00
|
|
|
%======================================================================
|
2003-05-13 11:26:54 -03:00
|
|
|
\section{Pymalloc: A Specialized Object Allocator\label{section-pymalloc}}
|
2002-07-22 16:21:06 -03:00
|
|
|
|
2003-03-21 13:23:07 -04:00
|
|
|
Pymalloc, a specialized object allocator written by Vladimir
|
|
|
|
Marangozov, was a feature added to Python 2.1. Pymalloc is intended
|
|
|
|
to be faster than the system \cfunction{malloc()} and to have less
|
|
|
|
memory overhead for allocation patterns typical of Python programs.
|
|
|
|
The allocator uses C's \cfunction{malloc()} function to get large
|
|
|
|
pools of memory and then fulfills smaller memory requests from these
|
|
|
|
pools.
|
2002-07-22 16:21:06 -03:00
|
|
|
|
|
|
|
In 2.1 and 2.2, pymalloc was an experimental feature and wasn't
|
2003-03-21 13:23:07 -04:00
|
|
|
enabled by default; you had to explicitly enable it when compiling
|
|
|
|
Python by providing the
|
2002-07-22 16:21:06 -03:00
|
|
|
\longprogramopt{with-pymalloc} option to the \program{configure}
|
|
|
|
script. In 2.3, pymalloc has had further enhancements and is now
|
|
|
|
enabled by default; you'll have to supply
|
|
|
|
\longprogramopt{without-pymalloc} to disable it.
|
|
|
|
|
|
|
|
This change is transparent to code written in Python; however,
|
|
|
|
pymalloc may expose bugs in C extensions. Authors of C extension
|
2002-12-31 14:34:54 -04:00
|
|
|
modules should test their code with pymalloc enabled,
|
|
|
|
because some incorrect code may cause core dumps at runtime.
|
|
|
|
|
|
|
|
There's one particularly common error that causes problems. There are
|
|
|
|
a number of memory allocation functions in Python's C API that have
|
|
|
|
previously just been aliases for the C library's \cfunction{malloc()}
|
2002-07-22 16:21:06 -03:00
|
|
|
and \cfunction{free()}, meaning that if you accidentally called
|
2002-12-31 14:34:54 -04:00
|
|
|
mismatched functions the error wouldn't be noticeable. When the
|
2002-07-22 16:21:06 -03:00
|
|
|
object allocator is enabled, these functions aren't aliases of
|
|
|
|
\cfunction{malloc()} and \cfunction{free()} any more, and calling the
|
|
|
|
wrong function to free memory may get you a core dump. For example,
|
|
|
|
if memory was allocated using \cfunction{PyObject_Malloc()}, it has to
|
|
|
|
be freed using \cfunction{PyObject_Free()}, not \cfunction{free()}. A
|
|
|
|
few modules included with Python fell afoul of this and had to be
|
|
|
|
fixed; doubtless there are more third-party modules that will have the
|
|
|
|
same problem.
|
|
|
|
|
|
|
|
As part of this change, the confusing multiple interfaces for
|
|
|
|
allocating memory have been consolidated down into two API families.
|
|
|
|
Memory allocated with one family must not be manipulated with
|
2002-12-31 14:34:54 -04:00
|
|
|
functions from the other family. There is one family for allocating
|
2003-07-17 20:56:58 -03:00
|
|
|
chunks of memory and another family of functions specifically for
|
2002-12-31 14:34:54 -04:00
|
|
|
allocating Python objects.
|
2002-07-22 16:21:06 -03:00
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item To allocate and free an undistinguished chunk of memory use
|
|
|
|
the ``raw memory'' family: \cfunction{PyMem_Malloc()},
|
|
|
|
\cfunction{PyMem_Realloc()}, and \cfunction{PyMem_Free()}.
|
|
|
|
|
|
|
|
\item The ``object memory'' family is the interface to the pymalloc
|
|
|
|
facility described above and is biased towards a large number of
|
|
|
|
``small'' allocations: \cfunction{PyObject_Malloc},
|
|
|
|
\cfunction{PyObject_Realloc}, and \cfunction{PyObject_Free}.
|
|
|
|
|
|
|
|
\item To allocate and free Python objects, use the ``object'' family
|
|
|
|
\cfunction{PyObject_New()}, \cfunction{PyObject_NewVar()}, and
|
|
|
|
\cfunction{PyObject_Del()}.
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
Thanks to lots of work by Tim Peters, pymalloc in 2.3 also provides
|
|
|
|
debugging features to catch memory overwrites and doubled frees in
|
|
|
|
both extension modules and in the interpreter itself. To enable this
|
2002-12-31 14:34:54 -04:00
|
|
|
support, compile a debugging version of the Python interpreter by
|
|
|
|
running \program{configure} with \longprogramopt{with-pydebug}.
|
2002-07-22 16:21:06 -03:00
|
|
|
|
|
|
|
To aid extension writers, a header file \file{Misc/pymemcompat.h} is
|
|
|
|
distributed with the source to Python 2.3 that allows Python
|
2002-12-31 14:34:54 -04:00
|
|
|
extensions to use the 2.3 interfaces to memory allocation while
|
|
|
|
compiling against any version of Python since 1.5.2. You would copy
|
|
|
|
the file from Python's source distribution and bundle it with the
|
|
|
|
source of your extension.
|
2002-07-22 16:21:06 -03:00
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
|
|
|
|
\seeurl{http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/python/python/dist/src/Objects/obmalloc.c}
|
|
|
|
{For the full details of the pymalloc implementation, see
|
|
|
|
the comments at the top of the file \file{Objects/obmalloc.c} in the
|
|
|
|
Python source code. The above link points to the file within the
|
|
|
|
SourceForge CVS browser.}
|
|
|
|
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
2002-03-26 22:29:48 -04:00
|
|
|
% ======================================================================
|
2002-05-06 14:46:39 -03:00
|
|
|
\section{Build and C API Changes}
|
|
|
|
|
2002-07-22 15:50:11 -03:00
|
|
|
Changes to Python's build process and to the C API include:
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2002-05-06 14:46:39 -03:00
|
|
|
\begin{itemize}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
\item The cycle detection implementation used by the garbage collection
|
2003-07-17 20:56:58 -03:00
|
|
|
has proven to be stable, so it's now been made mandatory. You can no
|
2002-12-31 14:34:54 -04:00
|
|
|
longer compile Python without it, and the
|
|
|
|
\longprogramopt{with-cycle-gc} switch to \program{configure} has been removed.
|
2002-12-30 21:20:30 -04:00
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
\item Python can now optionally be built as a shared library
|
|
|
|
(\file{libpython2.3.so}) by supplying \longprogramopt{enable-shared}
|
2002-11-13 10:59:06 -04:00
|
|
|
when running Python's \program{configure} script. (Contributed by Ondrej
|
2002-05-10 18:00:05 -03:00
|
|
|
Palkovsky.)
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2002-08-15 11:59:02 -03:00
|
|
|
\item The \csimplemacro{DL_EXPORT} and \csimplemacro{DL_IMPORT} macros
|
|
|
|
are now deprecated. Initialization functions for Python extension
|
|
|
|
modules should now be declared using the new macro
|
2002-07-22 15:50:11 -03:00
|
|
|
\csimplemacro{PyMODINIT_FUNC}, while the Python core will generally
|
|
|
|
use the \csimplemacro{PyAPI_FUNC} and \csimplemacro{PyAPI_DATA}
|
|
|
|
macros.
|
2002-07-22 10:18:59 -03:00
|
|
|
|
2002-11-13 10:59:06 -04:00
|
|
|
\item The interpreter can be compiled without any docstrings for
|
2002-07-11 17:09:50 -03:00
|
|
|
the built-in functions and modules by supplying
|
2002-11-13 10:59:06 -04:00
|
|
|
\longprogramopt{without-doc-strings} to the \program{configure} script.
|
2002-07-11 17:09:50 -03:00
|
|
|
This makes the Python executable about 10\% smaller, but will also
|
|
|
|
mean that you can't get help for Python's built-ins. (Contributed by
|
|
|
|
Gustavo Niemeyer.)
|
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
\item The \cfunction{PyArg_NoArgs()} macro is now deprecated, and code
|
2002-07-11 16:27:46 -03:00
|
|
|
that uses it should be changed. For Python 2.2 and later, the method
|
|
|
|
definition table can specify the
|
2002-11-13 10:59:06 -04:00
|
|
|
\constant{METH_NOARGS} flag, signalling that there are no arguments, and
|
2002-07-11 16:27:46 -03:00
|
|
|
the argument checking can then be removed. If compatibility with
|
|
|
|
pre-2.2 versions of Python is important, the code could use
|
2003-01-17 18:50:10 -04:00
|
|
|
\code{PyArg_ParseTuple(\var{args}, "")} instead, but this will be slower
|
2002-07-11 16:27:46 -03:00
|
|
|
than using \constant{METH_NOARGS}.
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2003-10-23 15:08:03 -03:00
|
|
|
\item \cfunction{PyArg_ParseTuple()} accepts new format characters for various sizes of unsigned integers: \samp{B} for \ctype{unsigned char},
|
|
|
|
\samp{H} for \ctype{unsigned short int},
|
|
|
|
\samp{I} for \ctype{unsigned int},
|
|
|
|
and \samp{K} for \ctype{unsigned long long}.
|
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
\item A new function, \cfunction{PyObject_DelItemString(\var{mapping},
|
2003-07-17 20:56:58 -03:00
|
|
|
char *\var{key})} was added as shorthand for
|
2003-07-12 01:42:30 -03:00
|
|
|
\code{PyObject_DelItem(\var{mapping}, PyString_New(\var{key}))}.
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
\item File objects now manage their internal string buffer
|
2002-12-31 14:34:54 -04:00
|
|
|
differently, increasing it exponentially when needed. This results in
|
|
|
|
the benchmark tests in \file{Lib/test/test_bufio.py} speeding up
|
|
|
|
considerably (from 57 seconds to 1.7 seconds, according to one
|
|
|
|
measurement).
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-05-29 14:30:34 -03:00
|
|
|
\item It's now possible to define class and static methods for a C
|
|
|
|
extension type by setting either the \constant{METH_CLASS} or
|
|
|
|
\constant{METH_STATIC} flags in a method's \ctype{PyMethodDef}
|
|
|
|
structure.
|
2002-04-02 10:25:25 -04:00
|
|
|
|
2002-07-12 17:24:42 -03:00
|
|
|
\item Python now includes a copy of the Expat XML parser's source code,
|
|
|
|
removing any dependence on a system version or local installation of
|
2002-11-13 10:59:06 -04:00
|
|
|
Expat.
|
2002-07-12 17:24:42 -03:00
|
|
|
|
2003-02-11 10:19:56 -04:00
|
|
|
\item If you dynamically allocate type objects in your extension, you
|
2003-02-11 10:30:39 -04:00
|
|
|
should be aware of a change in the rules relating to the
|
2003-02-11 10:19:56 -04:00
|
|
|
\member{__module__} and \member{__name__} attributes. In summary,
|
|
|
|
you will want to ensure the type's dictionary contains a
|
|
|
|
\code{'__module__'} key; making the module name the part of the type
|
|
|
|
name leading up to the final period will no longer have the desired
|
|
|
|
effect. For more detail, read the API reference documentation or the
|
|
|
|
source.
|
|
|
|
|
2002-05-06 14:46:39 -03:00
|
|
|
\end{itemize}
|
|
|
|
|
2002-11-14 19:07:57 -04:00
|
|
|
|
|
|
|
%======================================================================
|
2002-05-06 14:46:39 -03:00
|
|
|
\subsection{Port-Specific Changes}
|
|
|
|
|
2002-05-29 16:20:57 -03:00
|
|
|
Support for a port to IBM's OS/2 using the EMX runtime environment was
|
|
|
|
merged into the main Python source tree. EMX is a POSIX emulation
|
|
|
|
layer over the OS/2 system APIs. The Python port for EMX tries to
|
|
|
|
support all the POSIX-like capability exposed by the EMX runtime, and
|
|
|
|
mostly succeeds; \function{fork()} and \function{fcntl()} are
|
|
|
|
restricted by the limitations of the underlying emulation layer. The
|
|
|
|
standard OS/2 port, which uses IBM's Visual Age compiler, also gained
|
|
|
|
support for case-sensitive import semantics as part of the integration
|
|
|
|
of the EMX port into CVS. (Contributed by Andrew MacIntyre.)
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2002-05-29 14:30:34 -03:00
|
|
|
On MacOS, most toolbox modules have been weaklinked to improve
|
|
|
|
backward compatibility. This means that modules will no longer fail
|
|
|
|
to load if a single routine is missing on the curent OS version.
|
2002-05-29 16:20:57 -03:00
|
|
|
Instead calling the missing routine will raise an exception.
|
|
|
|
(Contributed by Jack Jansen.)
|
2002-03-26 22:29:48 -04:00
|
|
|
|
2002-05-29 16:20:57 -03:00
|
|
|
The RPM spec files, found in the \file{Misc/RPM/} directory in the
|
|
|
|
Python source distribution, were updated for 2.3. (Contributed by
|
|
|
|
Sean Reifschneider.)
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
Other new platforms now supported by Python include AtheOS
|
2003-02-07 10:52:18 -04:00
|
|
|
(\url{http://www.atheos.cx/}), GNU/Hurd, and OpenVMS.
|
2002-07-11 17:50:34 -03:00
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
|
|
|
|
%======================================================================
|
2002-12-31 14:34:54 -04:00
|
|
|
\section{Other Changes and Fixes \label{section-other}}
|
2002-05-07 18:01:16 -03:00
|
|
|
|
2002-11-04 16:17:24 -04:00
|
|
|
As usual, there were a bunch of other improvements and bugfixes
|
|
|
|
scattered throughout the source tree. A search through the CVS change
|
2003-07-16 11:44:12 -03:00
|
|
|
logs finds there were 523 patches applied and 514 bugs fixed between
|
2002-11-04 16:17:24 -04:00
|
|
|
Python 2.2 and 2.3. Both figures are likely to be underestimates.
|
|
|
|
|
|
|
|
Some of the more notable changes are:
|
2002-05-07 18:01:16 -03:00
|
|
|
|
|
|
|
\begin{itemize}
|
2002-03-26 15:17:43 -04:00
|
|
|
|
2003-07-17 22:15:51 -03:00
|
|
|
\item If the \envvar{PYTHONINSPECT} environment variable is set, the
|
|
|
|
Python interpreter will enter the interactive prompt after running a
|
|
|
|
Python program, as if Python had been invoked with the \programopt{-i}
|
|
|
|
option. The environment variable can be set before running the Python
|
|
|
|
interpreter, or it can be set by the Python program as part of its
|
|
|
|
execution.
|
|
|
|
|
2002-11-26 18:07:35 -04:00
|
|
|
\item The \file{regrtest.py} script now provides a way to allow ``all
|
|
|
|
resources except \var{foo}.'' A resource name passed to the
|
|
|
|
\programopt{-u} option can now be prefixed with a hyphen
|
|
|
|
(\character{-}) to mean ``remove this resource.'' For example, the
|
|
|
|
option `\code{\programopt{-u}all,-bsddb}' could be used to enable the
|
|
|
|
use of all resources except \code{bsddb}.
|
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
\item The tools used to build the documentation now work under Cygwin
|
|
|
|
as well as \UNIX.
|
|
|
|
|
2002-08-15 11:59:02 -03:00
|
|
|
\item The \code{SET_LINENO} opcode has been removed. Back in the
|
|
|
|
mists of time, this opcode was needed to produce line numbers in
|
|
|
|
tracebacks and support trace functions (for, e.g., \module{pdb}).
|
|
|
|
Since Python 1.5, the line numbers in tracebacks have been computed
|
|
|
|
using a different mechanism that works with ``python -O''. For Python
|
|
|
|
2.3 Michael Hudson implemented a similar scheme to determine when to
|
|
|
|
call the trace function, removing the need for \code{SET_LINENO}
|
|
|
|
entirely.
|
|
|
|
|
2002-11-04 16:17:24 -04:00
|
|
|
It would be difficult to detect any resulting difference from Python
|
|
|
|
code, apart from a slight speed up when Python is run without
|
2002-08-15 11:59:02 -03:00
|
|
|
\programopt{-O}.
|
|
|
|
|
|
|
|
C extensions that access the \member{f_lineno} field of frame objects
|
|
|
|
should instead call \code{PyCode_Addr2Line(f->f_code, f->f_lasti)}.
|
|
|
|
This will have the added effect of making the code work as desired
|
|
|
|
under ``python -O'' in earlier versions of Python.
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
A nifty new feature is that trace functions can now assign to the
|
|
|
|
\member{f_lineno} attribute of frame objects, changing the line that
|
|
|
|
will be executed next. A \samp{jump} command has been added to the
|
|
|
|
\module{pdb} debugger taking advantage of this new feature.
|
|
|
|
(Implemented by Richie Hindle.)
|
2002-12-30 21:20:30 -04:00
|
|
|
|
2002-05-07 18:01:16 -03:00
|
|
|
\end{itemize}
|
2002-03-26 15:17:43 -04:00
|
|
|
|
2002-05-29 16:20:57 -03:00
|
|
|
|
2002-08-05 22:40:48 -03:00
|
|
|
%======================================================================
|
|
|
|
\section{Porting to Python 2.3}
|
|
|
|
|
2002-12-31 14:34:54 -04:00
|
|
|
This section lists previously described changes that may require
|
|
|
|
changes to your code:
|
2002-11-13 09:24:41 -04:00
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
|
|
|
\item \keyword{yield} is now always a keyword; if it's used as a
|
|
|
|
variable name in your code, a different name must be chosen.
|
|
|
|
|
|
|
|
\item For strings \var{X} and \var{Y}, \code{\var{X} in \var{Y}} now works
|
|
|
|
if \var{X} is more than one character long.
|
|
|
|
|
2002-11-20 09:50:15 -04:00
|
|
|
\item The \function{int()} type constructor will now return a long
|
|
|
|
integer instead of raising an \exception{OverflowError} when a string
|
|
|
|
or floating-point number is too large to fit into an integer.
|
|
|
|
|
2003-02-17 20:43:24 -04:00
|
|
|
\item If you have Unicode strings that contain 8-bit characters, you
|
|
|
|
must declare the file's encoding (UTF-8, Latin-1, or whatever) by
|
|
|
|
adding a comment to the top of the file. See
|
|
|
|
section~\ref{section-encodings} for more information.
|
|
|
|
|
2002-11-27 15:11:10 -04:00
|
|
|
\item Calling Tcl methods through \module{_tkinter} no longer
|
|
|
|
returns only strings. Instead, if Tcl returns other objects those
|
|
|
|
objects are converted to their Python equivalent, if one exists, or
|
|
|
|
wrapped with a \class{_tkinter.Tcl_Obj} object if no Python equivalent
|
|
|
|
exists.
|
|
|
|
|
2003-02-06 11:14:04 -04:00
|
|
|
\item Large octal and hex literals such as
|
2003-02-10 11:08:16 -04:00
|
|
|
\code{0xffffffff} now trigger a \exception{FutureWarning}. Currently
|
2003-02-06 11:14:04 -04:00
|
|
|
they're stored as 32-bit numbers and result in a negative value, but
|
2003-02-10 11:08:16 -04:00
|
|
|
in Python 2.4 they'll become positive long integers.
|
|
|
|
|
|
|
|
There are a few ways to fix this warning. If you really need a
|
|
|
|
positive number, just add an \samp{L} to the end of the literal. If
|
|
|
|
you're trying to get a 32-bit integer with low bits set and have
|
|
|
|
previously used an expression such as \code{~(1 << 31)}, it's probably
|
|
|
|
clearest to start with all bits set and clear the desired upper bits.
|
|
|
|
For example, to clear just the top bit (bit 31), you could write
|
|
|
|
\code{0xffffffffL {\&}{\textasciitilde}(1L<<31)}.
|
2003-02-06 11:14:04 -04:00
|
|
|
|
2002-11-20 09:50:15 -04:00
|
|
|
\item You can no longer disable assertions by assigning to \code{__debug__}.
|
|
|
|
|
2002-11-13 09:24:41 -04:00
|
|
|
\item The Distutils \function{setup()} function has gained various new
|
2002-11-13 10:59:06 -04:00
|
|
|
keyword arguments such as \var{depends}. Old versions of the
|
2003-07-17 20:56:58 -03:00
|
|
|
Distutils will abort if passed unknown keywords. A solution is to check
|
2002-11-13 09:24:41 -04:00
|
|
|
for the presence of the new \function{get_distutil_options()} function
|
2003-07-17 20:56:58 -03:00
|
|
|
in your \file{setup.py} and only uses the new keywords
|
2002-11-13 09:24:41 -04:00
|
|
|
with a version of the Distutils that supports them:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
from distutils import core
|
|
|
|
|
|
|
|
kw = {'sources': 'foo.c', ...}
|
|
|
|
if hasattr(core, 'get_distutil_options'):
|
|
|
|
kw['depends'] = ['foo.h']
|
2002-11-13 10:59:06 -04:00
|
|
|
ext = Extension(**kw)
|
2002-11-13 09:24:41 -04:00
|
|
|
\end{verbatim}
|
|
|
|
|
2002-11-20 09:50:15 -04:00
|
|
|
\item Using \code{None} as a variable name will now result in a
|
|
|
|
\exception{SyntaxWarning} warning.
|
|
|
|
|
|
|
|
\item Names of extension types defined by the modules included with
|
|
|
|
Python now contain the module and a \character{.} in front of the type
|
|
|
|
name.
|
|
|
|
|
2002-11-13 09:24:41 -04:00
|
|
|
\end{itemize}
|
2002-08-05 22:40:48 -03:00
|
|
|
|
|
|
|
|
2002-03-26 15:17:43 -04:00
|
|
|
%======================================================================
|
|
|
|
\section{Acknowledgements \label{acks}}
|
|
|
|
|
2002-03-26 22:29:48 -04:00
|
|
|
The author would like to thank the following people for offering
|
|
|
|
suggestions, corrections and assistance with various drafts of this
|
2003-04-13 18:44:28 -03:00
|
|
|
article: Jeff Bauer, Simon Brunning, Brett Cannon, Michael Chermside,
|
2003-07-30 08:55:06 -03:00
|
|
|
Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., David Fraser,
|
|
|
|
Kelly Gerber,
|
2003-04-13 18:44:28 -03:00
|
|
|
Raymond Hettinger, Michael Hudson, Chris Lambert, Detlef Lannert,
|
2003-05-07 14:00:35 -03:00
|
|
|
Martin von~L\"owis, Andrew MacIntyre, Lalo Martins, Chad Netzer,
|
|
|
|
Gustavo Niemeyer, Neal Norwitz, Hans Nowak, Chris Reedy, Francesco
|
|
|
|
Ricciardi, Vinay Sajip, Neil Schemenauer, Roman Suzi, Jason Tishler,
|
|
|
|
Just van~Rossum.
|
2002-03-26 15:17:43 -04:00
|
|
|
|
|
|
|
\end{document}
|