blob: dcb6ab146b0fe35ae08c8b6d64b5c6eb03637027 [file] [log] [blame]
Fred Drake2db76802004-12-01 05:05:47 +00001\documentclass{howto}
2\usepackage{distutils}
3% $Id$
4
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00005% Fix XXX comments
Fred Drake2db76802004-12-01 05:05:47 +00006
7\title{What's New in Python 2.5}
Thomas Wouters0e3f5912006-08-11 14:57:12 +00008\release{0.9}
Andrew M. Kuchling92e24952004-12-03 13:54:09 +00009\author{A.M. Kuchling}
10\authoraddress{\email{amk@amk.ca}}
Fred Drake2db76802004-12-01 05:05:47 +000011
12\begin{document}
13\maketitle
14\tableofcontents
15
Thomas Wouters0e3f5912006-08-11 14:57:12 +000016This article explains the new features in Python 2.5. The final
17release of Python 2.5 is scheduled for August 2006;
18\pep{356} describes the planned release schedule.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000019
Thomas Wouters0e3f5912006-08-11 14:57:12 +000020The changes in Python 2.5 are an interesting mix of language and
21library improvements. The library enhancements will be more important
22to Python's user community, I think, because several widely-useful
23packages were added. New modules include ElementTree for XML
24processing (section~\ref{module-etree}), the SQLite database module
25(section~\ref{module-sqlite}), and the \module{ctypes} module for
26calling C functions (section~\ref{module-ctypes}).
Fred Drake2db76802004-12-01 05:05:47 +000027
Thomas Wouters0e3f5912006-08-11 14:57:12 +000028The language changes are of middling significance. Some pleasant new
29features were added, but most of them aren't features that you'll use
30every day. Conditional expressions were finally added to the language
31using a novel syntax; see section~\ref{pep-308}. The new
32'\keyword{with}' statement will make writing cleanup code easier
33(section~\ref{pep-343}). Values can now be passed into generators
34(section~\ref{pep-342}). Imports are now visible as either absolute
35or relative (section~\ref{pep-328}). Some corner cases of exception
36handling are handled better (section~\ref{pep-341}). All these
37improvements are worthwhile, but they're improvements to one specific
38language feature or another; none of them are broad modifications to
39Python's semantics.
Fred Drake2db76802004-12-01 05:05:47 +000040
Thomas Wouters0e3f5912006-08-11 14:57:12 +000041As well as the language and library additions, other improvements and
42bugfixes were made throughout the source tree. A search through the
43SVN change logs finds there were 334 patches applied and 443 bugs
44fixed between Python 2.4 and 2.5. (Both figures are likely to be
45underestimates.)
46
47This article doesn't try to be a complete specification of the new
48features; instead changes are briefly introduced using helpful
49examples. For full details, you should always refer to the
50documentation for Python 2.5.
Andrew M. Kuchling437567c2006-03-07 20:48:55 +000051% XXX add hyperlink when the documentation becomes available online.
Fred Drake2db76802004-12-01 05:05:47 +000052If you want to understand the complete implementation and design
53rationale, refer to the PEP for a particular new feature.
54
Thomas Wouters0e3f5912006-08-11 14:57:12 +000055Comments, suggestions, and error reports for this document are
56welcome; please e-mail them to the author or open a bug in the Python
57bug tracker.
Fred Drake2db76802004-12-01 05:05:47 +000058
59%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +000060\section{PEP 308: Conditional Expressions\label{pep-308}}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +000061
Andrew M. Kuchlinge362d932006-03-09 13:56:25 +000062For a long time, people have been requesting a way to write
Thomas Wouters0e3f5912006-08-11 14:57:12 +000063conditional expressions, which are expressions that return value A or
64value B depending on whether a Boolean value is true or false. A
65conditional expression lets you write a single assignment statement
66that has the same effect as the following:
Andrew M. Kuchlinge362d932006-03-09 13:56:25 +000067
68\begin{verbatim}
69if condition:
70 x = true_value
71else:
72 x = false_value
73\end{verbatim}
74
75There have been endless tedious discussions of syntax on both
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000076python-dev and comp.lang.python. A vote was even held that found the
77majority of voters wanted conditional expressions in some form,
78but there was no syntax that was preferred by a clear majority.
79Candidates included C's \code{cond ? true_v : false_v},
Andrew M. Kuchlinge362d932006-03-09 13:56:25 +000080\code{if cond then true_v else false_v}, and 16 other variations.
81
Thomas Wouters0e3f5912006-08-11 14:57:12 +000082Guido van~Rossum eventually chose a surprising syntax:
Andrew M. Kuchlinge362d932006-03-09 13:56:25 +000083
84\begin{verbatim}
85x = true_value if condition else false_value
86\end{verbatim}
87
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000088Evaluation is still lazy as in existing Boolean expressions, so the
89order of evaluation jumps around a bit. The \var{condition}
90expression in the middle is evaluated first, and the \var{true_value}
91expression is evaluated only if the condition was true. Similarly,
92the \var{false_value} expression is only evaluated when the condition
93is false.
Andrew M. Kuchlinge362d932006-03-09 13:56:25 +000094
95This syntax may seem strange and backwards; why does the condition go
96in the \emph{middle} of the expression, and not in the front as in C's
97\code{c ? x : y}? The decision was checked by applying the new syntax
98to the modules in the standard library and seeing how the resulting
99code read. In many cases where a conditional expression is used, one
100value seems to be the 'common case' and one value is an 'exceptional
101case', used only on rarer occasions when the condition isn't met. The
102conditional syntax makes this pattern a bit more obvious:
103
104\begin{verbatim}
105contents = ((doc + '\n') if doc else '')
106\end{verbatim}
107
108I read the above statement as meaning ``here \var{contents} is
Andrew M. Kuchlingd0fcc022006-03-09 13:57:28 +0000109usually assigned a value of \code{doc+'\e n'}; sometimes
Andrew M. Kuchlinge362d932006-03-09 13:56:25 +0000110\var{doc} is empty, in which special case an empty string is returned.''
111I doubt I will use conditional expressions very often where there
112isn't a clear common and uncommon case.
113
114There was some discussion of whether the language should require
115surrounding conditional expressions with parentheses. The decision
116was made to \emph{not} require parentheses in the Python language's
117grammar, but as a matter of style I think you should always use them.
118Consider these two statements:
119
120\begin{verbatim}
121# First version -- no parens
122level = 1 if logging else 0
123
124# Second version -- with parens
125level = (1 if logging else 0)
126\end{verbatim}
127
128In the first version, I think a reader's eye might group the statement
129into 'level = 1', 'if logging', 'else 0', and think that the condition
130decides whether the assignment to \var{level} is performed. The
131second version reads better, in my opinion, because it makes it clear
132that the assignment is always performed and the choice is being made
133between two values.
134
135Another reason for including the brackets: a few odd combinations of
136list comprehensions and lambdas could look like incorrect conditional
137expressions. See \pep{308} for some examples. If you put parentheses
138around your conditional expressions, you won't run into this case.
139
140
141\begin{seealso}
142
143\seepep{308}{Conditional Expressions}{PEP written by
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000144Guido van~Rossum and Raymond D. Hettinger; implemented by Thomas
Andrew M. Kuchlinge362d932006-03-09 13:56:25 +0000145Wouters.}
146
147\end{seealso}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000148
149
150%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000151\section{PEP 309: Partial Function Application\label{pep-309}}
Fred Drake2db76802004-12-01 05:05:47 +0000152
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000153The \module{functools} module is intended to contain tools for
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000154functional-style programming.
Andrew M. Kuchlingb1c96fd2005-03-20 21:42:04 +0000155
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000156One useful tool in this module is the \function{partial()} function.
157For programs written in a functional style, you'll sometimes want to
Andrew M. Kuchling4b000cd2005-04-09 15:51:44 +0000158construct variants of existing functions that have some of the
159parameters filled in. Consider a Python function \code{f(a, b, c)};
160you could create a new function \code{g(b, c)} that was equivalent to
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000161\code{f(1, b, c)}. This is called ``partial function application''.
Andrew M. Kuchling4b000cd2005-04-09 15:51:44 +0000162
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000163\function{partial} takes the arguments
Andrew M. Kuchling4b000cd2005-04-09 15:51:44 +0000164\code{(\var{function}, \var{arg1}, \var{arg2}, ...
165\var{kwarg1}=\var{value1}, \var{kwarg2}=\var{value2})}. The resulting
166object is callable, so you can just call it to invoke \var{function}
167with the filled-in arguments.
168
169Here's a small but realistic example:
170
171\begin{verbatim}
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000172import functools
Andrew M. Kuchling4b000cd2005-04-09 15:51:44 +0000173
174def log (message, subsystem):
175 "Write the contents of 'message' to the specified subsystem."
176 print '%s: %s' % (subsystem, message)
177 ...
178
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000179server_log = functools.partial(log, subsystem='server')
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000180server_log('Unable to open socket')
Andrew M. Kuchling4b000cd2005-04-09 15:51:44 +0000181\end{verbatim}
182
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000183Here's another example, from a program that uses PyGTK. Here a
Andrew M. Kuchling6af7fe02005-08-02 17:20:36 +0000184context-sensitive pop-up menu is being constructed dynamically. The
185callback provided for the menu option is a partially applied version
186of the \method{open_item()} method, where the first argument has been
187provided.
Andrew M. Kuchling4b000cd2005-04-09 15:51:44 +0000188
Andrew M. Kuchling6af7fe02005-08-02 17:20:36 +0000189\begin{verbatim}
190...
191class Application:
192 def open_item(self, path):
193 ...
194 def init (self):
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000195 open_func = functools.partial(self.open_item, item_path)
Andrew M. Kuchling6af7fe02005-08-02 17:20:36 +0000196 popup_menu.append( ("Open", open_func, 1) )
197\end{verbatim}
Andrew M. Kuchlingb1c96fd2005-03-20 21:42:04 +0000198
199
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000200Another function in the \module{functools} module is the
201\function{update_wrapper(\var{wrapper}, \var{wrapped})} function that
202helps you write well-behaved decorators. \function{update_wrapper()}
203copies the name, module, and docstring attribute to a wrapper function
204so that tracebacks inside the wrapped function are easier to
205understand. For example, you might write:
206
207\begin{verbatim}
208def my_decorator(f):
209 def wrapper(*args, **kwds):
210 print 'Calling decorated function'
211 return f(*args, **kwds)
212 functools.update_wrapper(wrapper, f)
213 return wrapper
214\end{verbatim}
215
216\function{wraps()} is a decorator that can be used inside your own
217decorators to copy the wrapped function's information. An alternate
218version of the previous example would be:
219
220\begin{verbatim}
221def my_decorator(f):
222 @functools.wraps(f)
223 def wrapper(*args, **kwds):
224 print 'Calling decorated function'
225 return f(*args, **kwds)
226 return wrapper
227\end{verbatim}
228
Andrew M. Kuchlingb1c96fd2005-03-20 21:42:04 +0000229\begin{seealso}
230
231\seepep{309}{Partial Function Application}{PEP proposed and written by
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000232Peter Harris; implemented by Hye-Shik Chang and Nick Coghlan, with
233adaptations by Raymond Hettinger.}
Andrew M. Kuchlingb1c96fd2005-03-20 21:42:04 +0000234
235\end{seealso}
Fred Drake2db76802004-12-01 05:05:47 +0000236
237
238%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000239\section{PEP 314: Metadata for Python Software Packages v1.1\label{pep-314}}
Fred Drakedb7b0022005-03-20 22:19:47 +0000240
Andrew M. Kuchlingd8d732e2005-04-09 23:59:41 +0000241Some simple dependency support was added to Distutils. The
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000242\function{setup()} function now has \code{requires}, \code{provides},
243and \code{obsoletes} keyword parameters. When you build a source
244distribution using the \code{sdist} command, the dependency
245information will be recorded in the \file{PKG-INFO} file.
Andrew M. Kuchlingd8d732e2005-04-09 23:59:41 +0000246
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000247Another new keyword parameter is \code{download_url}, which should be
248set to a URL for the package's source code. This means it's now
249possible to look up an entry in the package index, determine the
250dependencies for a package, and download the required packages.
Andrew M. Kuchlingd8d732e2005-04-09 23:59:41 +0000251
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000252\begin{verbatim}
253VERSION = '1.0'
254setup(name='PyPackage',
255 version=VERSION,
256 requires=['numarray', 'zlib (>=1.1.4)'],
257 obsoletes=['OldPackage']
258 download_url=('http://www.example.com/pypackage/dist/pkg-%s.tar.gz'
259 % VERSION),
260 )
261\end{verbatim}
Thomas Wouters477c8d52006-05-27 19:21:47 +0000262
263Another new enhancement to the Python package index at
264\url{http://cheeseshop.python.org} is storing source and binary
265archives for a package. The new \command{upload} Distutils command
266will upload a package to the repository.
267
268Before a package can be uploaded, you must be able to build a
269distribution using the \command{sdist} Distutils command. Once that
270works, you can run \code{python setup.py upload} to add your package
271to the PyPI archive. Optionally you can GPG-sign the package by
272supplying the \longprogramopt{sign} and
273\longprogramopt{identity} options.
274
275Package uploading was implemented by Martin von~L\"owis and Richard Jones.
Andrew M. Kuchlingd8d732e2005-04-09 23:59:41 +0000276
277\begin{seealso}
278
279\seepep{314}{Metadata for Python Software Packages v1.1}{PEP proposed
280and written by A.M. Kuchling, Richard Jones, and Fred Drake;
281implemented by Richard Jones and Fred Drake.}
282
283\end{seealso}
Fred Drakedb7b0022005-03-20 22:19:47 +0000284
285
286%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000287\section{PEP 328: Absolute and Relative Imports\label{pep-328}}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000288
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000289The simpler part of PEP 328 was implemented in Python 2.4: parentheses
290could now be used to enclose the names imported from a module using
291the \code{from ... import ...} statement, making it easier to import
292many different names.
293
294The more complicated part has been implemented in Python 2.5:
295importing a module can be specified to use absolute or
296package-relative imports. The plan is to move toward making absolute
297imports the default in future versions of Python.
298
299Let's say you have a package directory like this:
300\begin{verbatim}
301pkg/
302pkg/__init__.py
303pkg/main.py
304pkg/string.py
305\end{verbatim}
306
307This defines a package named \module{pkg} containing the
308\module{pkg.main} and \module{pkg.string} submodules.
309
310Consider the code in the \file{main.py} module. What happens if it
311executes the statement \code{import string}? In Python 2.4 and
312earlier, it will first look in the package's directory to perform a
313relative import, finds \file{pkg/string.py}, imports the contents of
314that file as the \module{pkg.string} module, and that module is bound
315to the name \samp{string} in the \module{pkg.main} module's namespace.
316
317That's fine if \module{pkg.string} was what you wanted. But what if
318you wanted Python's standard \module{string} module? There's no clean
319way to ignore \module{pkg.string} and look for the standard module;
320generally you had to look at the contents of \code{sys.modules}, which
321is slightly unclean.
322Holger Krekel's \module{py.std} package provides a tidier way to perform
323imports from the standard library, \code{import py ; py.std.string.join()},
324but that package isn't available on all Python installations.
325
326Reading code which relies on relative imports is also less clear,
327because a reader may be confused about which module, \module{string}
328or \module{pkg.string}, is intended to be used. Python users soon
329learned not to duplicate the names of standard library modules in the
330names of their packages' submodules, but you can't protect against
331having your submodule's name being used for a new module added in a
332future version of Python.
333
334In Python 2.5, you can switch \keyword{import}'s behaviour to
335absolute imports using a \code{from __future__ import absolute_import}
336directive. This absolute-import behaviour will become the default in
337a future version (probably Python 2.7). Once absolute imports
338are the default, \code{import string} will
339always find the standard library's version.
340It's suggested that users should begin using absolute imports as much
341as possible, so it's preferable to begin writing \code{from pkg import
342string} in your code.
343
344Relative imports are still possible by adding a leading period
345to the module name when using the \code{from ... import} form:
346
347\begin{verbatim}
348# Import names from pkg.string
349from .string import name1, name2
350# Import pkg.string
351from . import string
352\end{verbatim}
353
354This imports the \module{string} module relative to the current
355package, so in \module{pkg.main} this will import \var{name1} and
356\var{name2} from \module{pkg.string}. Additional leading periods
357perform the relative import starting from the parent of the current
358package. For example, code in the \module{A.B.C} module can do:
359
360\begin{verbatim}
361from . import D # Imports A.B.D
362from .. import E # Imports A.E
363from ..F import G # Imports A.F.G
364\end{verbatim}
365
366Leading periods cannot be used with the \code{import \var{modname}}
367form of the import statement, only the \code{from ... import} form.
368
369\begin{seealso}
370
371\seepep{328}{Imports: Multi-Line and Absolute/Relative}
372{PEP written by Aahz; implemented by Thomas Wouters.}
373
374\seeurl{http://codespeak.net/py/current/doc/index.html}
375{The py library by Holger Krekel, which contains the \module{py.std} package.}
376
377\end{seealso}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000378
379
380%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000381\section{PEP 338: Executing Modules as Scripts\label{pep-338}}
Thomas Woutersa9773292006-04-21 09:43:23 +0000382
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000383The \programopt{-m} switch added in Python 2.4 to execute a module as
384a script gained a few more abilities. Instead of being implemented in
385C code inside the Python interpreter, the switch now uses an
386implementation in a new module, \module{runpy}.
387
388The \module{runpy} module implements a more sophisticated import
389mechanism so that it's now possible to run modules in a package such
390as \module{pychecker.checker}. The module also supports alternative
391import mechanisms such as the \module{zipimport} module. This means
392you can add a .zip archive's path to \code{sys.path} and then use the
393\programopt{-m} switch to execute code from the archive.
394
395
396\begin{seealso}
397
398\seepep{338}{Executing modules as scripts}{PEP written and
399implemented by Nick Coghlan.}
400
401\end{seealso}
Thomas Woutersa9773292006-04-21 09:43:23 +0000402
403
404%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000405\section{PEP 341: Unified try/except/finally\label{pep-341}}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000406
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000407Until Python 2.5, the \keyword{try} statement came in two
408flavours. You could use a \keyword{finally} block to ensure that code
409is always executed, or one or more \keyword{except} blocks to catch
410specific exceptions. You couldn't combine both \keyword{except} blocks and a
411\keyword{finally} block, because generating the right bytecode for the
412combined version was complicated and it wasn't clear what the
413semantics of the combined should be.
414
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000415Guido van~Rossum spent some time working with Java, which does support the
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000416equivalent of combining \keyword{except} blocks and a
417\keyword{finally} block, and this clarified what the statement should
418mean. In Python 2.5, you can now write:
419
420\begin{verbatim}
421try:
422 block-1 ...
423except Exception1:
424 handler-1 ...
425except Exception2:
426 handler-2 ...
427else:
428 else-block
429finally:
430 final-block
431\end{verbatim}
432
433The code in \var{block-1} is executed. If the code raises an
Thomas Wouters477c8d52006-05-27 19:21:47 +0000434exception, the various \keyword{except} blocks are tested: if the
435exception is of class \class{Exception1}, \var{handler-1} is executed;
436otherwise if it's of class \class{Exception2}, \var{handler-2} is
437executed, and so forth. If no exception is raised, the
438\var{else-block} is executed.
439
440No matter what happened previously, the \var{final-block} is executed
441once the code block is complete and any raised exceptions handled.
442Even if there's an error in an exception handler or the
443\var{else-block} and a new exception is raised, the
444code in the \var{final-block} is still run.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000445
446\begin{seealso}
447
448\seepep{341}{Unifying try-except and try-finally}{PEP written by Georg Brandl;
449implementation by Thomas Lee.}
450
451\end{seealso}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000452
453
454%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000455\section{PEP 342: New Generator Features\label{pep-342}}
Andrew M. Kuchlinga2e21cb2005-08-02 17:13:21 +0000456
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000457Python 2.5 adds a simple way to pass values \emph{into} a generator.
Andrew M. Kuchling150e3492005-08-23 00:56:06 +0000458As introduced in Python 2.3, generators only produce output; once a
Thomas Wouters477c8d52006-05-27 19:21:47 +0000459generator's code was invoked to create an iterator, there was no way to
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000460pass any new information into the function when its execution is
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000461resumed. Sometimes the ability to pass in some information would be
462useful. Hackish solutions to this include making the generator's code
463look at a global variable and then changing the global variable's
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000464value, or passing in some mutable object that callers then modify.
Andrew M. Kuchling150e3492005-08-23 00:56:06 +0000465
466To refresh your memory of basic generators, here's a simple example:
467
468\begin{verbatim}
469def counter (maximum):
470 i = 0
471 while i < maximum:
472 yield i
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000473 i += 1
Andrew M. Kuchling150e3492005-08-23 00:56:06 +0000474\end{verbatim}
475
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000476When you call \code{counter(10)}, the result is an iterator that
477returns the values from 0 up to 9. On encountering the
478\keyword{yield} statement, the iterator returns the provided value and
479suspends the function's execution, preserving the local variables.
480Execution resumes on the following call to the iterator's
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000481\method{next()} method, picking up after the \keyword{yield} statement.
Andrew M. Kuchling150e3492005-08-23 00:56:06 +0000482
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000483In Python 2.3, \keyword{yield} was a statement; it didn't return any
484value. In 2.5, \keyword{yield} is now an expression, returning a
485value that can be assigned to a variable or otherwise operated on:
Andrew M. Kuchlinga2e21cb2005-08-02 17:13:21 +0000486
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000487\begin{verbatim}
488val = (yield i)
489\end{verbatim}
490
491I recommend that you always put parentheses around a \keyword{yield}
492expression when you're doing something with the returned value, as in
493the above example. The parentheses aren't always necessary, but it's
494easier to always add them instead of having to remember when they're
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000495needed.
496
497(\pep{342} explains the exact rules, which are that a
498\keyword{yield}-expression must always be parenthesized except when it
499occurs at the top-level expression on the right-hand side of an
500assignment. This means you can write \code{val = yield i} but have to
501use parentheses when there's an operation, as in \code{val = (yield i)
502+ 12}.)
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000503
504Values are sent into a generator by calling its
505\method{send(\var{value})} method. The generator's code is then
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000506resumed and the \keyword{yield} expression returns the specified
507\var{value}. If the regular \method{next()} method is called, the
508\keyword{yield} returns \constant{None}.
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000509
510Here's the previous example, modified to allow changing the value of
511the internal counter.
512
513\begin{verbatim}
514def counter (maximum):
515 i = 0
516 while i < maximum:
517 val = (yield i)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000518 # If value provided, change counter
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000519 if val is not None:
520 i = val
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000521 else:
522 i += 1
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000523\end{verbatim}
524
525And here's an example of changing the counter:
526
527\begin{verbatim}
528>>> it = counter(10)
529>>> print it.next()
5300
531>>> print it.next()
5321
533>>> print it.send(8)
5348
535>>> print it.next()
5369
537>>> print it.next()
538Traceback (most recent call last):
539 File ``t.py'', line 15, in ?
540 print it.next()
541StopIteration
Andrew M. Kuchlingc2033702005-08-29 13:30:12 +0000542\end{verbatim}
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000543
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000544Because \keyword{yield} will often be returning \constant{None}, you
545should always check for this case. Don't just use its value in
546expressions unless you're sure that the \method{send()} method
547will be the only method used resume your generator function.
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000548
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000549In addition to \method{send()}, there are two other new methods on
550generators:
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000551
552\begin{itemize}
553
554 \item \method{throw(\var{type}, \var{value}=None,
555 \var{traceback}=None)} is used to raise an exception inside the
556 generator; the exception is raised by the \keyword{yield} expression
557 where the generator's execution is paused.
558
559 \item \method{close()} raises a new \exception{GeneratorExit}
560 exception inside the generator to terminate the iteration.
561 On receiving this
562 exception, the generator's code must either raise
563 \exception{GeneratorExit} or \exception{StopIteration}; catching the
564 exception and doing anything else is illegal and will trigger
565 a \exception{RuntimeError}. \method{close()} will also be called by
Thomas Wouters477c8d52006-05-27 19:21:47 +0000566 Python's garbage collector when the generator is garbage-collected.
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000567
Thomas Wouters477c8d52006-05-27 19:21:47 +0000568 If you need to run cleanup code when a \exception{GeneratorExit} occurs,
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000569 I suggest using a \code{try: ... finally:} suite instead of
570 catching \exception{GeneratorExit}.
571
572\end{itemize}
573
574The cumulative effect of these changes is to turn generators from
575one-way producers of information into both producers and consumers.
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000576
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000577Generators also become \emph{coroutines}, a more generalized form of
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000578subroutines. Subroutines are entered at one point and exited at
Thomas Wouters477c8d52006-05-27 19:21:47 +0000579another point (the top of the function, and a \keyword{return}
580statement), but coroutines can be entered, exited, and resumed at
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000581many different points (the \keyword{yield} statements). We'll have to
582figure out patterns for using coroutines effectively in Python.
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000583
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000584The addition of the \method{close()} method has one side effect that
585isn't obvious. \method{close()} is called when a generator is
586garbage-collected, so this means the generator's code gets one last
587chance to run before the generator is destroyed. This last chance
588means that \code{try...finally} statements in generators can now be
589guaranteed to work; the \keyword{finally} clause will now always get a
590chance to run. The syntactic restriction that you couldn't mix
591\keyword{yield} statements with a \code{try...finally} suite has
592therefore been removed. This seems like a minor bit of language
593trivia, but using generators and \code{try...finally} is actually
594necessary in order to implement the \keyword{with} statement
595described by PEP 343. I'll look at this new statement in the following
596section.
597
598Another even more esoteric effect of this change: previously, the
599\member{gi_frame} attribute of a generator was always a frame object.
600It's now possible for \member{gi_frame} to be \code{None}
601once the generator has been exhausted.
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000602
Andrew M. Kuchlinga2e21cb2005-08-02 17:13:21 +0000603\begin{seealso}
604
605\seepep{342}{Coroutines via Enhanced Generators}{PEP written by
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000606Guido van~Rossum and Phillip J. Eby;
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000607implemented by Phillip J. Eby. Includes examples of
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000608some fancier uses of generators as coroutines.
609
610Earlier versions of these features were proposed in
611\pep{288} by Raymond Hettinger and \pep{325} by Samuele Pedroni.
612}
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000613
614\seeurl{http://en.wikipedia.org/wiki/Coroutine}{The Wikipedia entry for
615coroutines.}
616
Neal Norwitz09179882006-03-04 23:31:45 +0000617\seeurl{http://www.sidhe.org/\~{}dan/blog/archives/000178.html}{An
Andrew M. Kuchling07382062005-08-27 18:45:47 +0000618explanation of coroutines from a Perl point of view, written by Dan
619Sugalski.}
Andrew M. Kuchlinga2e21cb2005-08-02 17:13:21 +0000620
621\end{seealso}
622
623
624%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000625\section{PEP 343: The 'with' statement\label{pep-343}}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000626
Thomas Wouters477c8d52006-05-27 19:21:47 +0000627The '\keyword{with}' statement clarifies code that previously would
628use \code{try...finally} blocks to ensure that clean-up code is
629executed. In this section, I'll discuss the statement as it will
630commonly be used. In the next section, I'll examine the
631implementation details and show how to write objects for use with this
632statement.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000633
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000634The '\keyword{with}' statement is a new control-flow structure whose
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000635basic structure is:
636
637\begin{verbatim}
638with expression [as variable]:
639 with-block
640\end{verbatim}
641
Thomas Wouters477c8d52006-05-27 19:21:47 +0000642The expression is evaluated, and it should result in an object that
643supports the context management protocol. This object may return a
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000644value that can optionally be bound to the name \var{variable}. (Note
Thomas Wouters477c8d52006-05-27 19:21:47 +0000645carefully that \var{variable} is \emph{not} assigned the result of
646\var{expression}.) The object can then run set-up code
647before \var{with-block} is executed and some clean-up code
648is executed after the block is done, even if the block raised an exception.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000649
650To enable the statement in Python 2.5, you need
651to add the following directive to your module:
652
653\begin{verbatim}
654from __future__ import with_statement
655\end{verbatim}
656
657The statement will always be enabled in Python 2.6.
658
Thomas Wouters477c8d52006-05-27 19:21:47 +0000659Some standard Python objects now support the context management
660protocol and can be used with the '\keyword{with}' statement. File
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000661objects are one example:
662
663\begin{verbatim}
664with open('/etc/passwd', 'r') as f:
665 for line in f:
666 print line
667 ... more processing code ...
668\end{verbatim}
669
670After this statement has executed, the file object in \var{f} will
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000671have been automatically closed, even if the 'for' loop
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000672raised an exception part-way through the block.
673
674The \module{threading} module's locks and condition variables
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000675also support the '\keyword{with}' statement:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000676
677\begin{verbatim}
678lock = threading.Lock()
679with lock:
680 # Critical section of code
681 ...
682\end{verbatim}
683
Thomas Wouters477c8d52006-05-27 19:21:47 +0000684The lock is acquired before the block is executed and always released once
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000685the block is complete.
686
687The \module{decimal} module's contexts, which encapsulate the desired
Thomas Wouters477c8d52006-05-27 19:21:47 +0000688precision and rounding characteristics for computations, provide a
689\method{context_manager()} method for getting a context manager:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000690
691\begin{verbatim}
692import decimal
693
694# Displays with default precision of 28 digits
695v1 = decimal.Decimal('578')
696print v1.sqrt()
697
Thomas Wouters477c8d52006-05-27 19:21:47 +0000698ctx = decimal.Context(prec=16)
699with ctx.context_manager():
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000700 # All code in this block uses a precision of 16 digits.
701 # The original context is restored on exiting the block.
702 print v1.sqrt()
703\end{verbatim}
704
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000705\subsection{Writing Context Managers\label{context-managers}}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000706
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000707Under the hood, the '\keyword{with}' statement is fairly complicated.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000708Most people will only use '\keyword{with}' in company with existing
709objects and don't need to know these details, so you can skip the rest
710of this section if you like. Authors of new objects will need to
711understand the details of the underlying implementation and should
712keep reading.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000713
714A high-level explanation of the context management protocol is:
715
716\begin{itemize}
Thomas Wouters477c8d52006-05-27 19:21:47 +0000717
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000718\item The expression is evaluated and should result in an object
Thomas Wouters477c8d52006-05-27 19:21:47 +0000719called a ``context manager''. The context manager must have
720\method{__enter__()} and \method{__exit__()} methods.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000721
Thomas Wouters477c8d52006-05-27 19:21:47 +0000722\item The context manager's \method{__enter__()} method is called. The value
723returned is assigned to \var{VAR}. If no \code{'as \var{VAR}'} clause
724is present, the value is simply discarded.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000725
726\item The code in \var{BLOCK} is executed.
727
Thomas Wouters477c8d52006-05-27 19:21:47 +0000728\item If \var{BLOCK} raises an exception, the
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000729\method{__exit__(\var{type}, \var{value}, \var{traceback})} is called
Thomas Wouters477c8d52006-05-27 19:21:47 +0000730with the exception details, the same values returned by
731\function{sys.exc_info()}. The method's return value controls whether
732the exception is re-raised: any false value re-raises the exception,
733and \code{True} will result in suppressing it. You'll only rarely
734want to suppress the exception, because if you do
735the author of the code containing the
736'\keyword{with}' statement will never realize anything went wrong.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000737
738\item If \var{BLOCK} didn't raise an exception,
Thomas Wouters477c8d52006-05-27 19:21:47 +0000739the \method{__exit__()} method is still called,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000740but \var{type}, \var{value}, and \var{traceback} are all \code{None}.
741
742\end{itemize}
743
744Let's think through an example. I won't present detailed code but
Thomas Wouters477c8d52006-05-27 19:21:47 +0000745will only sketch the methods necessary for a database that supports
746transactions.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000747
748(For people unfamiliar with database terminology: a set of changes to
749the database are grouped into a transaction. Transactions can be
750either committed, meaning that all the changes are written into the
751database, or rolled back, meaning that the changes are all discarded
752and the database is unchanged. See any database textbook for more
753information.)
754% XXX find a shorter reference?
755
756Let's assume there's an object representing a database connection.
757Our goal will be to let the user write code like this:
758
759\begin{verbatim}
760db_connection = DatabaseConnection()
761with db_connection as cursor:
762 cursor.execute('insert into ...')
763 cursor.execute('delete from ...')
764 # ... more operations ...
765\end{verbatim}
766
Thomas Wouters477c8d52006-05-27 19:21:47 +0000767The transaction should be committed if the code in the block
768runs flawlessly or rolled back if there's an exception.
769Here's the basic interface
770for \class{DatabaseConnection} that I'll assume:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000771
772\begin{verbatim}
773class DatabaseConnection:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000774 # Database interface
775 def cursor (self):
776 "Returns a cursor object and starts a new transaction"
777 def commit (self):
778 "Commits current transaction"
779 def rollback (self):
780 "Rolls back current transaction"
781\end{verbatim}
782
Thomas Wouters477c8d52006-05-27 19:21:47 +0000783The \method {__enter__()} method is pretty easy, having only to start
784a new transaction. For this application the resulting cursor object
785would be a useful result, so the method will return it. The user can
786then add \code{as cursor} to their '\keyword{with}' statement to bind
787the cursor to a variable name.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000788
789\begin{verbatim}
Thomas Wouters477c8d52006-05-27 19:21:47 +0000790class DatabaseConnection:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000791 ...
792 def __enter__ (self):
793 # Code to start a new transaction
Thomas Wouters477c8d52006-05-27 19:21:47 +0000794 cursor = self.cursor()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000795 return cursor
796\end{verbatim}
797
798The \method{__exit__()} method is the most complicated because it's
799where most of the work has to be done. The method has to check if an
800exception occurred. If there was no exception, the transaction is
801committed. The transaction is rolled back if there was an exception.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000802
803In the code below, execution will just fall off the end of the
804function, returning the default value of \code{None}. \code{None} is
805false, so the exception will be re-raised automatically. If you
806wished, you could be more explicit and add a \keyword{return}
807statement at the marked location.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000808
809\begin{verbatim}
Thomas Wouters477c8d52006-05-27 19:21:47 +0000810class DatabaseConnection:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000811 ...
812 def __exit__ (self, type, value, tb):
813 if tb is None:
814 # No exception, so commit
Thomas Wouters477c8d52006-05-27 19:21:47 +0000815 self.commit()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000816 else:
817 # Exception occurred, so rollback.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000818 self.rollback()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000819 # return False
820\end{verbatim}
821
822
823\subsection{The contextlib module\label{module-contextlib}}
824
825The new \module{contextlib} module provides some functions and a
Thomas Wouters477c8d52006-05-27 19:21:47 +0000826decorator that are useful for writing objects for use with the
827'\keyword{with}' statement.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000828
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000829The decorator is called \function{contextmanager}, and lets you write
Thomas Wouters477c8d52006-05-27 19:21:47 +0000830a single generator function instead of defining a new class. The generator
831should yield exactly one value. The code up to the \keyword{yield}
832will be executed as the \method{__enter__()} method, and the value
833yielded will be the method's return value that will get bound to the
834variable in the '\keyword{with}' statement's \keyword{as} clause, if
835any. The code after the \keyword{yield} will be executed in the
836\method{__exit__()} method. Any exception raised in the block will be
837raised by the \keyword{yield} statement.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000838
839Our database example from the previous section could be written
840using this decorator as:
841
842\begin{verbatim}
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000843from contextlib import contextmanager
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000844
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000845@contextmanager
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000846def db_transaction (connection):
847 cursor = connection.cursor()
848 try:
849 yield cursor
850 except:
851 connection.rollback()
852 raise
853 else:
854 connection.commit()
855
856db = DatabaseConnection()
857with db_transaction(db) as cursor:
858 ...
859\end{verbatim}
860
Thomas Wouters477c8d52006-05-27 19:21:47 +0000861The \module{contextlib} module also has a \function{nested(\var{mgr1},
862\var{mgr2}, ...)} function that combines a number of context managers so you
863don't need to write nested '\keyword{with}' statements. In this
864example, the single '\keyword{with}' statement both starts a database
865transaction and acquires a thread lock:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000866
867\begin{verbatim}
868lock = threading.Lock()
869with nested (db_transaction(db), lock) as (cursor, locked):
870 ...
871\end{verbatim}
872
Thomas Wouters477c8d52006-05-27 19:21:47 +0000873Finally, the \function{closing(\var{object})} function
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000874returns \var{object} so that it can be bound to a variable,
875and calls \code{\var{object}.close()} at the end of the block.
876
877\begin{verbatim}
878import urllib, sys
879from contextlib import closing
880
881with closing(urllib.urlopen('http://www.yahoo.com')) as f:
882 for line in f:
883 sys.stdout.write(line)
884\end{verbatim}
885
886\begin{seealso}
887
888\seepep{343}{The ``with'' statement}{PEP written by Guido van~Rossum
889and Nick Coghlan; implemented by Mike Bland, Guido van~Rossum, and
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000890Neal Norwitz. The PEP shows the code generated for a '\keyword{with}'
Thomas Wouters477c8d52006-05-27 19:21:47 +0000891statement, which can be helpful in learning how the statement works.}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000892
893\seeurl{../lib/module-contextlib.html}{The documentation
894for the \module{contextlib} module.}
895
896\end{seealso}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +0000897
898
899%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000900\section{PEP 352: Exceptions as New-Style Classes\label{pep-352}}
Andrew M. Kuchling8f4d2552006-03-08 01:50:20 +0000901
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000902Exception classes can now be new-style classes, not just classic
903classes, and the built-in \exception{Exception} class and all the
904standard built-in exceptions (\exception{NameError},
905\exception{ValueError}, etc.) are now new-style classes.
Andrew M. Kuchlingaeadf952006-03-09 19:06:05 +0000906
907The inheritance hierarchy for exceptions has been rearranged a bit.
908In 2.5, the inheritance relationships are:
909
910\begin{verbatim}
911BaseException # New in Python 2.5
912|- KeyboardInterrupt
913|- SystemExit
914|- Exception
915 |- (all other current built-in exceptions)
916\end{verbatim}
917
918This rearrangement was done because people often want to catch all
919exceptions that indicate program errors. \exception{KeyboardInterrupt} and
920\exception{SystemExit} aren't errors, though, and usually represent an explicit
921action such as the user hitting Control-C or code calling
922\function{sys.exit()}. A bare \code{except:} will catch all exceptions,
923so you commonly need to list \exception{KeyboardInterrupt} and
924\exception{SystemExit} in order to re-raise them. The usual pattern is:
925
926\begin{verbatim}
927try:
928 ...
929except (KeyboardInterrupt, SystemExit):
930 raise
931except:
932 # Log error...
933 # Continue running program...
934\end{verbatim}
935
936In Python 2.5, you can now write \code{except Exception} to achieve
937the same result, catching all the exceptions that usually indicate errors
938but leaving \exception{KeyboardInterrupt} and
939\exception{SystemExit} alone. As in previous versions,
940a bare \code{except:} still catches all exceptions.
941
942The goal for Python 3.0 is to require any class raised as an exception
943to derive from \exception{BaseException} or some descendant of
944\exception{BaseException}, and future releases in the
945Python 2.x series may begin to enforce this constraint. Therefore, I
946suggest you begin making all your exception classes derive from
947\exception{Exception} now. It's been suggested that the bare
948\code{except:} form should be removed in Python 3.0, but Guido van~Rossum
949hasn't decided whether to do this or not.
950
951Raising of strings as exceptions, as in the statement \code{raise
952"Error occurred"}, is deprecated in Python 2.5 and will trigger a
953warning. The aim is to be able to remove the string-exception feature
954in a few releases.
955
956
957\begin{seealso}
958
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000959\seepep{352}{Required Superclass for Exceptions}{PEP written by
960Brett Cannon and Guido van~Rossum; implemented by Brett Cannon.}
961
962\end{seealso}
963
964
965%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +0000966\section{PEP 353: Using ssize_t as the index type\label{pep-353}}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000967
968A wide-ranging change to Python's C API, using a new
969\ctype{Py_ssize_t} type definition instead of \ctype{int},
970will permit the interpreter to handle more data on 64-bit platforms.
971This change doesn't affect Python's capacity on 32-bit platforms.
972
973Various pieces of the Python interpreter used C's \ctype{int} type to
974store sizes or counts; for example, the number of items in a list or
975tuple were stored in an \ctype{int}. The C compilers for most 64-bit
976platforms still define \ctype{int} as a 32-bit type, so that meant
977that lists could only hold up to \code{2**31 - 1} = 2147483647 items.
978(There are actually a few different programming models that 64-bit C
979compilers can use -- see
980\url{http://www.unix.org/version2/whatsnew/lp64_wp.html} for a
981discussion -- but the most commonly available model leaves \ctype{int}
982as 32 bits.)
983
984A limit of 2147483647 items doesn't really matter on a 32-bit platform
985because you'll run out of memory before hitting the length limit.
986Each list item requires space for a pointer, which is 4 bytes, plus
987space for a \ctype{PyObject} representing the item. 2147483647*4 is
988already more bytes than a 32-bit address space can contain.
989
990It's possible to address that much memory on a 64-bit platform,
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000991however. The pointers for a list that size would only require 16~GiB
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000992of space, so it's not unreasonable that Python programmers might
993construct lists that large. Therefore, the Python interpreter had to
994be changed to use some type other than \ctype{int}, and this will be a
99564-bit type on 64-bit platforms. The change will cause
996incompatibilities on 64-bit machines, so it was deemed worth making
997the transition now, while the number of 64-bit users is still
998relatively small. (In 5 or 10 years, we may \emph{all} be on 64-bit
999machines, and the transition would be more painful then.)
1000
1001This change most strongly affects authors of C extension modules.
1002Python strings and container types such as lists and tuples
1003now use \ctype{Py_ssize_t} to store their size.
1004Functions such as \cfunction{PyList_Size()}
1005now return \ctype{Py_ssize_t}. Code in extension modules
1006may therefore need to have some variables changed to
1007\ctype{Py_ssize_t}.
1008
1009The \cfunction{PyArg_ParseTuple()} and \cfunction{Py_BuildValue()} functions
1010have a new conversion code, \samp{n}, for \ctype{Py_ssize_t}.
1011\cfunction{PyArg_ParseTuple()}'s \samp{s\#} and \samp{t\#} still output
1012\ctype{int} by default, but you can define the macro
1013\csimplemacro{PY_SSIZE_T_CLEAN} before including \file{Python.h}
1014to make them return \ctype{Py_ssize_t}.
1015
1016\pep{353} has a section on conversion guidelines that
1017extension authors should read to learn about supporting 64-bit
1018platforms.
1019
1020\begin{seealso}
1021
1022\seepep{353}{Using ssize_t as the index type}{PEP written and implemented by Martin von~L\"owis.}
Andrew M. Kuchlingaeadf952006-03-09 19:06:05 +00001023
1024\end{seealso}
Andrew M. Kuchling8f4d2552006-03-08 01:50:20 +00001025
1026
1027%======================================================================
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001028\section{PEP 357: The '__index__' method\label{pep-357}}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +00001029
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001030The NumPy developers had a problem that could only be solved by adding
1031a new special method, \method{__index__}. When using slice notation,
1032as in \code{[\var{start}:\var{stop}:\var{step}]}, the values of the
1033\var{start}, \var{stop}, and \var{step} indexes must all be either
1034integers or long integers. NumPy defines a variety of specialized
1035integer types corresponding to unsigned and signed integers of 8, 16,
103632, and 64 bits, but there was no way to signal that these types could
1037be used as slice indexes.
1038
1039Slicing can't just use the existing \method{__int__} method because
1040that method is also used to implement coercion to integers. If
1041slicing used \method{__int__}, floating-point numbers would also
1042become legal slice indexes and that's clearly an undesirable
1043behaviour.
1044
1045Instead, a new special method called \method{__index__} was added. It
1046takes no arguments and returns an integer giving the slice index to
1047use. For example:
1048
1049\begin{verbatim}
1050class C:
1051 def __index__ (self):
1052 return self.value
1053\end{verbatim}
1054
1055The return value must be either a Python integer or long integer.
1056The interpreter will check that the type returned is correct, and
1057raises a \exception{TypeError} if this requirement isn't met.
1058
1059A corresponding \member{nb_index} slot was added to the C-level
1060\ctype{PyNumberMethods} structure to let C extensions implement this
1061protocol. \cfunction{PyNumber_Index(\var{obj})} can be used in
1062extension code to call the \method{__index__} function and retrieve
1063its result.
1064
1065\begin{seealso}
1066
1067\seepep{357}{Allowing Any Object to be Used for Slicing}{PEP written
1068and implemented by Travis Oliphant.}
1069
1070\end{seealso}
Andrew M. Kuchling437567c2006-03-07 20:48:55 +00001071
1072
1073%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00001074\section{Other Language Changes\label{other-lang}}
Fred Drake2db76802004-12-01 05:05:47 +00001075
1076Here are all of the changes that Python 2.5 makes to the core Python
1077language.
1078
1079\begin{itemize}
Andrew M. Kuchling1cae3f52004-12-03 14:57:21 +00001080
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001081\item The \class{dict} type has a new hook for letting subclasses
1082provide a default value when a key isn't contained in the dictionary.
1083When a key isn't found, the dictionary's
1084\method{__missing__(\var{key})}
1085method will be called. This hook is used to implement
1086the new \class{defaultdict} class in the \module{collections}
1087module. The following example defines a dictionary
1088that returns zero for any missing key:
1089
1090\begin{verbatim}
1091class zerodict (dict):
1092 def __missing__ (self, key):
1093 return 0
1094
1095d = zerodict({1:1, 2:2})
1096print d[1], d[2] # Prints 1, 2
1097print d[3], d[4] # Prints 0, 0
1098\end{verbatim}
1099
Thomas Wouters477c8d52006-05-27 19:21:47 +00001100\item Both 8-bit and Unicode strings have new \method{partition(sep)}
1101and \method{rpartition(sep)} methods that simplify a common use case.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001102
Thomas Wouters477c8d52006-05-27 19:21:47 +00001103The \method{find(S)} method is often used to get an index which is
1104then used to slice the string and obtain the pieces that are before
1105and after the separator.
Thomas Wouters477c8d52006-05-27 19:21:47 +00001106\method{partition(sep)} condenses this
1107pattern into a single method call that returns a 3-tuple containing
1108the substring before the separator, the separator itself, and the
1109substring after the separator. If the separator isn't found, the
1110first element of the tuple is the entire string and the other two
1111elements are empty. \method{rpartition(sep)} also returns a 3-tuple
1112but starts searching from the end of the string; the \samp{r} stands
1113for 'reverse'.
1114
1115Some examples:
1116
1117\begin{verbatim}
1118>>> ('http://www.python.org').partition('://')
1119('http', '://', 'www.python.org')
1120>>> (u'Subject: a quick question').partition(':')
1121(u'Subject', u':', u' a quick question')
1122>>> ('file:/usr/share/doc/index.html').partition('://')
1123('file:/usr/share/doc/index.html', '', '')
1124>>> 'www.python.org'.rpartition('.')
1125('www.python', '.', 'org')
1126\end{verbatim}
1127
1128(Implemented by Fredrik Lundh following a suggestion by Raymond Hettinger.)
1129
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001130\item The \method{startswith()} and \method{endswith()} methods
1131of string types now accept tuples of strings to check for.
1132
1133\begin{verbatim}
1134def is_image_file (filename):
1135 return filename.endswith(('.gif', '.jpg', '.tiff'))
1136\end{verbatim}
1137
1138(Implemented by Georg Brandl following a suggestion by Tom Lynn.)
1139% RFE #1491485
1140
Andrew M. Kuchling1cae3f52004-12-03 14:57:21 +00001141\item The \function{min()} and \function{max()} built-in functions
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001142gained a \code{key} keyword parameter analogous to the \code{key}
1143argument for \method{sort()}. This parameter supplies a function that
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001144takes a single argument and is called for every value in the list;
Andrew M. Kuchling1cae3f52004-12-03 14:57:21 +00001145\function{min()}/\function{max()} will return the element with the
1146smallest/largest return value from this function.
1147For example, to find the longest string in a list, you can do:
1148
1149\begin{verbatim}
1150L = ['medium', 'longest', 'short']
1151# Prints 'longest'
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001152print max(L, key=len)
Andrew M. Kuchling1cae3f52004-12-03 14:57:21 +00001153# Prints 'short', because lexicographically 'short' has the largest value
1154print max(L)
1155\end{verbatim}
1156
1157(Contributed by Steven Bethard and Raymond Hettinger.)
Fred Drake2db76802004-12-01 05:05:47 +00001158
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001159\item Two new built-in functions, \function{any()} and
1160\function{all()}, evaluate whether an iterator contains any true or
1161false values. \function{any()} returns \constant{True} if any value
1162returned by the iterator is true; otherwise it will return
1163\constant{False}. \function{all()} returns \constant{True} only if
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001164all of the values returned by the iterator evaluate as true.
1165(Suggested by Guido van~Rossum, and implemented by Raymond Hettinger.)
1166
1167\item The result of a class's \method{__hash__()} method can now
1168be either a long integer or a regular integer. If a long integer is
1169returned, the hash of that value is taken. In earlier versions the
1170hash value was required to be a regular integer, but in 2.5 the
1171\function{id()} built-in was changed to always return non-negative
1172numbers, and users often seem to use \code{id(self)} in
1173\method{__hash__()} methods (though this is discouraged).
1174% Bug #1536021
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001175
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001176\item ASCII is now the default encoding for modules. It's now
1177a syntax error if a module contains string literals with 8-bit
1178characters but doesn't have an encoding declaration. In Python 2.4
1179this triggered a warning, not a syntax error. See \pep{263}
1180for how to declare a module's encoding; for example, you might add
1181a line like this near the top of the source file:
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001182
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001183\begin{verbatim}
1184# -*- coding: latin1 -*-
1185\end{verbatim}
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001186
Thomas Wouters477c8d52006-05-27 19:21:47 +00001187\item One error that Python programmers sometimes make is forgetting
1188to include an \file{__init__.py} module in a package directory.
1189Debugging this mistake can be confusing, and usually requires running
1190Python with the \programopt{-v} switch to log all the paths searched.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001191In Python 2.5, a new \exception{ImportWarning} warning is triggered when
Thomas Wouters477c8d52006-05-27 19:21:47 +00001192an import would have picked up a directory as a package but no
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001193\file{__init__.py} was found. This warning is silently ignored by default;
1194provide the \programopt{-Wd} option when running the Python executable
1195to display the warning message.
1196(Implemented by Thomas Wouters.)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001197
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001198\item The list of base classes in a class definition can now be empty.
1199As an example, this is now legal:
1200
1201\begin{verbatim}
1202class C():
1203 pass
1204\end{verbatim}
1205(Implemented by Brett Cannon.)
1206
Fred Drake2db76802004-12-01 05:05:47 +00001207\end{itemize}
1208
1209
1210%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00001211\subsection{Interactive Interpreter Changes\label{interactive}}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001212
1213In the interactive interpreter, \code{quit} and \code{exit}
1214have long been strings so that new users get a somewhat helpful message
1215when they try to quit:
1216
1217\begin{verbatim}
1218>>> quit
1219'Use Ctrl-D (i.e. EOF) to exit.'
1220\end{verbatim}
1221
1222In Python 2.5, \code{quit} and \code{exit} are now objects that still
1223produce string representations of themselves, but are also callable.
1224Newbies who try \code{quit()} or \code{exit()} will now exit the
1225interpreter as they expect. (Implemented by Georg Brandl.)
1226
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001227The Python executable now accepts the standard long options
1228\longprogramopt{help} and \longprogramopt{version}; on Windows,
1229it also accepts the \programopt{/?} option for displaying a help message.
1230(Implemented by Georg Brandl.)
1231
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001232
1233%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00001234\subsection{Optimizations\label{opts}}
1235
1236Several of the optimizations were developed at the NeedForSpeed
1237sprint, an event held in Reykjavik, Iceland, from May 21--28 2006.
1238The sprint focused on speed enhancements to the CPython implementation
1239and was funded by EWT LLC with local support from CCP Games. Those
1240optimizations added at this sprint are specially marked in the
1241following list.
Fred Drake2db76802004-12-01 05:05:47 +00001242
1243\begin{itemize}
1244
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001245\item When they were introduced
1246in Python 2.4, the built-in \class{set} and \class{frozenset} types
1247were built on top of Python's dictionary type.
1248In 2.5 the internal data structure has been customized for implementing sets,
1249and as a result sets will use a third less memory and are somewhat faster.
1250(Implemented by Raymond Hettinger.)
Fred Drake2db76802004-12-01 05:05:47 +00001251
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001252\item The speed of some Unicode operations, such as finding
1253substrings, string splitting, and character map encoding and decoding,
1254has been improved. (Substring search and splitting improvements were
Thomas Wouters477c8d52006-05-27 19:21:47 +00001255added by Fredrik Lundh and Andrew Dalke at the NeedForSpeed
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001256sprint. Character maps were improved by Walter D\"orwald and
1257Martin von~L\"owis.)
1258% Patch 1313939, 1359618
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001259
Thomas Wouters477c8d52006-05-27 19:21:47 +00001260\item The \function{long(\var{str}, \var{base})} function is now
1261faster on long digit strings because fewer intermediate results are
1262calculated. The peak is for strings of around 800--1000 digits where
1263the function is 6 times faster.
1264(Contributed by Alan McIntyre and committed at the NeedForSpeed sprint.)
1265% Patch 1442927
1266
1267\item The \module{struct} module now compiles structure format
1268strings into an internal representation and caches this
1269representation, yielding a 20\% speedup. (Contributed by Bob Ippolito
1270at the NeedForSpeed sprint.)
1271
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001272\item The \module{re} module got a 1 or 2\% speedup by switching to
1273Python's allocator functions instead of the system's
1274\cfunction{malloc()} and \cfunction{free()}.
1275(Contributed by Jack Diederich at the NeedForSpeed sprint.)
1276
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001277\item The code generator's peephole optimizer now performs
1278simple constant folding in expressions. If you write something like
1279\code{a = 2+3}, the code generator will do the arithmetic and produce
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001280code corresponding to \code{a = 5}. (Proposed and implemented
1281by Raymond Hettinger.)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001282
Thomas Wouters477c8d52006-05-27 19:21:47 +00001283\item Function calls are now faster because code objects now keep
1284the most recently finished frame (a ``zombie frame'') in an internal
1285field of the code object, reusing it the next time the code object is
1286invoked. (Original patch by Michael Hudson, modified by Armin Rigo
1287and Richard Jones; committed at the NeedForSpeed sprint.)
1288% Patch 876206
1289
1290Frame objects are also slightly smaller, which may improve cache locality
1291and reduce memory usage a bit. (Contributed by Neal Norwitz.)
1292% Patch 1337051
1293
1294\item Python's built-in exceptions are now new-style classes, a change
1295that speeds up instantiation considerably. Exception handling in
1296Python 2.5 is therefore about 30\% faster than in 2.4.
1297(Contributed by Richard Jones, Georg Brandl and Sean Reifschneider at
1298the NeedForSpeed sprint.)
1299
1300\item Importing now caches the paths tried, recording whether
1301they exist or not so that the interpreter makes fewer
1302\cfunction{open()} and \cfunction{stat()} calls on startup.
1303(Contributed by Martin von~L\"owis and Georg Brandl.)
1304% Patch 921466
1305
Fred Drake2db76802004-12-01 05:05:47 +00001306\end{itemize}
1307
1308The net result of the 2.5 optimizations is that Python 2.5 runs the
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001309pystone benchmark around XXX\% faster than Python 2.4.
Fred Drake2db76802004-12-01 05:05:47 +00001310
1311
1312%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00001313\section{New, Improved, and Removed Modules\label{modules}}
Fred Drake2db76802004-12-01 05:05:47 +00001314
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001315The standard library received many enhancements and bug fixes in
1316Python 2.5. Here's a partial list of the most notable changes, sorted
1317alphabetically by module name. Consult the \file{Misc/NEWS} file in
1318the source tree for a more complete list of changes, or look through
1319the SVN logs for all the details.
Fred Drake2db76802004-12-01 05:05:47 +00001320
1321\begin{itemize}
1322
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001323\item The \module{audioop} module now supports the a-LAW encoding,
1324and the code for u-LAW encoding has been improved. (Contributed by
1325Lars Immisch.)
Andrew M. Kuchling3e41b052005-03-01 00:53:46 +00001326
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001327\item The \module{codecs} module gained support for incremental
1328codecs. The \function{codec.lookup()} function now
1329returns a \class{CodecInfo} instance instead of a tuple.
1330\class{CodecInfo} instances behave like a 4-tuple to preserve backward
1331compatibility but also have the attributes \member{encode},
1332\member{decode}, \member{incrementalencoder}, \member{incrementaldecoder},
1333\member{streamwriter}, and \member{streamreader}. Incremental codecs
1334can receive input and produce output in multiple chunks; the output is
1335the same as if the entire input was fed to the non-incremental codec.
1336See the \module{codecs} module documentation for details.
1337(Designed and implemented by Walter D\"orwald.)
1338% Patch 1436130
1339
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001340\item The \module{collections} module gained a new type,
1341\class{defaultdict}, that subclasses the standard \class{dict}
1342type. The new type mostly behaves like a dictionary but constructs a
1343default value when a key isn't present, automatically adding it to the
1344dictionary for the requested key value.
Andrew M. Kuchling3e41b052005-03-01 00:53:46 +00001345
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001346The first argument to \class{defaultdict}'s constructor is a factory
1347function that gets called whenever a key is requested but not found.
1348This factory function receives no arguments, so you can use built-in
1349type constructors such as \function{list()} or \function{int()}. For
1350example,
1351you can make an index of words based on their initial letter like this:
1352
1353\begin{verbatim}
1354words = """Nel mezzo del cammin di nostra vita
1355mi ritrovai per una selva oscura
1356che la diritta via era smarrita""".lower().split()
1357
1358index = defaultdict(list)
1359
1360for w in words:
1361 init_letter = w[0]
1362 index[init_letter].append(w)
1363\end{verbatim}
1364
1365Printing \code{index} results in the following output:
1366
1367\begin{verbatim}
1368defaultdict(<type 'list'>, {'c': ['cammin', 'che'], 'e': ['era'],
1369 'd': ['del', 'di', 'diritta'], 'm': ['mezzo', 'mi'],
1370 'l': ['la'], 'o': ['oscura'], 'n': ['nel', 'nostra'],
1371 'p': ['per'], 's': ['selva', 'smarrita'],
1372 'r': ['ritrovai'], 'u': ['una'], 'v': ['vita', 'via']}
1373\end{verbatim}
1374
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001375(Contributed by Guido van~Rossum.)
1376
1377\item The \class{deque} double-ended queue type supplied by the
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001378\module{collections} module now has a \method{remove(\var{value})}
1379method that removes the first occurrence of \var{value} in the queue,
1380raising \exception{ValueError} if the value isn't found.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001381(Contributed by Raymond Hettinger.)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001382
1383\item New module: The \module{contextlib} module contains helper functions for use
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001384with the new '\keyword{with}' statement. See
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001385section~\ref{module-contextlib} for more about this module.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001386
1387\item New module: The \module{cProfile} module is a C implementation of
1388the existing \module{profile} module that has much lower overhead.
1389The module's interface is the same as \module{profile}: you run
1390\code{cProfile.run('main()')} to profile a function, can save profile
1391data to a file, etc. It's not yet known if the Hotshot profiler,
1392which is also written in C but doesn't match the \module{profile}
1393module's interface, will continue to be maintained in future versions
1394of Python. (Contributed by Armin Rigo.)
1395
Thomas Wouters477c8d52006-05-27 19:21:47 +00001396Also, the \module{pstats} module for analyzing the data measured by
1397the profiler now supports directing the output to any file object
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001398by supplying a \var{stream} argument to the \class{Stats} constructor.
1399(Contributed by Skip Montanaro.)
1400
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001401\item The \module{csv} module, which parses files in
1402comma-separated value format, received several enhancements and a
1403number of bugfixes. You can now set the maximum size in bytes of a
1404field by calling the \method{csv.field_size_limit(\var{new_limit})}
1405function; omitting the \var{new_limit} argument will return the
1406currently-set limit. The \class{reader} class now has a
1407\member{line_num} attribute that counts the number of physical lines
1408read from the source; records can span multiple physical lines, so
1409\member{line_num} is not the same as the number of records read.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001410
1411The CSV parser is now stricter about multi-line quoted
1412fields. Previously, if a line ended within a quoted field without a
1413terminating newline character, a newline would be inserted into the
1414returned field. This behavior caused problems when reading files that
1415contained carriage return characters within fields, so the code was
1416changed to return the field without inserting newlines. As a
1417consequence, if newlines embedded within fields are important, the
1418input should be split into lines in a manner that preserves the
1419newline characters.
1420
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001421(Contributed by Skip Montanaro and Andrew McNamara.)
1422
1423\item The \class{datetime} class in the \module{datetime}
1424module now has a \method{strptime(\var{string}, \var{format})}
1425method for parsing date strings, contributed by Josh Spoerri.
1426It uses the same format characters as \function{time.strptime()} and
1427\function{time.strftime()}:
1428
1429\begin{verbatim}
1430from datetime import datetime
1431
1432ts = datetime.strptime('10:13:15 2006-03-07',
1433 '%H:%M:%S %Y-%m-%d')
1434\end{verbatim}
1435
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001436\item The \method{SequenceMatcher.get_matching_blocks()} method
1437in the \module{difflib} module now guarantees to return a minimal list
1438of blocks describing matching subsequences. Previously, the algorithm would
1439occasionally break a block of matching elements into two list entries.
1440(Enhancement by Tim Peters.)
1441
Thomas Wouters477c8d52006-05-27 19:21:47 +00001442\item The \module{doctest} module gained a \code{SKIP} option that
1443keeps an example from being executed at all. This is intended for
1444code snippets that are usage examples intended for the reader and
1445aren't actually test cases.
1446
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001447An \var{encoding} parameter was added to the \function{testfile()}
1448function and the \class{DocFileSuite} class to specify the file's
1449encoding. This makes it easier to use non-ASCII characters in
1450tests contained within a docstring. (Contributed by Bjorn Tillenius.)
1451% Patch 1080727
1452
1453\item The \module{email} package has been updated to version 4.0.
1454% XXX need to provide some more detail here
1455(Contributed by Barry Warsaw.)
1456
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001457\item The \module{fileinput} module was made more flexible.
1458Unicode filenames are now supported, and a \var{mode} parameter that
1459defaults to \code{"r"} was added to the
1460\function{input()} function to allow opening files in binary or
1461universal-newline mode. Another new parameter, \var{openhook},
1462lets you use a function other than \function{open()}
1463to open the input files. Once you're iterating over
1464the set of files, the \class{FileInput} object's new
1465\method{fileno()} returns the file descriptor for the currently opened file.
1466(Contributed by Georg Brandl.)
1467
1468\item In the \module{gc} module, the new \function{get_count()} function
1469returns a 3-tuple containing the current collection counts for the
1470three GC generations. This is accounting information for the garbage
1471collector; when these counts reach a specified threshold, a garbage
1472collection sweep will be made. The existing \function{gc.collect()}
1473function now takes an optional \var{generation} argument of 0, 1, or 2
1474to specify which generation to collect.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001475(Contributed by Barry Warsaw.)
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001476
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001477\item The \function{nsmallest()} and
1478\function{nlargest()} functions in the \module{heapq} module
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001479now support a \code{key} keyword parameter similar to the one
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001480provided by the \function{min()}/\function{max()} functions
1481and the \method{sort()} methods. For example:
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001482
1483\begin{verbatim}
1484>>> import heapq
1485>>> L = ["short", 'medium', 'longest', 'longer still']
1486>>> heapq.nsmallest(2, L) # Return two lowest elements, lexicographically
1487['longer still', 'longest']
1488>>> heapq.nsmallest(2, L, key=len) # Return two shortest elements
1489['short', 'medium']
1490\end{verbatim}
1491
1492(Contributed by Raymond Hettinger.)
1493
Andrew M. Kuchling511a3a82005-03-20 19:52:18 +00001494\item The \function{itertools.islice()} function now accepts
1495\code{None} for the start and step arguments. This makes it more
1496compatible with the attributes of slice objects, so that you can now write
1497the following:
1498
1499\begin{verbatim}
1500s = slice(5) # Create slice object
1501itertools.islice(iterable, s.start, s.stop, s.step)
1502\end{verbatim}
1503
1504(Contributed by Raymond Hettinger.)
Andrew M. Kuchling3e41b052005-03-01 00:53:46 +00001505
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001506\item The \function{format()} function in the \module{locale} module
1507has been modified and two new functions were added,
1508\function{format_string()} and \function{currency()}.
1509
1510The \function{format()} function's \var{val} parameter could
1511previously be a string as long as no more than one \%char specifier
1512appeared; now the parameter must be exactly one \%char specifier with
1513no surrounding text. An optional \var{monetary} parameter was also
1514added which, if \code{True}, will use the locale's rules for
1515formatting currency in placing a separator between groups of three
1516digits.
1517
1518To format strings with multiple \%char specifiers, use the new
1519\function{format_string()} function that works like \function{format()}
1520but also supports mixing \%char specifiers with
1521arbitrary text.
1522
1523A new \function{currency()} function was also added that formats a
1524number according to the current locale's settings.
1525
1526(Contributed by Georg Brandl.)
1527% Patch 1180296
1528
Thomas Wouters477c8d52006-05-27 19:21:47 +00001529\item The \module{mailbox} module underwent a massive rewrite to add
1530the capability to modify mailboxes in addition to reading them. A new
1531set of classes that include \class{mbox}, \class{MH}, and
1532\class{Maildir} are used to read mailboxes, and have an
1533\method{add(\var{message})} method to add messages,
1534\method{remove(\var{key})} to remove messages, and
1535\method{lock()}/\method{unlock()} to lock/unlock the mailbox. The
1536following example converts a maildir-format mailbox into an mbox-format one:
1537
1538\begin{verbatim}
1539import mailbox
1540
1541# 'factory=None' uses email.Message.Message as the class representing
1542# individual messages.
1543src = mailbox.Maildir('maildir', factory=None)
1544dest = mailbox.mbox('/tmp/mbox')
1545
1546for msg in src:
1547 dest.add(msg)
1548\end{verbatim}
1549
1550(Contributed by Gregory K. Johnson. Funding was provided by Google's
15512005 Summer of Code.)
1552
1553\item New module: the \module{msilib} module allows creating
1554Microsoft Installer \file{.msi} files and CAB files. Some support
1555for reading the \file{.msi} database is also included.
1556(Contributed by Martin von~L\"owis.)
1557
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001558\item The \module{nis} module now supports accessing domains other
1559than the system default domain by supplying a \var{domain} argument to
1560the \function{nis.match()} and \function{nis.maps()} functions.
1561(Contributed by Ben Bell.)
1562
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001563\item The \module{operator} module's \function{itemgetter()}
1564and \function{attrgetter()} functions now support multiple fields.
1565A call such as \code{operator.attrgetter('a', 'b')}
1566will return a function
1567that retrieves the \member{a} and \member{b} attributes. Combining
1568this new feature with the \method{sort()} method's \code{key} parameter
1569lets you easily sort lists using multiple fields.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001570(Contributed by Raymond Hettinger.)
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001571
Thomas Wouters477c8d52006-05-27 19:21:47 +00001572\item The \module{optparse} module was updated to version 1.5.1 of the
1573Optik library. The \class{OptionParser} class gained an
1574\member{epilog} attribute, a string that will be printed after the
1575help message, and a \method{destroy()} method to break reference
1576cycles created by the object. (Contributed by Greg Ward.)
Andrew M. Kuchling3e41b052005-03-01 00:53:46 +00001577
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001578\item The \module{os} module underwent several changes. The
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001579\member{stat_float_times} variable now defaults to true, meaning that
1580\function{os.stat()} will now return time values as floats. (This
1581doesn't necessarily mean that \function{os.stat()} will return times
1582that are precise to fractions of a second; not all systems support
1583such precision.)
Andrew M. Kuchling3e41b052005-03-01 00:53:46 +00001584
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001585Constants named \member{os.SEEK_SET}, \member{os.SEEK_CUR}, and
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001586\member{os.SEEK_END} have been added; these are the parameters to the
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001587\function{os.lseek()} function. Two new constants for locking are
1588\member{os.O_SHLOCK} and \member{os.O_EXLOCK}.
1589
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001590Two new functions, \function{wait3()} and \function{wait4()}, were
1591added. They're similar the \function{waitpid()} function which waits
1592for a child process to exit and returns a tuple of the process ID and
1593its exit status, but \function{wait3()} and \function{wait4()} return
1594additional information. \function{wait3()} doesn't take a process ID
1595as input, so it waits for any child process to exit and returns a
15963-tuple of \var{process-id}, \var{exit-status}, \var{resource-usage}
1597as returned from the \function{resource.getrusage()} function.
1598\function{wait4(\var{pid})} does take a process ID.
1599(Contributed by Chad J. Schroeder.)
1600
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001601On FreeBSD, the \function{os.stat()} function now returns
1602times with nanosecond resolution, and the returned object
1603now has \member{st_gen} and \member{st_birthtime}.
1604The \member{st_flags} member is also available, if the platform supports it.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001605(Contributed by Antti Louko and Diego Petten\`o.)
1606% (Patch 1180695, 1212117)
1607
Thomas Wouters477c8d52006-05-27 19:21:47 +00001608\item The Python debugger provided by the \module{pdb} module
1609can now store lists of commands to execute when a breakpoint is
1610reached and execution stops. Once breakpoint \#1 has been created,
1611enter \samp{commands 1} and enter a series of commands to be executed,
1612finishing the list with \samp{end}. The command list can include
1613commands that resume execution, such as \samp{continue} or
1614\samp{next}. (Contributed by Gr\'egoire Dooms.)
1615% Patch 790710
1616
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001617\item The \module{pickle} and \module{cPickle} modules no
1618longer accept a return value of \code{None} from the
1619\method{__reduce__()} method; the method must return a tuple of
1620arguments instead. The ability to return \code{None} was deprecated
1621in Python 2.4, so this completes the removal of the feature.
1622
Thomas Wouters477c8d52006-05-27 19:21:47 +00001623\item The \module{pkgutil} module, containing various utility
1624functions for finding packages, was enhanced to support PEP 302's
1625import hooks and now also works for packages stored in ZIP-format archives.
1626(Contributed by Phillip J. Eby.)
1627
1628\item The pybench benchmark suite by Marc-Andr\'e~Lemburg is now
1629included in the \file{Tools/pybench} directory. The pybench suite is
1630an improvement on the commonly used \file{pystone.py} program because
1631pybench provides a more detailed measurement of the interpreter's
1632speed. It times particular operations such as function calls,
1633tuple slicing, method lookups, and numeric operations, instead of
1634performing many different operations and reducing the result to a
1635single number as \file{pystone.py} does.
1636
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001637\item The \module{pyexpat} module now uses version 2.0 of the Expat parser.
1638(Contributed by Trent Mick.)
1639
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001640\item The old \module{regex} and \module{regsub} modules, which have been
1641deprecated ever since Python 2.0, have finally been deleted.
1642Other deleted modules: \module{statcache}, \module{tzparse},
1643\module{whrandom}.
1644
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001645\item Also deleted: the \file{lib-old} directory,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001646which includes ancient modules such as \module{dircmp} and
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00001647\module{ni}, was removed. \file{lib-old} wasn't on the default
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001648\code{sys.path}, so unless your programs explicitly added the directory to
1649\code{sys.path}, this removal shouldn't affect your code.
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001650
Thomas Wouters477c8d52006-05-27 19:21:47 +00001651\item The \module{rlcompleter} module is no longer
1652dependent on importing the \module{readline} module and
1653therefore now works on non-{\UNIX} platforms.
1654(Patch from Robert Kiendl.)
1655% Patch #1472854
1656
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00001657\item The \module{SimpleXMLRPCServer} and \module{DocXMLRPCServer}
1658classes now have a \member{rpc_paths} attribute that constrains
1659XML-RPC operations to a limited set of URL paths; the default is
1660to allow only \code{'/'} and \code{'/RPC2'}. Setting
1661\member{rpc_paths} to \code{None} or an empty tuple disables
1662this path checking.
1663% Bug #1473048
1664
Andrew M. Kuchling4678dc82006-01-15 16:11:28 +00001665\item The \module{socket} module now supports \constant{AF_NETLINK}
1666sockets on Linux, thanks to a patch from Philippe Biondi.
1667Netlink sockets are a Linux-specific mechanism for communications
1668between a user-space process and kernel code; an introductory
1669article about them is at \url{http://www.linuxjournal.com/article/7356}.
1670In Python code, netlink addresses are represented as a tuple of 2 integers,
1671\code{(\var{pid}, \var{group_mask})}.
1672
Thomas Wouters477c8d52006-05-27 19:21:47 +00001673Two new methods on socket objects, \method{recv_buf(\var{buffer})} and
1674\method{recvfrom_buf(\var{buffer})}, store the received data in an object
1675that supports the buffer protocol instead of returning the data as a
1676string. This means you can put the data directly into an array or a
1677memory-mapped file.
1678
1679Socket objects also gained \method{getfamily()}, \method{gettype()},
1680and \method{getproto()} accessor methods to retrieve the family, type,
1681and protocol values for the socket.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001682
1683\item New module: the \module{spwd} module provides functions for
1684accessing the shadow password database on systems that support
1685shadow passwords.
1686
Thomas Wouters477c8d52006-05-27 19:21:47 +00001687\item The \module{struct} is now faster because it
1688compiles format strings into \class{Struct} objects
1689with \method{pack()} and \method{unpack()} methods. This is similar
1690to how the \module{re} module lets you create compiled regular
1691expression objects. You can still use the module-level
1692\function{pack()} and \function{unpack()} functions; they'll create
1693\class{Struct} objects and cache them. Or you can use
1694\class{Struct} instances directly:
1695
1696\begin{verbatim}
1697s = struct.Struct('ih3s')
1698
1699data = s.pack(1972, 187, 'abc')
1700year, number, name = s.unpack(data)
1701\end{verbatim}
1702
1703You can also pack and unpack data to and from buffer objects directly
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001704using the \method{pack_into(\var{buffer}, \var{offset}, \var{v1},
Thomas Wouters477c8d52006-05-27 19:21:47 +00001705\var{v2}, ...)} and \method{unpack_from(\var{buffer}, \var{offset})}
1706methods. This lets you store data directly into an array or a
1707memory-mapped file.
1708
1709(\class{Struct} objects were implemented by Bob Ippolito at the
1710NeedForSpeed sprint. Support for buffer objects was added by Martin
1711Blais, also at the NeedForSpeed sprint.)
1712
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001713\item The Python developers switched from CVS to Subversion during the 2.5
Thomas Wouters477c8d52006-05-27 19:21:47 +00001714development process. Information about the exact build version is
1715available as the \code{sys.subversion} variable, a 3-tuple of
1716\code{(\var{interpreter-name}, \var{branch-name},
1717\var{revision-range})}. For example, at the time of writing my copy
1718of 2.5 was reporting \code{('CPython', 'trunk', '45313:45315')}.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001719
1720This information is also available to C extensions via the
1721\cfunction{Py_GetBuildInfo()} function that returns a
1722string of build information like this:
1723\code{"trunk:45355:45356M, Apr 13 2006, 07:42:19"}.
1724(Contributed by Barry Warsaw.)
Fred Drake2db76802004-12-01 05:05:47 +00001725
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001726\item Another new function, \function{sys._current_frames()}, returns
1727the current stack frames for all running threads as a dictionary
1728mapping thread identifiers to the topmost stack frame currently active
1729in that thread at the time the function is called. (Contributed by
1730Tim Peters.)
1731
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001732\item The \class{TarFile} class in the \module{tarfile} module now has
Georg Brandl08c02db2005-07-22 18:39:19 +00001733an \method{extractall()} method that extracts all members from the
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001734archive into the current working directory. It's also possible to set
1735a different directory as the extraction target, and to unpack only a
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001736subset of the archive's members.
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001737
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001738The compression used for a tarfile opened in stream mode can now be
1739autodetected using the mode \code{'r|*'}.
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001740% patch 918101
1741(Contributed by Lars Gust\"abel.)
Gregory P. Smithf21a5f72005-08-21 18:45:59 +00001742
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001743\item The \module{threading} module now lets you set the stack size
1744used when new threads are created. The
1745\function{stack_size(\optional{\var{size}})} function returns the
1746currently configured stack size, and supplying the optional \var{size}
1747parameter sets a new value. Not all platforms support changing the
1748stack size, but Windows, POSIX threading, and OS/2 all do.
1749(Contributed by Andrew MacIntyre.)
1750% Patch 1454481
1751
Andrew M. Kuchlingf688cc52006-03-10 18:50:08 +00001752\item The \module{unicodedata} module has been updated to use version 4.1.0
1753of the Unicode character database. Version 3.2.0 is required
1754by some specifications, so it's still available as
Thomas Wouters477c8d52006-05-27 19:21:47 +00001755\member{unicodedata.ucd_3_2_0}.
Andrew M. Kuchlingf688cc52006-03-10 18:50:08 +00001756
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001757\item New module: the \module{uuid} module generates
1758universally unique identifiers (UUIDs) according to \rfc{4122}. The
1759RFC defines several different UUID versions that are generated from a
1760starting string, from system properties, or purely randomly. This
1761module contains a \class{UUID} class and
1762functions named \function{uuid1()},
1763\function{uuid3()}, \function{uuid4()}, and
1764\function{uuid5()} to generate different versions of UUID. (Version 2 UUIDs
1765are not specified in \rfc{4122} and are not supported by this module.)
1766
1767\begin{verbatim}
1768>>> import uuid
1769>>> # make a UUID based on the host ID and current time
1770>>> uuid.uuid1()
1771UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
1772
1773>>> # make a UUID using an MD5 hash of a namespace UUID and a name
1774>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
1775UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
1776
1777>>> # make a random UUID
1778>>> uuid.uuid4()
1779UUID('16fd2706-8baf-433b-82eb-8c7fada847da')
1780
1781>>> # make a UUID using a SHA-1 hash of a namespace UUID and a name
1782>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
1783UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')
1784\end{verbatim}
1785
1786(Contributed by Ka-Ping Yee.)
1787
1788\item The \module{weakref} module's \class{WeakKeyDictionary} and
1789\class{WeakValueDictionary} types gained new methods for iterating
1790over the weak references contained in the dictionary.
1791\method{iterkeyrefs()} and \method{keyrefs()} methods were
1792added to \class{WeakKeyDictionary}, and
1793\method{itervaluerefs()} and \method{valuerefs()} were added to
1794\class{WeakValueDictionary}. (Contributed by Fred L.~Drake, Jr.)
1795
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001796\item The \module{webbrowser} module received a number of
1797enhancements.
1798It's now usable as a script with \code{python -m webbrowser}, taking a
1799URL as the argument; there are a number of switches
1800to control the behaviour (\programopt{-n} for a new browser window,
1801\programopt{-t} for a new tab). New module-level functions,
1802\function{open_new()} and \function{open_new_tab()}, were added
1803to support this. The module's \function{open()} function supports an
1804additional feature, an \var{autoraise} parameter that signals whether
1805to raise the open window when possible. A number of additional
1806browsers were added to the supported list such as Firefox, Opera,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001807Konqueror, and elinks. (Contributed by Oleg Broytmann and Georg
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001808Brandl.)
1809% Patch #754022
1810
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001811\item The \module{xmlrpclib} module now supports returning
1812 \class{datetime} objects for the XML-RPC date type. Supply
1813 \code{use_datetime=True} to the \function{loads()} function
1814 or the \class{Unmarshaller} class to enable this feature.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001815 (Contributed by Skip Montanaro.)
1816% Patch 1120353
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001817
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001818\item The \module{zipfile} module now supports the ZIP64 version of the
1819format, meaning that a .zip archive can now be larger than 4~GiB and
1820can contain individual files larger than 4~GiB. (Contributed by
1821Ronald Oussoren.)
1822% Patch 1446489
1823
Thomas Wouters477c8d52006-05-27 19:21:47 +00001824\item The \module{zlib} module's \class{Compress} and \class{Decompress}
1825objects now support a \method{copy()} method that makes a copy of the
1826object's internal state and returns a new
1827\class{Compress} or \class{Decompress} object.
1828(Contributed by Chris AtLee.)
1829% Patch 1435422
Gregory P. Smithf21a5f72005-08-21 18:45:59 +00001830
Fred Drake114b8ca2005-03-21 05:47:11 +00001831\end{itemize}
Andrew M. Kuchlinge9b1bf42005-03-20 19:26:30 +00001832
Fred Drake2db76802004-12-01 05:05:47 +00001833
1834
1835%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00001836\subsection{The ctypes package\label{module-ctypes}}
Fred Drake2db76802004-12-01 05:05:47 +00001837
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001838The \module{ctypes} package, written by Thomas Heller, has been added
1839to the standard library. \module{ctypes} lets you call arbitrary functions
1840in shared libraries or DLLs. Long-time users may remember the \module{dl} module, which
1841provides functions for loading shared libraries and calling functions in them. The \module{ctypes} package is much fancier.
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001842
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001843To load a shared library or DLL, you must create an instance of the
1844\class{CDLL} class and provide the name or path of the shared library
1845or DLL. Once that's done, you can call arbitrary functions
1846by accessing them as attributes of the \class{CDLL} object.
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00001847
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001848\begin{verbatim}
1849import ctypes
1850
1851libc = ctypes.CDLL('libc.so.6')
1852result = libc.printf("Line of output\n")
1853\end{verbatim}
1854
1855Type constructors for the various C types are provided: \function{c_int},
1856\function{c_float}, \function{c_double}, \function{c_char_p} (equivalent to \ctype{char *}), and so forth. Unlike Python's types, the C versions are all mutable; you can assign to their \member{value} attribute
1857to change the wrapped value. Python integers and strings will be automatically
1858converted to the corresponding C types, but for other types you
1859must call the correct type constructor. (And I mean \emph{must};
1860getting it wrong will often result in the interpreter crashing
1861with a segmentation fault.)
1862
1863You shouldn't use \function{c_char_p} with a Python string when the C function will be modifying the memory area, because Python strings are
1864supposed to be immutable; breaking this rule will cause puzzling bugs. When you need a modifiable memory area,
1865use \function{create_string_buffer()}:
1866
1867\begin{verbatim}
1868s = "this is a string"
1869buf = ctypes.create_string_buffer(s)
1870libc.strfry(buf)
1871\end{verbatim}
1872
1873C functions are assumed to return integers, but you can set
1874the \member{restype} attribute of the function object to
1875change this:
1876
1877\begin{verbatim}
1878>>> libc.atof('2.71828')
1879-1783957616
1880>>> libc.atof.restype = ctypes.c_double
1881>>> libc.atof('2.71828')
18822.71828
1883\end{verbatim}
1884
1885\module{ctypes} also provides a wrapper for Python's C API
1886as the \code{ctypes.pythonapi} object. This object does \emph{not}
1887release the global interpreter lock before calling a function, because the lock must be held when calling into the interpreter's code.
1888There's a \class{py_object()} type constructor that will create a
1889\ctype{PyObject *} pointer. A simple usage:
1890
1891\begin{verbatim}
1892import ctypes
1893
1894d = {}
1895ctypes.pythonapi.PyObject_SetItem(ctypes.py_object(d),
1896 ctypes.py_object("abc"), ctypes.py_object(1))
1897# d is now {'abc', 1}.
1898\end{verbatim}
1899
1900Don't forget to use \class{py_object()}; if it's omitted you end
1901up with a segmentation fault.
1902
1903\module{ctypes} has been around for a while, but people still write
1904and distribution hand-coded extension modules because you can't rely on \module{ctypes} being present.
1905Perhaps developers will begin to write
1906Python wrappers atop a library accessed through \module{ctypes} instead
1907of extension modules, now that \module{ctypes} is included with core Python.
1908
1909\begin{seealso}
1910
1911\seeurl{http://starship.python.net/crew/theller/ctypes/}
1912{The ctypes web page, with a tutorial, reference, and FAQ.}
1913
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001914\seeurl{../lib/module-ctypes.html}{The documentation
1915for the \module{ctypes} module.}
1916
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001917\end{seealso}
1918
1919
1920%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00001921\subsection{The ElementTree package\label{module-etree}}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001922
1923A subset of Fredrik Lundh's ElementTree library for processing XML has
Thomas Wouters477c8d52006-05-27 19:21:47 +00001924been added to the standard library as \module{xml.etree}. The
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001925available modules are
1926\module{ElementTree}, \module{ElementPath}, and
1927\module{ElementInclude} from ElementTree 1.2.6.
1928The \module{cElementTree} accelerator module is also included.
1929
1930The rest of this section will provide a brief overview of using
1931ElementTree. Full documentation for ElementTree is available at
1932\url{http://effbot.org/zone/element-index.htm}.
1933
1934ElementTree represents an XML document as a tree of element nodes.
1935The text content of the document is stored as the \member{.text}
1936and \member{.tail} attributes of
1937(This is one of the major differences between ElementTree and
1938the Document Object Model; in the DOM there are many different
1939types of node, including \class{TextNode}.)
1940
1941The most commonly used parsing function is \function{parse()}, that
1942takes either a string (assumed to contain a filename) or a file-like
1943object and returns an \class{ElementTree} instance:
1944
1945\begin{verbatim}
Thomas Wouters477c8d52006-05-27 19:21:47 +00001946from xml.etree import ElementTree as ET
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001947
1948tree = ET.parse('ex-1.xml')
1949
1950feed = urllib.urlopen(
1951 'http://planet.python.org/rss10.xml')
1952tree = ET.parse(feed)
1953\end{verbatim}
1954
1955Once you have an \class{ElementTree} instance, you
1956can call its \method{getroot()} method to get the root \class{Element} node.
1957
1958There's also an \function{XML()} function that takes a string literal
1959and returns an \class{Element} node (not an \class{ElementTree}).
1960This function provides a tidy way to incorporate XML fragments,
1961approaching the convenience of an XML literal:
1962
1963\begin{verbatim}
Thomas Wouters477c8d52006-05-27 19:21:47 +00001964svg = ET.XML("""<svg width="10px" version="1.0">
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001965 </svg>""")
1966svg.set('height', '320px')
1967svg.append(elem1)
1968\end{verbatim}
1969
1970Each XML element supports some dictionary-like and some list-like
1971access methods. Dictionary-like operations are used to access attribute
1972values, and list-like operations are used to access child nodes.
1973
1974\begin{tableii}{c|l}{code}{Operation}{Result}
1975 \lineii{elem[n]}{Returns n'th child element.}
1976 \lineii{elem[m:n]}{Returns list of m'th through n'th child elements.}
1977 \lineii{len(elem)}{Returns number of child elements.}
Thomas Wouters477c8d52006-05-27 19:21:47 +00001978 \lineii{list(elem)}{Returns list of child elements.}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001979 \lineii{elem.append(elem2)}{Adds \var{elem2} as a child.}
1980 \lineii{elem.insert(index, elem2)}{Inserts \var{elem2} at the specified location.}
1981 \lineii{del elem[n]}{Deletes n'th child element.}
1982 \lineii{elem.keys()}{Returns list of attribute names.}
1983 \lineii{elem.get(name)}{Returns value of attribute \var{name}.}
1984 \lineii{elem.set(name, value)}{Sets new value for attribute \var{name}.}
1985 \lineii{elem.attrib}{Retrieves the dictionary containing attributes.}
1986 \lineii{del elem.attrib[name]}{Deletes attribute \var{name}.}
1987\end{tableii}
1988
1989Comments and processing instructions are also represented as
1990\class{Element} nodes. To check if a node is a comment or processing
1991instructions:
1992
1993\begin{verbatim}
1994if elem.tag is ET.Comment:
1995 ...
1996elif elem.tag is ET.ProcessingInstruction:
1997 ...
1998\end{verbatim}
1999
2000To generate XML output, you should call the
2001\method{ElementTree.write()} method. Like \function{parse()},
2002it can take either a string or a file-like object:
2003
2004\begin{verbatim}
2005# Encoding is US-ASCII
2006tree.write('output.xml')
2007
2008# Encoding is UTF-8
2009f = open('output.xml', 'w')
Thomas Wouters477c8d52006-05-27 19:21:47 +00002010tree.write(f, encoding='utf-8')
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002011\end{verbatim}
2012
Thomas Wouters477c8d52006-05-27 19:21:47 +00002013(Caution: the default encoding used for output is ASCII. For general
2014XML work, where an element's name may contain arbitrary Unicode
2015characters, ASCII isn't a very useful encoding because it will raise
2016an exception if an element's name contains any characters with values
2017greater than 127. Therefore, it's best to specify a different
2018encoding such as UTF-8 that can handle any Unicode character.)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002019
2020This section is only a partial description of the ElementTree interfaces.
2021Please read the package's official documentation for more details.
2022
2023\begin{seealso}
2024
2025\seeurl{http://effbot.org/zone/element-index.htm}
2026{Official documentation for ElementTree.}
2027
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002028\end{seealso}
2029
2030
2031%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00002032\subsection{The hashlib package\label{module-hashlib}}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002033
2034A new \module{hashlib} module, written by Gregory P. Smith,
2035has been added to replace the
2036\module{md5} and \module{sha} modules. \module{hashlib} adds support
2037for additional secure hashes (SHA-224, SHA-256, SHA-384, and SHA-512).
2038When available, the module uses OpenSSL for fast platform optimized
2039implementations of algorithms.
2040
2041The old \module{md5} and \module{sha} modules still exist as wrappers
2042around hashlib to preserve backwards compatibility. The new module's
2043interface is very close to that of the old modules, but not identical.
2044The most significant difference is that the constructor functions
2045for creating new hashing objects are named differently.
2046
2047\begin{verbatim}
2048# Old versions
2049h = md5.md5()
2050h = md5.new()
2051
2052# New version
2053h = hashlib.md5()
2054
2055# Old versions
2056h = sha.sha()
2057h = sha.new()
2058
2059# New version
2060h = hashlib.sha1()
2061
2062# Hash that weren't previously available
2063h = hashlib.sha224()
2064h = hashlib.sha256()
2065h = hashlib.sha384()
2066h = hashlib.sha512()
2067
2068# Alternative form
2069h = hashlib.new('md5') # Provide algorithm as a string
2070\end{verbatim}
2071
2072Once a hash object has been created, its methods are the same as before:
2073\method{update(\var{string})} hashes the specified string into the
2074current digest state, \method{digest()} and \method{hexdigest()}
2075return the digest value as a binary string or a string of hex digits,
2076and \method{copy()} returns a new hashing object with the same digest state.
2077
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002078\begin{seealso}
2079
2080\seeurl{../lib/module-hashlib.html}{The documentation
2081for the \module{hashlib} module.}
2082
2083\end{seealso}
2084
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002085
2086%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00002087\subsection{The sqlite3 package\label{module-sqlite}}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002088
2089The pysqlite module (\url{http://www.pysqlite.org}), a wrapper for the
2090SQLite embedded database, has been added to the standard library under
2091the package name \module{sqlite3}.
2092
2093SQLite is a C library that provides a SQL-language database that
2094stores data in disk files without requiring a separate server process.
2095pysqlite was written by Gerhard H\"aring and provides a SQL interface
2096compliant with the DB-API 2.0 specification described by
2097\pep{249}. This means that it should be possible to write the first
2098version of your applications using SQLite for data storage. If
2099switching to a larger database such as PostgreSQL or Oracle is
2100later necessary, the switch should be relatively easy.
2101
2102If you're compiling the Python source yourself, note that the source
2103tree doesn't include the SQLite code, only the wrapper module.
2104You'll need to have the SQLite libraries and headers installed before
2105compiling Python, and the build process will compile the module when
2106the necessary headers are available.
2107
2108To use the module, you must first create a \class{Connection} object
2109that represents the database. Here the data will be stored in the
2110\file{/tmp/example} file:
2111
2112\begin{verbatim}
2113conn = sqlite3.connect('/tmp/example')
2114\end{verbatim}
2115
2116You can also supply the special name \samp{:memory:} to create
2117a database in RAM.
2118
2119Once you have a \class{Connection}, you can create a \class{Cursor}
2120object and call its \method{execute()} method to perform SQL commands:
2121
2122\begin{verbatim}
2123c = conn.cursor()
2124
2125# Create table
2126c.execute('''create table stocks
2127(date timestamp, trans varchar, symbol varchar,
2128 qty decimal, price decimal)''')
2129
2130# Insert a row of data
2131c.execute("""insert into stocks
2132 values ('2006-01-05','BUY','RHAT',100,35.14)""")
2133\end{verbatim}
2134
2135Usually your SQL operations will need to use values from Python
2136variables. You shouldn't assemble your query using Python's string
2137operations because doing so is insecure; it makes your program
2138vulnerable to an SQL injection attack.
2139
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002140Instead, use the DB-API's parameter substitution. Put \samp{?} as a
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002141placeholder wherever you want to use a value, and then provide a tuple
2142of values as the second argument to the cursor's \method{execute()}
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002143method. (Other database modules may use a different placeholder,
2144such as \samp{\%s} or \samp{:1}.) For example:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002145
2146\begin{verbatim}
2147# Never do this -- insecure!
2148symbol = 'IBM'
2149c.execute("... where symbol = '%s'" % symbol)
2150
2151# Do this instead
2152t = (symbol,)
Thomas Wouters477c8d52006-05-27 19:21:47 +00002153c.execute('select * from stocks where symbol=?', t)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002154
2155# Larger example
2156for t in (('2006-03-28', 'BUY', 'IBM', 1000, 45.00),
2157 ('2006-04-05', 'BUY', 'MSOFT', 1000, 72.00),
2158 ('2006-04-06', 'SELL', 'IBM', 500, 53.00),
2159 ):
2160 c.execute('insert into stocks values (?,?,?,?,?)', t)
2161\end{verbatim}
2162
2163To retrieve data after executing a SELECT statement, you can either
2164treat the cursor as an iterator, call the cursor's \method{fetchone()}
2165method to retrieve a single matching row,
2166or call \method{fetchall()} to get a list of the matching rows.
2167
2168This example uses the iterator form:
2169
2170\begin{verbatim}
2171>>> c = conn.cursor()
2172>>> c.execute('select * from stocks order by price')
2173>>> for row in c:
2174... print row
2175...
2176(u'2006-01-05', u'BUY', u'RHAT', 100, 35.140000000000001)
2177(u'2006-03-28', u'BUY', u'IBM', 1000, 45.0)
2178(u'2006-04-06', u'SELL', u'IBM', 500, 53.0)
2179(u'2006-04-05', u'BUY', u'MSOFT', 1000, 72.0)
2180>>>
2181\end{verbatim}
2182
2183For more information about the SQL dialect supported by SQLite, see
2184\url{http://www.sqlite.org}.
2185
2186\begin{seealso}
2187
2188\seeurl{http://www.pysqlite.org}
2189{The pysqlite web page.}
2190
2191\seeurl{http://www.sqlite.org}
2192{The SQLite web page; the documentation describes the syntax and the
2193available data types for the supported SQL dialect.}
2194
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002195\seeurl{../lib/module-sqlite3.html}{The documentation
2196for the \module{sqlite3} module.}
2197
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002198\seepep{249}{Database API Specification 2.0}{PEP written by
2199Marc-Andr\'e Lemburg.}
2200
2201\end{seealso}
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00002202
Fred Drake2db76802004-12-01 05:05:47 +00002203
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002204%======================================================================
2205\subsection{The wsgiref package\label{module-wsgiref}}
2206
2207% XXX should this be in a PEP 333 section instead?
2208
2209The Web Server Gateway Interface (WSGI) v1.0 defines a standard
2210interface between web servers and Python web applications and is
2211described in \pep{333}. The \module{wsgiref} package is a reference
2212implementation of the WSGI specification.
2213
2214The package includes a basic HTTP server that will run a WSGI
2215application; this server is useful for debugging but isn't intended for
2216production use. Setting up a server takes only a few lines of code:
2217
2218\begin{verbatim}
2219from wsgiref import simple_server
2220
2221wsgi_app = ...
2222
2223host = ''
2224port = 8000
2225httpd = simple_server.make_server(host, port, wsgi_app)
2226httpd.serve_forever()
2227\end{verbatim}
2228
2229% XXX discuss structure of WSGI applications?
2230% XXX provide an example using Django or some other framework?
2231
2232\begin{seealso}
2233
2234\seeurl{http://www.wsgi.org}{A central web site for WSGI-related resources.}
2235
2236\seepep{333}{Python Web Server Gateway Interface v1.0}{PEP written by
2237Phillip J. Eby.}
2238
2239\end{seealso}
2240
2241
Fred Drake2db76802004-12-01 05:05:47 +00002242% ======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00002243\section{Build and C API Changes\label{build-api}}
Fred Drake2db76802004-12-01 05:05:47 +00002244
2245Changes to Python's build process and to the C API include:
2246
2247\begin{itemize}
2248
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002249\item The Python source tree was converted from CVS to Subversion,
2250in a complex migration procedure that was supervised and flawlessly
2251carried out by Martin von~L\"owis. The procedure was developed as
2252\pep{347}.
2253
2254\item Coverity, a company that markets a source code analysis tool
2255called Prevent, provided the results of their examination of the Python
2256source code. The analysis found about 60 bugs that
2257were quickly fixed. Many of the bugs were refcounting problems, often
2258occurring in error-handling code. See
2259\url{http://scan.coverity.com} for the statistics.
2260
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002261\item The largest change to the C API came from \pep{353},
2262which modifies the interpreter to use a \ctype{Py_ssize_t} type
2263definition instead of \ctype{int}. See the earlier
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00002264section~\ref{pep-353} for a discussion of this change.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002265
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002266\item The design of the bytecode compiler has changed a great deal,
2267no longer generating bytecode by traversing the parse tree. Instead
Andrew M. Kuchlingdb85ed52005-10-23 21:52:59 +00002268the parse tree is converted to an abstract syntax tree (or AST), and it is
2269the abstract syntax tree that's traversed to produce the bytecode.
2270
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002271It's possible for Python code to obtain AST objects by using the
2272\function{compile()} built-in and specifying \code{_ast.PyCF_ONLY_AST}
2273as the value of the
2274\var{flags} parameter:
2275
2276\begin{verbatim}
2277from _ast import PyCF_ONLY_AST
2278ast = compile("""a=0
2279for i in range(10):
2280 a += i
2281""", "<string>", 'exec', PyCF_ONLY_AST)
2282
2283assignment = ast.body[0]
2284for_loop = ast.body[1]
2285\end{verbatim}
2286
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002287No official documentation has been written for the AST code yet, but
2288\pep{339} discusses the design. To start learning about the code, read the
2289definition of the various AST nodes in \file{Parser/Python.asdl}. A
2290Python script reads this file and generates a set of C structure
2291definitions in \file{Include/Python-ast.h}. The
2292\cfunction{PyParser_ASTFromString()} and
2293\cfunction{PyParser_ASTFromFile()}, defined in
Andrew M. Kuchlingdb85ed52005-10-23 21:52:59 +00002294\file{Include/pythonrun.h}, take Python source as input and return the
2295root of an AST representing the contents. This AST can then be turned
2296into a code object by \cfunction{PyAST_Compile()}. For more
2297information, read the source code, and then ask questions on
2298python-dev.
2299
2300% List of names taken from Jeremy's python-dev post at
2301% http://mail.python.org/pipermail/python-dev/2005-October/057500.html
2302The AST code was developed under Jeremy Hylton's management, and
2303implemented by (in alphabetical order) Brett Cannon, Nick Coghlan,
2304Grant Edwards, John Ehresman, Kurt Kaiser, Neal Norwitz, Tim Peters,
2305Armin Rigo, and Neil Schemenauer, plus the participants in a number of
2306AST sprints at conferences such as PyCon.
2307
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002308\item Evan Jones's patch to obmalloc, first described in a talk
2309at PyCon DC 2005, was applied. Python 2.4 allocated small objects in
2310256K-sized arenas, but never freed arenas. With this patch, Python
2311will free arenas when they're empty. The net effect is that on some
2312platforms, when you allocate many objects, Python's memory usage may
2313actually drop when you delete them and the memory may be returned to
2314the operating system. (Implemented by Evan Jones, and reworked by Tim
2315Peters.)
2316
2317Note that this change means extension modules must be more careful
2318when allocating memory. Python's API has many different
2319functions for allocating memory that are grouped into families. For
2320example, \cfunction{PyMem_Malloc()}, \cfunction{PyMem_Realloc()}, and
2321\cfunction{PyMem_Free()} are one family that allocates raw memory,
2322while \cfunction{PyObject_Malloc()}, \cfunction{PyObject_Realloc()},
2323and \cfunction{PyObject_Free()} are another family that's supposed to
2324be used for creating Python objects.
2325
2326Previously these different families all reduced to the platform's
2327\cfunction{malloc()} and \cfunction{free()} functions. This meant
2328it didn't matter if you got things wrong and allocated memory with the
2329\cfunction{PyMem} function but freed it with the \cfunction{PyObject}
2330function. With 2.5's changes to obmalloc, these families now do different
2331things and mismatches will probably result in a segfault. You should
2332carefully test your C extension modules with Python 2.5.
2333
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00002334\item The built-in set types now have an official C API. Call
2335\cfunction{PySet_New()} and \cfunction{PyFrozenSet_New()} to create a
2336new set, \cfunction{PySet_Add()} and \cfunction{PySet_Discard()} to
2337add and remove elements, and \cfunction{PySet_Contains} and
2338\cfunction{PySet_Size} to examine the set's state.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002339(Contributed by Raymond Hettinger.)
2340
2341\item C code can now obtain information about the exact revision
2342of the Python interpreter by calling the
2343\cfunction{Py_GetBuildInfo()} function that returns a
2344string of build information like this:
2345\code{"trunk:45355:45356M, Apr 13 2006, 07:42:19"}.
2346(Contributed by Barry Warsaw.)
2347
Thomas Wouters477c8d52006-05-27 19:21:47 +00002348\item Two new macros can be used to indicate C functions that are
2349local to the current file so that a faster calling convention can be
2350used. \cfunction{Py_LOCAL(\var{type})} declares the function as
2351returning a value of the specified \var{type} and uses a fast-calling
2352qualifier. \cfunction{Py_LOCAL_INLINE(\var{type})} does the same thing
2353and also requests the function be inlined. If
2354\cfunction{PY_LOCAL_AGGRESSIVE} is defined before \file{python.h} is
2355included, a set of more aggressive optimizations are enabled for the
2356module; you should benchmark the results to find out if these
2357optimizations actually make the code faster. (Contributed by Fredrik
2358Lundh at the NeedForSpeed sprint.)
2359
2360\item \cfunction{PyErr_NewException(\var{name}, \var{base},
2361\var{dict})} can now accept a tuple of base classes as its \var{base}
2362argument. (Contributed by Georg Brandl.)
2363
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002364\item The \cfunction{PyErr_Warn()} function for issuing warnings
2365is now deprecated in favour of \cfunction{PyErr_WarnEx(category,
2366message, stacklevel)} which lets you specify the number of stack
2367frames separating this function and the caller. A \var{stacklevel} of
23681 is the function calling \cfunction{PyErr_WarnEx()}, 2 is the
2369function above that, and so forth. (Added by Neal Norwitz.)
2370
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002371\item The CPython interpreter is still written in C, but
2372the code can now be compiled with a {\Cpp} compiler without errors.
2373(Implemented by Anthony Baxter, Martin von~L\"owis, Skip Montanaro.)
Andrew M. Kuchling150e3492005-08-23 00:56:06 +00002374
2375\item The \cfunction{PyRange_New()} function was removed. It was
2376never documented, never used in the core code, and had dangerously lax
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002377error checking. In the unlikely case that your extensions were using
2378it, you can replace it by something like the following:
2379\begin{verbatim}
2380range = PyObject_CallFunction((PyObject*) &PyRange_Type, "lll",
2381 start, stop, step);
2382\end{verbatim}
Fred Drake2db76802004-12-01 05:05:47 +00002383
2384\end{itemize}
2385
2386
2387%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00002388\subsection{Port-Specific Changes\label{ports}}
Fred Drake2db76802004-12-01 05:05:47 +00002389
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002390\begin{itemize}
2391
2392\item MacOS X (10.3 and higher): dynamic loading of modules
2393now uses the \cfunction{dlopen()} function instead of MacOS-specific
2394functions.
2395
Thomas Wouters477c8d52006-05-27 19:21:47 +00002396\item MacOS X: a \longprogramopt{enable-universalsdk} switch was added
2397to the \program{configure} script that compiles the interpreter as a
2398universal binary able to run on both PowerPC and Intel processors.
2399(Contributed by Ronald Oussoren.)
2400
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002401\item Windows: \file{.dll} is no longer supported as a filename extension for
2402extension modules. \file{.pyd} is now the only filename extension that will
2403be searched for.
2404
2405\end{itemize}
Fred Drake2db76802004-12-01 05:05:47 +00002406
2407
2408%======================================================================
Thomas Wouters477c8d52006-05-27 19:21:47 +00002409\section{Porting to Python 2.5\label{porting}}
Fred Drake2db76802004-12-01 05:05:47 +00002410
2411This section lists previously described changes that may require
2412changes to your code:
2413
2414\begin{itemize}
2415
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002416\item ASCII is now the default encoding for modules. It's now
2417a syntax error if a module contains string literals with 8-bit
2418characters but doesn't have an encoding declaration. In Python 2.4
2419this triggered a warning, not a syntax error.
Andrew M. Kuchling0c35db92005-03-20 20:06:49 +00002420
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002421\item Previously, the \member{gi_frame} attribute of a generator
2422was always a frame object. Because of the \pep{342} changes
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00002423described in section~\ref{pep-342}, it's now possible
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002424for \member{gi_frame} to be \code{None}.
Andrew M. Kuchling0c35db92005-03-20 20:06:49 +00002425
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002426\item Library: the \module{csv} module is now stricter about multi-line quoted
2427fields. If your files contain newlines embedded within fields, the
2428input should be split into lines in a manner which preserves the
2429newline characters.
2430
2431\item Library: the \module{locale} module's
2432\function{format()} function's would previously
2433accept any string as long as no more than one \%char specifier
2434appeared. In Python 2.5, the argument must be exactly one \%char
2435specifier with no surrounding text.
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00002436
2437\item Library: The \module{pickle} and \module{cPickle} modules no
2438longer accept a return value of \code{None} from the
2439\method{__reduce__()} method; the method must return a tuple of
2440arguments instead. The modules also no longer accept the deprecated
2441\var{bin} keyword parameter.
2442
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002443\item Library: The \module{SimpleXMLRPCServer} and \module{DocXMLRPCServer}
2444classes now have a \member{rpc_paths} attribute that constrains
2445XML-RPC operations to a limited set of URL paths; the default is
2446to allow only \code{'/'} and \code{'/RPC2'}. Setting
2447\member{rpc_paths} to \code{None} or an empty tuple disables
2448this path checking.
2449
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002450\item C API: Many functions now use \ctype{Py_ssize_t}
Thomas Woutersd4ec0c32006-04-21 16:44:05 +00002451instead of \ctype{int} to allow processing more data on 64-bit
2452machines. Extension code may need to make the same change to avoid
2453warnings and to support 64-bit machines. See the earlier
2454section~\ref{pep-353} for a discussion of this change.
Andrew M. Kuchling3e41b052005-03-01 00:53:46 +00002455
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002456\item C API:
2457The obmalloc changes mean that
2458you must be careful to not mix usage
2459of the \cfunction{PyMem_*()} and \cfunction{PyObject_*()}
2460families of functions. Memory allocated with
2461one family's \cfunction{*_Malloc()} must be
2462freed with the corresponding family's \cfunction{*_Free()} function.
Fred Drake2db76802004-12-01 05:05:47 +00002463
2464\end{itemize}
2465
2466
2467%======================================================================
2468\section{Acknowledgements \label{acks}}
2469
2470The author would like to thank the following people for offering
2471suggestions, corrections and assistance with various drafts of this
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002472article: Georg Brandl, Nick Coghlan, Phillip J. Eby, Lars Gust\"abel,
2473Raymond Hettinger, Ralf W. Grosse-Kunstleve, Kent Johnson, Iain Lowe,
2474Martin von~L\"owis, Fredrik Lundh, Andrew McNamara, Skip Montanaro,
2475Gustavo Niemeyer, Paul Prescod, James Pryor, Mike Rovner, Scott
2476Weikart, Barry Warsaw, Thomas Wouters.
Fred Drake2db76802004-12-01 05:05:47 +00002477
2478\end{document}