Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1 | \documentclass{howto} |
| 2 | \usepackage{distutils} |
| 3 | % $Id$ |
| 4 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 5 | % Fix XXX comments |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 6 | |
| 7 | \title{What's New in Python 2.5} |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 8 | \release{0.9} |
Andrew M. Kuchling | 92e2495 | 2004-12-03 13:54:09 +0000 | [diff] [blame] | 9 | \author{A.M. Kuchling} |
| 10 | \authoraddress{\email{amk@amk.ca}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 11 | |
| 12 | \begin{document} |
| 13 | \maketitle |
| 14 | \tableofcontents |
| 15 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 16 | This article explains the new features in Python 2.5. The final |
| 17 | release of Python 2.5 is scheduled for August 2006; |
| 18 | \pep{356} describes the planned release schedule. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 19 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 20 | The changes in Python 2.5 are an interesting mix of language and |
| 21 | library improvements. The library enhancements will be more important |
| 22 | to Python's user community, I think, because several widely-useful |
| 23 | packages were added. New modules include ElementTree for XML |
| 24 | processing (section~\ref{module-etree}), the SQLite database module |
| 25 | (section~\ref{module-sqlite}), and the \module{ctypes} module for |
| 26 | calling C functions (section~\ref{module-ctypes}). |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 27 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 28 | The language changes are of middling significance. Some pleasant new |
| 29 | features were added, but most of them aren't features that you'll use |
| 30 | every day. Conditional expressions were finally added to the language |
| 31 | using 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 |
| 35 | or relative (section~\ref{pep-328}). Some corner cases of exception |
| 36 | handling are handled better (section~\ref{pep-341}). All these |
| 37 | improvements are worthwhile, but they're improvements to one specific |
| 38 | language feature or another; none of them are broad modifications to |
| 39 | Python's semantics. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 40 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 41 | As well as the language and library additions, other improvements and |
| 42 | bugfixes were made throughout the source tree. A search through the |
| 43 | SVN change logs finds there were 334 patches applied and 443 bugs |
| 44 | fixed between Python 2.4 and 2.5. (Both figures are likely to be |
| 45 | underestimates.) |
| 46 | |
| 47 | This article doesn't try to be a complete specification of the new |
| 48 | features; instead changes are briefly introduced using helpful |
| 49 | examples. For full details, you should always refer to the |
| 50 | documentation for Python 2.5. |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 51 | % XXX add hyperlink when the documentation becomes available online. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 52 | If you want to understand the complete implementation and design |
| 53 | rationale, refer to the PEP for a particular new feature. |
| 54 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 55 | Comments, suggestions, and error reports for this document are |
| 56 | welcome; please e-mail them to the author or open a bug in the Python |
| 57 | bug tracker. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 58 | |
| 59 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 60 | \section{PEP 308: Conditional Expressions\label{pep-308}} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 61 | |
Andrew M. Kuchling | e362d93 | 2006-03-09 13:56:25 +0000 | [diff] [blame] | 62 | For a long time, people have been requesting a way to write |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 63 | conditional expressions, which are expressions that return value A or |
| 64 | value B depending on whether a Boolean value is true or false. A |
| 65 | conditional expression lets you write a single assignment statement |
| 66 | that has the same effect as the following: |
Andrew M. Kuchling | e362d93 | 2006-03-09 13:56:25 +0000 | [diff] [blame] | 67 | |
| 68 | \begin{verbatim} |
| 69 | if condition: |
| 70 | x = true_value |
| 71 | else: |
| 72 | x = false_value |
| 73 | \end{verbatim} |
| 74 | |
| 75 | There have been endless tedious discussions of syntax on both |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 76 | python-dev and comp.lang.python. A vote was even held that found the |
| 77 | majority of voters wanted conditional expressions in some form, |
| 78 | but there was no syntax that was preferred by a clear majority. |
| 79 | Candidates included C's \code{cond ? true_v : false_v}, |
Andrew M. Kuchling | e362d93 | 2006-03-09 13:56:25 +0000 | [diff] [blame] | 80 | \code{if cond then true_v else false_v}, and 16 other variations. |
| 81 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 82 | Guido van~Rossum eventually chose a surprising syntax: |
Andrew M. Kuchling | e362d93 | 2006-03-09 13:56:25 +0000 | [diff] [blame] | 83 | |
| 84 | \begin{verbatim} |
| 85 | x = true_value if condition else false_value |
| 86 | \end{verbatim} |
| 87 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 88 | Evaluation is still lazy as in existing Boolean expressions, so the |
| 89 | order of evaluation jumps around a bit. The \var{condition} |
| 90 | expression in the middle is evaluated first, and the \var{true_value} |
| 91 | expression is evaluated only if the condition was true. Similarly, |
| 92 | the \var{false_value} expression is only evaluated when the condition |
| 93 | is false. |
Andrew M. Kuchling | e362d93 | 2006-03-09 13:56:25 +0000 | [diff] [blame] | 94 | |
| 95 | This syntax may seem strange and backwards; why does the condition go |
| 96 | in 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 |
| 98 | to the modules in the standard library and seeing how the resulting |
| 99 | code read. In many cases where a conditional expression is used, one |
| 100 | value seems to be the 'common case' and one value is an 'exceptional |
| 101 | case', used only on rarer occasions when the condition isn't met. The |
| 102 | conditional syntax makes this pattern a bit more obvious: |
| 103 | |
| 104 | \begin{verbatim} |
| 105 | contents = ((doc + '\n') if doc else '') |
| 106 | \end{verbatim} |
| 107 | |
| 108 | I read the above statement as meaning ``here \var{contents} is |
Andrew M. Kuchling | d0fcc02 | 2006-03-09 13:57:28 +0000 | [diff] [blame] | 109 | usually assigned a value of \code{doc+'\e n'}; sometimes |
Andrew M. Kuchling | e362d93 | 2006-03-09 13:56:25 +0000 | [diff] [blame] | 110 | \var{doc} is empty, in which special case an empty string is returned.'' |
| 111 | I doubt I will use conditional expressions very often where there |
| 112 | isn't a clear common and uncommon case. |
| 113 | |
| 114 | There was some discussion of whether the language should require |
| 115 | surrounding conditional expressions with parentheses. The decision |
| 116 | was made to \emph{not} require parentheses in the Python language's |
| 117 | grammar, but as a matter of style I think you should always use them. |
| 118 | Consider these two statements: |
| 119 | |
| 120 | \begin{verbatim} |
| 121 | # First version -- no parens |
| 122 | level = 1 if logging else 0 |
| 123 | |
| 124 | # Second version -- with parens |
| 125 | level = (1 if logging else 0) |
| 126 | \end{verbatim} |
| 127 | |
| 128 | In the first version, I think a reader's eye might group the statement |
| 129 | into 'level = 1', 'if logging', 'else 0', and think that the condition |
| 130 | decides whether the assignment to \var{level} is performed. The |
| 131 | second version reads better, in my opinion, because it makes it clear |
| 132 | that the assignment is always performed and the choice is being made |
| 133 | between two values. |
| 134 | |
| 135 | Another reason for including the brackets: a few odd combinations of |
| 136 | list comprehensions and lambdas could look like incorrect conditional |
| 137 | expressions. See \pep{308} for some examples. If you put parentheses |
| 138 | around 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 144 | Guido van~Rossum and Raymond D. Hettinger; implemented by Thomas |
Andrew M. Kuchling | e362d93 | 2006-03-09 13:56:25 +0000 | [diff] [blame] | 145 | Wouters.} |
| 146 | |
| 147 | \end{seealso} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 148 | |
| 149 | |
| 150 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 151 | \section{PEP 309: Partial Function Application\label{pep-309}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 152 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 153 | The \module{functools} module is intended to contain tools for |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 154 | functional-style programming. |
Andrew M. Kuchling | b1c96fd | 2005-03-20 21:42:04 +0000 | [diff] [blame] | 155 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 156 | One useful tool in this module is the \function{partial()} function. |
| 157 | For programs written in a functional style, you'll sometimes want to |
Andrew M. Kuchling | 4b000cd | 2005-04-09 15:51:44 +0000 | [diff] [blame] | 158 | construct variants of existing functions that have some of the |
| 159 | parameters filled in. Consider a Python function \code{f(a, b, c)}; |
| 160 | you could create a new function \code{g(b, c)} that was equivalent to |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 161 | \code{f(1, b, c)}. This is called ``partial function application''. |
Andrew M. Kuchling | 4b000cd | 2005-04-09 15:51:44 +0000 | [diff] [blame] | 162 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 163 | \function{partial} takes the arguments |
Andrew M. Kuchling | 4b000cd | 2005-04-09 15:51:44 +0000 | [diff] [blame] | 164 | \code{(\var{function}, \var{arg1}, \var{arg2}, ... |
| 165 | \var{kwarg1}=\var{value1}, \var{kwarg2}=\var{value2})}. The resulting |
| 166 | object is callable, so you can just call it to invoke \var{function} |
| 167 | with the filled-in arguments. |
| 168 | |
| 169 | Here's a small but realistic example: |
| 170 | |
| 171 | \begin{verbatim} |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 172 | import functools |
Andrew M. Kuchling | 4b000cd | 2005-04-09 15:51:44 +0000 | [diff] [blame] | 173 | |
| 174 | def log (message, subsystem): |
| 175 | "Write the contents of 'message' to the specified subsystem." |
| 176 | print '%s: %s' % (subsystem, message) |
| 177 | ... |
| 178 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 179 | server_log = functools.partial(log, subsystem='server') |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 180 | server_log('Unable to open socket') |
Andrew M. Kuchling | 4b000cd | 2005-04-09 15:51:44 +0000 | [diff] [blame] | 181 | \end{verbatim} |
| 182 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 183 | Here's another example, from a program that uses PyGTK. Here a |
Andrew M. Kuchling | 6af7fe0 | 2005-08-02 17:20:36 +0000 | [diff] [blame] | 184 | context-sensitive pop-up menu is being constructed dynamically. The |
| 185 | callback provided for the menu option is a partially applied version |
| 186 | of the \method{open_item()} method, where the first argument has been |
| 187 | provided. |
Andrew M. Kuchling | 4b000cd | 2005-04-09 15:51:44 +0000 | [diff] [blame] | 188 | |
Andrew M. Kuchling | 6af7fe0 | 2005-08-02 17:20:36 +0000 | [diff] [blame] | 189 | \begin{verbatim} |
| 190 | ... |
| 191 | class Application: |
| 192 | def open_item(self, path): |
| 193 | ... |
| 194 | def init (self): |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 195 | open_func = functools.partial(self.open_item, item_path) |
Andrew M. Kuchling | 6af7fe0 | 2005-08-02 17:20:36 +0000 | [diff] [blame] | 196 | popup_menu.append( ("Open", open_func, 1) ) |
| 197 | \end{verbatim} |
Andrew M. Kuchling | b1c96fd | 2005-03-20 21:42:04 +0000 | [diff] [blame] | 198 | |
| 199 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 200 | Another function in the \module{functools} module is the |
| 201 | \function{update_wrapper(\var{wrapper}, \var{wrapped})} function that |
| 202 | helps you write well-behaved decorators. \function{update_wrapper()} |
| 203 | copies the name, module, and docstring attribute to a wrapper function |
| 204 | so that tracebacks inside the wrapped function are easier to |
| 205 | understand. For example, you might write: |
| 206 | |
| 207 | \begin{verbatim} |
| 208 | def 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 |
| 217 | decorators to copy the wrapped function's information. An alternate |
| 218 | version of the previous example would be: |
| 219 | |
| 220 | \begin{verbatim} |
| 221 | def 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. Kuchling | b1c96fd | 2005-03-20 21:42:04 +0000 | [diff] [blame] | 229 | \begin{seealso} |
| 230 | |
| 231 | \seepep{309}{Partial Function Application}{PEP proposed and written by |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 232 | Peter Harris; implemented by Hye-Shik Chang and Nick Coghlan, with |
| 233 | adaptations by Raymond Hettinger.} |
Andrew M. Kuchling | b1c96fd | 2005-03-20 21:42:04 +0000 | [diff] [blame] | 234 | |
| 235 | \end{seealso} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 236 | |
| 237 | |
| 238 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 239 | \section{PEP 314: Metadata for Python Software Packages v1.1\label{pep-314}} |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 240 | |
Andrew M. Kuchling | d8d732e | 2005-04-09 23:59:41 +0000 | [diff] [blame] | 241 | Some simple dependency support was added to Distutils. The |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 242 | \function{setup()} function now has \code{requires}, \code{provides}, |
| 243 | and \code{obsoletes} keyword parameters. When you build a source |
| 244 | distribution using the \code{sdist} command, the dependency |
| 245 | information will be recorded in the \file{PKG-INFO} file. |
Andrew M. Kuchling | d8d732e | 2005-04-09 23:59:41 +0000 | [diff] [blame] | 246 | |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 247 | Another new keyword parameter is \code{download_url}, which should be |
| 248 | set to a URL for the package's source code. This means it's now |
| 249 | possible to look up an entry in the package index, determine the |
| 250 | dependencies for a package, and download the required packages. |
Andrew M. Kuchling | d8d732e | 2005-04-09 23:59:41 +0000 | [diff] [blame] | 251 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 252 | \begin{verbatim} |
| 253 | VERSION = '1.0' |
| 254 | setup(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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 262 | |
| 263 | Another new enhancement to the Python package index at |
| 264 | \url{http://cheeseshop.python.org} is storing source and binary |
| 265 | archives for a package. The new \command{upload} Distutils command |
| 266 | will upload a package to the repository. |
| 267 | |
| 268 | Before a package can be uploaded, you must be able to build a |
| 269 | distribution using the \command{sdist} Distutils command. Once that |
| 270 | works, you can run \code{python setup.py upload} to add your package |
| 271 | to the PyPI archive. Optionally you can GPG-sign the package by |
| 272 | supplying the \longprogramopt{sign} and |
| 273 | \longprogramopt{identity} options. |
| 274 | |
| 275 | Package uploading was implemented by Martin von~L\"owis and Richard Jones. |
Andrew M. Kuchling | d8d732e | 2005-04-09 23:59:41 +0000 | [diff] [blame] | 276 | |
| 277 | \begin{seealso} |
| 278 | |
| 279 | \seepep{314}{Metadata for Python Software Packages v1.1}{PEP proposed |
| 280 | and written by A.M. Kuchling, Richard Jones, and Fred Drake; |
| 281 | implemented by Richard Jones and Fred Drake.} |
| 282 | |
| 283 | \end{seealso} |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 284 | |
| 285 | |
| 286 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 287 | \section{PEP 328: Absolute and Relative Imports\label{pep-328}} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 288 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 289 | The simpler part of PEP 328 was implemented in Python 2.4: parentheses |
| 290 | could now be used to enclose the names imported from a module using |
| 291 | the \code{from ... import ...} statement, making it easier to import |
| 292 | many different names. |
| 293 | |
| 294 | The more complicated part has been implemented in Python 2.5: |
| 295 | importing a module can be specified to use absolute or |
| 296 | package-relative imports. The plan is to move toward making absolute |
| 297 | imports the default in future versions of Python. |
| 298 | |
| 299 | Let's say you have a package directory like this: |
| 300 | \begin{verbatim} |
| 301 | pkg/ |
| 302 | pkg/__init__.py |
| 303 | pkg/main.py |
| 304 | pkg/string.py |
| 305 | \end{verbatim} |
| 306 | |
| 307 | This defines a package named \module{pkg} containing the |
| 308 | \module{pkg.main} and \module{pkg.string} submodules. |
| 309 | |
| 310 | Consider the code in the \file{main.py} module. What happens if it |
| 311 | executes the statement \code{import string}? In Python 2.4 and |
| 312 | earlier, it will first look in the package's directory to perform a |
| 313 | relative import, finds \file{pkg/string.py}, imports the contents of |
| 314 | that file as the \module{pkg.string} module, and that module is bound |
| 315 | to the name \samp{string} in the \module{pkg.main} module's namespace. |
| 316 | |
| 317 | That's fine if \module{pkg.string} was what you wanted. But what if |
| 318 | you wanted Python's standard \module{string} module? There's no clean |
| 319 | way to ignore \module{pkg.string} and look for the standard module; |
| 320 | generally you had to look at the contents of \code{sys.modules}, which |
| 321 | is slightly unclean. |
| 322 | Holger Krekel's \module{py.std} package provides a tidier way to perform |
| 323 | imports from the standard library, \code{import py ; py.std.string.join()}, |
| 324 | but that package isn't available on all Python installations. |
| 325 | |
| 326 | Reading code which relies on relative imports is also less clear, |
| 327 | because a reader may be confused about which module, \module{string} |
| 328 | or \module{pkg.string}, is intended to be used. Python users soon |
| 329 | learned not to duplicate the names of standard library modules in the |
| 330 | names of their packages' submodules, but you can't protect against |
| 331 | having your submodule's name being used for a new module added in a |
| 332 | future version of Python. |
| 333 | |
| 334 | In Python 2.5, you can switch \keyword{import}'s behaviour to |
| 335 | absolute imports using a \code{from __future__ import absolute_import} |
| 336 | directive. This absolute-import behaviour will become the default in |
| 337 | a future version (probably Python 2.7). Once absolute imports |
| 338 | are the default, \code{import string} will |
| 339 | always find the standard library's version. |
| 340 | It's suggested that users should begin using absolute imports as much |
| 341 | as possible, so it's preferable to begin writing \code{from pkg import |
| 342 | string} in your code. |
| 343 | |
| 344 | Relative imports are still possible by adding a leading period |
| 345 | to the module name when using the \code{from ... import} form: |
| 346 | |
| 347 | \begin{verbatim} |
| 348 | # Import names from pkg.string |
| 349 | from .string import name1, name2 |
| 350 | # Import pkg.string |
| 351 | from . import string |
| 352 | \end{verbatim} |
| 353 | |
| 354 | This imports the \module{string} module relative to the current |
| 355 | package, so in \module{pkg.main} this will import \var{name1} and |
| 356 | \var{name2} from \module{pkg.string}. Additional leading periods |
| 357 | perform the relative import starting from the parent of the current |
| 358 | package. For example, code in the \module{A.B.C} module can do: |
| 359 | |
| 360 | \begin{verbatim} |
| 361 | from . import D # Imports A.B.D |
| 362 | from .. import E # Imports A.E |
| 363 | from ..F import G # Imports A.F.G |
| 364 | \end{verbatim} |
| 365 | |
| 366 | Leading periods cannot be used with the \code{import \var{modname}} |
| 367 | form 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. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 378 | |
| 379 | |
| 380 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 381 | \section{PEP 338: Executing Modules as Scripts\label{pep-338}} |
Thomas Wouters | a977329 | 2006-04-21 09:43:23 +0000 | [diff] [blame] | 382 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 383 | The \programopt{-m} switch added in Python 2.4 to execute a module as |
| 384 | a script gained a few more abilities. Instead of being implemented in |
| 385 | C code inside the Python interpreter, the switch now uses an |
| 386 | implementation in a new module, \module{runpy}. |
| 387 | |
| 388 | The \module{runpy} module implements a more sophisticated import |
| 389 | mechanism so that it's now possible to run modules in a package such |
| 390 | as \module{pychecker.checker}. The module also supports alternative |
| 391 | import mechanisms such as the \module{zipimport} module. This means |
| 392 | you 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 |
| 399 | implemented by Nick Coghlan.} |
| 400 | |
| 401 | \end{seealso} |
Thomas Wouters | a977329 | 2006-04-21 09:43:23 +0000 | [diff] [blame] | 402 | |
| 403 | |
| 404 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 405 | \section{PEP 341: Unified try/except/finally\label{pep-341}} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 406 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 407 | Until Python 2.5, the \keyword{try} statement came in two |
| 408 | flavours. You could use a \keyword{finally} block to ensure that code |
| 409 | is always executed, or one or more \keyword{except} blocks to catch |
| 410 | specific exceptions. You couldn't combine both \keyword{except} blocks and a |
| 411 | \keyword{finally} block, because generating the right bytecode for the |
| 412 | combined version was complicated and it wasn't clear what the |
| 413 | semantics of the combined should be. |
| 414 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 415 | Guido van~Rossum spent some time working with Java, which does support the |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 416 | equivalent of combining \keyword{except} blocks and a |
| 417 | \keyword{finally} block, and this clarified what the statement should |
| 418 | mean. In Python 2.5, you can now write: |
| 419 | |
| 420 | \begin{verbatim} |
| 421 | try: |
| 422 | block-1 ... |
| 423 | except Exception1: |
| 424 | handler-1 ... |
| 425 | except Exception2: |
| 426 | handler-2 ... |
| 427 | else: |
| 428 | else-block |
| 429 | finally: |
| 430 | final-block |
| 431 | \end{verbatim} |
| 432 | |
| 433 | The code in \var{block-1} is executed. If the code raises an |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 434 | exception, the various \keyword{except} blocks are tested: if the |
| 435 | exception is of class \class{Exception1}, \var{handler-1} is executed; |
| 436 | otherwise if it's of class \class{Exception2}, \var{handler-2} is |
| 437 | executed, and so forth. If no exception is raised, the |
| 438 | \var{else-block} is executed. |
| 439 | |
| 440 | No matter what happened previously, the \var{final-block} is executed |
| 441 | once the code block is complete and any raised exceptions handled. |
| 442 | Even if there's an error in an exception handler or the |
| 443 | \var{else-block} and a new exception is raised, the |
| 444 | code in the \var{final-block} is still run. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 445 | |
| 446 | \begin{seealso} |
| 447 | |
| 448 | \seepep{341}{Unifying try-except and try-finally}{PEP written by Georg Brandl; |
| 449 | implementation by Thomas Lee.} |
| 450 | |
| 451 | \end{seealso} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 452 | |
| 453 | |
| 454 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 455 | \section{PEP 342: New Generator Features\label{pep-342}} |
Andrew M. Kuchling | a2e21cb | 2005-08-02 17:13:21 +0000 | [diff] [blame] | 456 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 457 | Python 2.5 adds a simple way to pass values \emph{into} a generator. |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 458 | As introduced in Python 2.3, generators only produce output; once a |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 459 | generator's code was invoked to create an iterator, there was no way to |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 460 | pass any new information into the function when its execution is |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 461 | resumed. Sometimes the ability to pass in some information would be |
| 462 | useful. Hackish solutions to this include making the generator's code |
| 463 | look at a global variable and then changing the global variable's |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 464 | value, or passing in some mutable object that callers then modify. |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 465 | |
| 466 | To refresh your memory of basic generators, here's a simple example: |
| 467 | |
| 468 | \begin{verbatim} |
| 469 | def counter (maximum): |
| 470 | i = 0 |
| 471 | while i < maximum: |
| 472 | yield i |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 473 | i += 1 |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 474 | \end{verbatim} |
| 475 | |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 476 | When you call \code{counter(10)}, the result is an iterator that |
| 477 | returns the values from 0 up to 9. On encountering the |
| 478 | \keyword{yield} statement, the iterator returns the provided value and |
| 479 | suspends the function's execution, preserving the local variables. |
| 480 | Execution resumes on the following call to the iterator's |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 481 | \method{next()} method, picking up after the \keyword{yield} statement. |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 482 | |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 483 | In Python 2.3, \keyword{yield} was a statement; it didn't return any |
| 484 | value. In 2.5, \keyword{yield} is now an expression, returning a |
| 485 | value that can be assigned to a variable or otherwise operated on: |
Andrew M. Kuchling | a2e21cb | 2005-08-02 17:13:21 +0000 | [diff] [blame] | 486 | |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 487 | \begin{verbatim} |
| 488 | val = (yield i) |
| 489 | \end{verbatim} |
| 490 | |
| 491 | I recommend that you always put parentheses around a \keyword{yield} |
| 492 | expression when you're doing something with the returned value, as in |
| 493 | the above example. The parentheses aren't always necessary, but it's |
| 494 | easier to always add them instead of having to remember when they're |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 495 | needed. |
| 496 | |
| 497 | (\pep{342} explains the exact rules, which are that a |
| 498 | \keyword{yield}-expression must always be parenthesized except when it |
| 499 | occurs at the top-level expression on the right-hand side of an |
| 500 | assignment. This means you can write \code{val = yield i} but have to |
| 501 | use parentheses when there's an operation, as in \code{val = (yield i) |
| 502 | + 12}.) |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 503 | |
| 504 | Values are sent into a generator by calling its |
| 505 | \method{send(\var{value})} method. The generator's code is then |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 506 | resumed 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. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 509 | |
| 510 | Here's the previous example, modified to allow changing the value of |
| 511 | the internal counter. |
| 512 | |
| 513 | \begin{verbatim} |
| 514 | def counter (maximum): |
| 515 | i = 0 |
| 516 | while i < maximum: |
| 517 | val = (yield i) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 518 | # If value provided, change counter |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 519 | if val is not None: |
| 520 | i = val |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 521 | else: |
| 522 | i += 1 |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 523 | \end{verbatim} |
| 524 | |
| 525 | And here's an example of changing the counter: |
| 526 | |
| 527 | \begin{verbatim} |
| 528 | >>> it = counter(10) |
| 529 | >>> print it.next() |
| 530 | 0 |
| 531 | >>> print it.next() |
| 532 | 1 |
| 533 | >>> print it.send(8) |
| 534 | 8 |
| 535 | >>> print it.next() |
| 536 | 9 |
| 537 | >>> print it.next() |
| 538 | Traceback (most recent call last): |
| 539 | File ``t.py'', line 15, in ? |
| 540 | print it.next() |
| 541 | StopIteration |
Andrew M. Kuchling | c203370 | 2005-08-29 13:30:12 +0000 | [diff] [blame] | 542 | \end{verbatim} |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 543 | |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 544 | Because \keyword{yield} will often be returning \constant{None}, you |
| 545 | should always check for this case. Don't just use its value in |
| 546 | expressions unless you're sure that the \method{send()} method |
| 547 | will be the only method used resume your generator function. |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 548 | |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 549 | In addition to \method{send()}, there are two other new methods on |
| 550 | generators: |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 551 | |
| 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 566 | Python's garbage collector when the generator is garbage-collected. |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 567 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 568 | If you need to run cleanup code when a \exception{GeneratorExit} occurs, |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 569 | I suggest using a \code{try: ... finally:} suite instead of |
| 570 | catching \exception{GeneratorExit}. |
| 571 | |
| 572 | \end{itemize} |
| 573 | |
| 574 | The cumulative effect of these changes is to turn generators from |
| 575 | one-way producers of information into both producers and consumers. |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 576 | |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 577 | Generators also become \emph{coroutines}, a more generalized form of |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 578 | subroutines. Subroutines are entered at one point and exited at |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 579 | another point (the top of the function, and a \keyword{return} |
| 580 | statement), but coroutines can be entered, exited, and resumed at |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 581 | many different points (the \keyword{yield} statements). We'll have to |
| 582 | figure out patterns for using coroutines effectively in Python. |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 583 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 584 | The addition of the \method{close()} method has one side effect that |
| 585 | isn't obvious. \method{close()} is called when a generator is |
| 586 | garbage-collected, so this means the generator's code gets one last |
| 587 | chance to run before the generator is destroyed. This last chance |
| 588 | means that \code{try...finally} statements in generators can now be |
| 589 | guaranteed to work; the \keyword{finally} clause will now always get a |
| 590 | chance to run. The syntactic restriction that you couldn't mix |
| 591 | \keyword{yield} statements with a \code{try...finally} suite has |
| 592 | therefore been removed. This seems like a minor bit of language |
| 593 | trivia, but using generators and \code{try...finally} is actually |
| 594 | necessary in order to implement the \keyword{with} statement |
| 595 | described by PEP 343. I'll look at this new statement in the following |
| 596 | section. |
| 597 | |
| 598 | Another even more esoteric effect of this change: previously, the |
| 599 | \member{gi_frame} attribute of a generator was always a frame object. |
| 600 | It's now possible for \member{gi_frame} to be \code{None} |
| 601 | once the generator has been exhausted. |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 602 | |
Andrew M. Kuchling | a2e21cb | 2005-08-02 17:13:21 +0000 | [diff] [blame] | 603 | \begin{seealso} |
| 604 | |
| 605 | \seepep{342}{Coroutines via Enhanced Generators}{PEP written by |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 606 | Guido van~Rossum and Phillip J. Eby; |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 607 | implemented by Phillip J. Eby. Includes examples of |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 608 | some fancier uses of generators as coroutines. |
| 609 | |
| 610 | Earlier versions of these features were proposed in |
| 611 | \pep{288} by Raymond Hettinger and \pep{325} by Samuele Pedroni. |
| 612 | } |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 613 | |
| 614 | \seeurl{http://en.wikipedia.org/wiki/Coroutine}{The Wikipedia entry for |
| 615 | coroutines.} |
| 616 | |
Neal Norwitz | 0917988 | 2006-03-04 23:31:45 +0000 | [diff] [blame] | 617 | \seeurl{http://www.sidhe.org/\~{}dan/blog/archives/000178.html}{An |
Andrew M. Kuchling | 0738206 | 2005-08-27 18:45:47 +0000 | [diff] [blame] | 618 | explanation of coroutines from a Perl point of view, written by Dan |
| 619 | Sugalski.} |
Andrew M. Kuchling | a2e21cb | 2005-08-02 17:13:21 +0000 | [diff] [blame] | 620 | |
| 621 | \end{seealso} |
| 622 | |
| 623 | |
| 624 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 625 | \section{PEP 343: The 'with' statement\label{pep-343}} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 626 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 627 | The '\keyword{with}' statement clarifies code that previously would |
| 628 | use \code{try...finally} blocks to ensure that clean-up code is |
| 629 | executed. In this section, I'll discuss the statement as it will |
| 630 | commonly be used. In the next section, I'll examine the |
| 631 | implementation details and show how to write objects for use with this |
| 632 | statement. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 633 | |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 634 | The '\keyword{with}' statement is a new control-flow structure whose |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 635 | basic structure is: |
| 636 | |
| 637 | \begin{verbatim} |
| 638 | with expression [as variable]: |
| 639 | with-block |
| 640 | \end{verbatim} |
| 641 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 642 | The expression is evaluated, and it should result in an object that |
| 643 | supports the context management protocol. This object may return a |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 644 | value that can optionally be bound to the name \var{variable}. (Note |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 645 | carefully that \var{variable} is \emph{not} assigned the result of |
| 646 | \var{expression}.) The object can then run set-up code |
| 647 | before \var{with-block} is executed and some clean-up code |
| 648 | is executed after the block is done, even if the block raised an exception. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 649 | |
| 650 | To enable the statement in Python 2.5, you need |
| 651 | to add the following directive to your module: |
| 652 | |
| 653 | \begin{verbatim} |
| 654 | from __future__ import with_statement |
| 655 | \end{verbatim} |
| 656 | |
| 657 | The statement will always be enabled in Python 2.6. |
| 658 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 659 | Some standard Python objects now support the context management |
| 660 | protocol and can be used with the '\keyword{with}' statement. File |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 661 | objects are one example: |
| 662 | |
| 663 | \begin{verbatim} |
| 664 | with open('/etc/passwd', 'r') as f: |
| 665 | for line in f: |
| 666 | print line |
| 667 | ... more processing code ... |
| 668 | \end{verbatim} |
| 669 | |
| 670 | After this statement has executed, the file object in \var{f} will |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 671 | have been automatically closed, even if the 'for' loop |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 672 | raised an exception part-way through the block. |
| 673 | |
| 674 | The \module{threading} module's locks and condition variables |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 675 | also support the '\keyword{with}' statement: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 676 | |
| 677 | \begin{verbatim} |
| 678 | lock = threading.Lock() |
| 679 | with lock: |
| 680 | # Critical section of code |
| 681 | ... |
| 682 | \end{verbatim} |
| 683 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 684 | The lock is acquired before the block is executed and always released once |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 685 | the block is complete. |
| 686 | |
| 687 | The \module{decimal} module's contexts, which encapsulate the desired |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 688 | precision and rounding characteristics for computations, provide a |
| 689 | \method{context_manager()} method for getting a context manager: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 690 | |
| 691 | \begin{verbatim} |
| 692 | import decimal |
| 693 | |
| 694 | # Displays with default precision of 28 digits |
| 695 | v1 = decimal.Decimal('578') |
| 696 | print v1.sqrt() |
| 697 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 698 | ctx = decimal.Context(prec=16) |
| 699 | with ctx.context_manager(): |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 700 | # 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 Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 705 | \subsection{Writing Context Managers\label{context-managers}} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 706 | |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 707 | Under the hood, the '\keyword{with}' statement is fairly complicated. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 708 | Most people will only use '\keyword{with}' in company with existing |
| 709 | objects and don't need to know these details, so you can skip the rest |
| 710 | of this section if you like. Authors of new objects will need to |
| 711 | understand the details of the underlying implementation and should |
| 712 | keep reading. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 713 | |
| 714 | A high-level explanation of the context management protocol is: |
| 715 | |
| 716 | \begin{itemize} |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 717 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 718 | \item The expression is evaluated and should result in an object |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 719 | called a ``context manager''. The context manager must have |
| 720 | \method{__enter__()} and \method{__exit__()} methods. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 721 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 722 | \item The context manager's \method{__enter__()} method is called. The value |
| 723 | returned is assigned to \var{VAR}. If no \code{'as \var{VAR}'} clause |
| 724 | is present, the value is simply discarded. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 725 | |
| 726 | \item The code in \var{BLOCK} is executed. |
| 727 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 728 | \item If \var{BLOCK} raises an exception, the |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 729 | \method{__exit__(\var{type}, \var{value}, \var{traceback})} is called |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 730 | with the exception details, the same values returned by |
| 731 | \function{sys.exc_info()}. The method's return value controls whether |
| 732 | the exception is re-raised: any false value re-raises the exception, |
| 733 | and \code{True} will result in suppressing it. You'll only rarely |
| 734 | want to suppress the exception, because if you do |
| 735 | the author of the code containing the |
| 736 | '\keyword{with}' statement will never realize anything went wrong. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 737 | |
| 738 | \item If \var{BLOCK} didn't raise an exception, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 739 | the \method{__exit__()} method is still called, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 740 | but \var{type}, \var{value}, and \var{traceback} are all \code{None}. |
| 741 | |
| 742 | \end{itemize} |
| 743 | |
| 744 | Let's think through an example. I won't present detailed code but |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 745 | will only sketch the methods necessary for a database that supports |
| 746 | transactions. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 747 | |
| 748 | (For people unfamiliar with database terminology: a set of changes to |
| 749 | the database are grouped into a transaction. Transactions can be |
| 750 | either committed, meaning that all the changes are written into the |
| 751 | database, or rolled back, meaning that the changes are all discarded |
| 752 | and the database is unchanged. See any database textbook for more |
| 753 | information.) |
| 754 | % XXX find a shorter reference? |
| 755 | |
| 756 | Let's assume there's an object representing a database connection. |
| 757 | Our goal will be to let the user write code like this: |
| 758 | |
| 759 | \begin{verbatim} |
| 760 | db_connection = DatabaseConnection() |
| 761 | with db_connection as cursor: |
| 762 | cursor.execute('insert into ...') |
| 763 | cursor.execute('delete from ...') |
| 764 | # ... more operations ... |
| 765 | \end{verbatim} |
| 766 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 767 | The transaction should be committed if the code in the block |
| 768 | runs flawlessly or rolled back if there's an exception. |
| 769 | Here's the basic interface |
| 770 | for \class{DatabaseConnection} that I'll assume: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 771 | |
| 772 | \begin{verbatim} |
| 773 | class DatabaseConnection: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 774 | # 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 783 | The \method {__enter__()} method is pretty easy, having only to start |
| 784 | a new transaction. For this application the resulting cursor object |
| 785 | would be a useful result, so the method will return it. The user can |
| 786 | then add \code{as cursor} to their '\keyword{with}' statement to bind |
| 787 | the cursor to a variable name. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 788 | |
| 789 | \begin{verbatim} |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 790 | class DatabaseConnection: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 791 | ... |
| 792 | def __enter__ (self): |
| 793 | # Code to start a new transaction |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 794 | cursor = self.cursor() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 795 | return cursor |
| 796 | \end{verbatim} |
| 797 | |
| 798 | The \method{__exit__()} method is the most complicated because it's |
| 799 | where most of the work has to be done. The method has to check if an |
| 800 | exception occurred. If there was no exception, the transaction is |
| 801 | committed. The transaction is rolled back if there was an exception. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 802 | |
| 803 | In the code below, execution will just fall off the end of the |
| 804 | function, returning the default value of \code{None}. \code{None} is |
| 805 | false, so the exception will be re-raised automatically. If you |
| 806 | wished, you could be more explicit and add a \keyword{return} |
| 807 | statement at the marked location. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 808 | |
| 809 | \begin{verbatim} |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 810 | class DatabaseConnection: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 811 | ... |
| 812 | def __exit__ (self, type, value, tb): |
| 813 | if tb is None: |
| 814 | # No exception, so commit |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 815 | self.commit() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 816 | else: |
| 817 | # Exception occurred, so rollback. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 818 | self.rollback() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 819 | # return False |
| 820 | \end{verbatim} |
| 821 | |
| 822 | |
| 823 | \subsection{The contextlib module\label{module-contextlib}} |
| 824 | |
| 825 | The new \module{contextlib} module provides some functions and a |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 826 | decorator that are useful for writing objects for use with the |
| 827 | '\keyword{with}' statement. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 828 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 829 | The decorator is called \function{contextmanager}, and lets you write |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 830 | a single generator function instead of defining a new class. The generator |
| 831 | should yield exactly one value. The code up to the \keyword{yield} |
| 832 | will be executed as the \method{__enter__()} method, and the value |
| 833 | yielded will be the method's return value that will get bound to the |
| 834 | variable in the '\keyword{with}' statement's \keyword{as} clause, if |
| 835 | any. The code after the \keyword{yield} will be executed in the |
| 836 | \method{__exit__()} method. Any exception raised in the block will be |
| 837 | raised by the \keyword{yield} statement. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 838 | |
| 839 | Our database example from the previous section could be written |
| 840 | using this decorator as: |
| 841 | |
| 842 | \begin{verbatim} |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 843 | from contextlib import contextmanager |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 844 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 845 | @contextmanager |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 846 | def 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 | |
| 856 | db = DatabaseConnection() |
| 857 | with db_transaction(db) as cursor: |
| 858 | ... |
| 859 | \end{verbatim} |
| 860 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 861 | The \module{contextlib} module also has a \function{nested(\var{mgr1}, |
| 862 | \var{mgr2}, ...)} function that combines a number of context managers so you |
| 863 | don't need to write nested '\keyword{with}' statements. In this |
| 864 | example, the single '\keyword{with}' statement both starts a database |
| 865 | transaction and acquires a thread lock: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 866 | |
| 867 | \begin{verbatim} |
| 868 | lock = threading.Lock() |
| 869 | with nested (db_transaction(db), lock) as (cursor, locked): |
| 870 | ... |
| 871 | \end{verbatim} |
| 872 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 873 | Finally, the \function{closing(\var{object})} function |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 874 | returns \var{object} so that it can be bound to a variable, |
| 875 | and calls \code{\var{object}.close()} at the end of the block. |
| 876 | |
| 877 | \begin{verbatim} |
| 878 | import urllib, sys |
| 879 | from contextlib import closing |
| 880 | |
| 881 | with 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 |
| 889 | and Nick Coghlan; implemented by Mike Bland, Guido van~Rossum, and |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 890 | Neal Norwitz. The PEP shows the code generated for a '\keyword{with}' |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 891 | statement, which can be helpful in learning how the statement works.} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 892 | |
| 893 | \seeurl{../lib/module-contextlib.html}{The documentation |
| 894 | for the \module{contextlib} module.} |
| 895 | |
| 896 | \end{seealso} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 897 | |
| 898 | |
| 899 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 900 | \section{PEP 352: Exceptions as New-Style Classes\label{pep-352}} |
Andrew M. Kuchling | 8f4d255 | 2006-03-08 01:50:20 +0000 | [diff] [blame] | 901 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 902 | Exception classes can now be new-style classes, not just classic |
| 903 | classes, and the built-in \exception{Exception} class and all the |
| 904 | standard built-in exceptions (\exception{NameError}, |
| 905 | \exception{ValueError}, etc.) are now new-style classes. |
Andrew M. Kuchling | aeadf95 | 2006-03-09 19:06:05 +0000 | [diff] [blame] | 906 | |
| 907 | The inheritance hierarchy for exceptions has been rearranged a bit. |
| 908 | In 2.5, the inheritance relationships are: |
| 909 | |
| 910 | \begin{verbatim} |
| 911 | BaseException # New in Python 2.5 |
| 912 | |- KeyboardInterrupt |
| 913 | |- SystemExit |
| 914 | |- Exception |
| 915 | |- (all other current built-in exceptions) |
| 916 | \end{verbatim} |
| 917 | |
| 918 | This rearrangement was done because people often want to catch all |
| 919 | exceptions that indicate program errors. \exception{KeyboardInterrupt} and |
| 920 | \exception{SystemExit} aren't errors, though, and usually represent an explicit |
| 921 | action such as the user hitting Control-C or code calling |
| 922 | \function{sys.exit()}. A bare \code{except:} will catch all exceptions, |
| 923 | so 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} |
| 927 | try: |
| 928 | ... |
| 929 | except (KeyboardInterrupt, SystemExit): |
| 930 | raise |
| 931 | except: |
| 932 | # Log error... |
| 933 | # Continue running program... |
| 934 | \end{verbatim} |
| 935 | |
| 936 | In Python 2.5, you can now write \code{except Exception} to achieve |
| 937 | the same result, catching all the exceptions that usually indicate errors |
| 938 | but leaving \exception{KeyboardInterrupt} and |
| 939 | \exception{SystemExit} alone. As in previous versions, |
| 940 | a bare \code{except:} still catches all exceptions. |
| 941 | |
| 942 | The goal for Python 3.0 is to require any class raised as an exception |
| 943 | to derive from \exception{BaseException} or some descendant of |
| 944 | \exception{BaseException}, and future releases in the |
| 945 | Python 2.x series may begin to enforce this constraint. Therefore, I |
| 946 | suggest 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 |
| 949 | hasn't decided whether to do this or not. |
| 950 | |
| 951 | Raising of strings as exceptions, as in the statement \code{raise |
| 952 | "Error occurred"}, is deprecated in Python 2.5 and will trigger a |
| 953 | warning. The aim is to be able to remove the string-exception feature |
| 954 | in a few releases. |
| 955 | |
| 956 | |
| 957 | \begin{seealso} |
| 958 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 959 | \seepep{352}{Required Superclass for Exceptions}{PEP written by |
| 960 | Brett Cannon and Guido van~Rossum; implemented by Brett Cannon.} |
| 961 | |
| 962 | \end{seealso} |
| 963 | |
| 964 | |
| 965 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 966 | \section{PEP 353: Using ssize_t as the index type\label{pep-353}} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 967 | |
| 968 | A wide-ranging change to Python's C API, using a new |
| 969 | \ctype{Py_ssize_t} type definition instead of \ctype{int}, |
| 970 | will permit the interpreter to handle more data on 64-bit platforms. |
| 971 | This change doesn't affect Python's capacity on 32-bit platforms. |
| 972 | |
| 973 | Various pieces of the Python interpreter used C's \ctype{int} type to |
| 974 | store sizes or counts; for example, the number of items in a list or |
| 975 | tuple were stored in an \ctype{int}. The C compilers for most 64-bit |
| 976 | platforms still define \ctype{int} as a 32-bit type, so that meant |
| 977 | that 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 |
| 979 | compilers can use -- see |
| 980 | \url{http://www.unix.org/version2/whatsnew/lp64_wp.html} for a |
| 981 | discussion -- but the most commonly available model leaves \ctype{int} |
| 982 | as 32 bits.) |
| 983 | |
| 984 | A limit of 2147483647 items doesn't really matter on a 32-bit platform |
| 985 | because you'll run out of memory before hitting the length limit. |
| 986 | Each list item requires space for a pointer, which is 4 bytes, plus |
| 987 | space for a \ctype{PyObject} representing the item. 2147483647*4 is |
| 988 | already more bytes than a 32-bit address space can contain. |
| 989 | |
| 990 | It's possible to address that much memory on a 64-bit platform, |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 991 | however. The pointers for a list that size would only require 16~GiB |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 992 | of space, so it's not unreasonable that Python programmers might |
| 993 | construct lists that large. Therefore, the Python interpreter had to |
| 994 | be changed to use some type other than \ctype{int}, and this will be a |
| 995 | 64-bit type on 64-bit platforms. The change will cause |
| 996 | incompatibilities on 64-bit machines, so it was deemed worth making |
| 997 | the transition now, while the number of 64-bit users is still |
| 998 | relatively small. (In 5 or 10 years, we may \emph{all} be on 64-bit |
| 999 | machines, and the transition would be more painful then.) |
| 1000 | |
| 1001 | This change most strongly affects authors of C extension modules. |
| 1002 | Python strings and container types such as lists and tuples |
| 1003 | now use \ctype{Py_ssize_t} to store their size. |
| 1004 | Functions such as \cfunction{PyList_Size()} |
| 1005 | now return \ctype{Py_ssize_t}. Code in extension modules |
| 1006 | may therefore need to have some variables changed to |
| 1007 | \ctype{Py_ssize_t}. |
| 1008 | |
| 1009 | The \cfunction{PyArg_ParseTuple()} and \cfunction{Py_BuildValue()} functions |
| 1010 | have 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} |
| 1014 | to make them return \ctype{Py_ssize_t}. |
| 1015 | |
| 1016 | \pep{353} has a section on conversion guidelines that |
| 1017 | extension authors should read to learn about supporting 64-bit |
| 1018 | platforms. |
| 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. Kuchling | aeadf95 | 2006-03-09 19:06:05 +0000 | [diff] [blame] | 1023 | |
| 1024 | \end{seealso} |
Andrew M. Kuchling | 8f4d255 | 2006-03-08 01:50:20 +0000 | [diff] [blame] | 1025 | |
| 1026 | |
| 1027 | %====================================================================== |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1028 | \section{PEP 357: The '__index__' method\label{pep-357}} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 1029 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1030 | The NumPy developers had a problem that could only be solved by adding |
| 1031 | a new special method, \method{__index__}. When using slice notation, |
| 1032 | as 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 |
| 1034 | integers or long integers. NumPy defines a variety of specialized |
| 1035 | integer types corresponding to unsigned and signed integers of 8, 16, |
| 1036 | 32, and 64 bits, but there was no way to signal that these types could |
| 1037 | be used as slice indexes. |
| 1038 | |
| 1039 | Slicing can't just use the existing \method{__int__} method because |
| 1040 | that method is also used to implement coercion to integers. If |
| 1041 | slicing used \method{__int__}, floating-point numbers would also |
| 1042 | become legal slice indexes and that's clearly an undesirable |
| 1043 | behaviour. |
| 1044 | |
| 1045 | Instead, a new special method called \method{__index__} was added. It |
| 1046 | takes no arguments and returns an integer giving the slice index to |
| 1047 | use. For example: |
| 1048 | |
| 1049 | \begin{verbatim} |
| 1050 | class C: |
| 1051 | def __index__ (self): |
| 1052 | return self.value |
| 1053 | \end{verbatim} |
| 1054 | |
| 1055 | The return value must be either a Python integer or long integer. |
| 1056 | The interpreter will check that the type returned is correct, and |
| 1057 | raises a \exception{TypeError} if this requirement isn't met. |
| 1058 | |
| 1059 | A corresponding \member{nb_index} slot was added to the C-level |
| 1060 | \ctype{PyNumberMethods} structure to let C extensions implement this |
| 1061 | protocol. \cfunction{PyNumber_Index(\var{obj})} can be used in |
| 1062 | extension code to call the \method{__index__} function and retrieve |
| 1063 | its result. |
| 1064 | |
| 1065 | \begin{seealso} |
| 1066 | |
| 1067 | \seepep{357}{Allowing Any Object to be Used for Slicing}{PEP written |
| 1068 | and implemented by Travis Oliphant.} |
| 1069 | |
| 1070 | \end{seealso} |
Andrew M. Kuchling | 437567c | 2006-03-07 20:48:55 +0000 | [diff] [blame] | 1071 | |
| 1072 | |
| 1073 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1074 | \section{Other Language Changes\label{other-lang}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1075 | |
| 1076 | Here are all of the changes that Python 2.5 makes to the core Python |
| 1077 | language. |
| 1078 | |
| 1079 | \begin{itemize} |
Andrew M. Kuchling | 1cae3f5 | 2004-12-03 14:57:21 +0000 | [diff] [blame] | 1080 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1081 | \item The \class{dict} type has a new hook for letting subclasses |
| 1082 | provide a default value when a key isn't contained in the dictionary. |
| 1083 | When a key isn't found, the dictionary's |
| 1084 | \method{__missing__(\var{key})} |
| 1085 | method will be called. This hook is used to implement |
| 1086 | the new \class{defaultdict} class in the \module{collections} |
| 1087 | module. The following example defines a dictionary |
| 1088 | that returns zero for any missing key: |
| 1089 | |
| 1090 | \begin{verbatim} |
| 1091 | class zerodict (dict): |
| 1092 | def __missing__ (self, key): |
| 1093 | return 0 |
| 1094 | |
| 1095 | d = zerodict({1:1, 2:2}) |
| 1096 | print d[1], d[2] # Prints 1, 2 |
| 1097 | print d[3], d[4] # Prints 0, 0 |
| 1098 | \end{verbatim} |
| 1099 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1100 | \item Both 8-bit and Unicode strings have new \method{partition(sep)} |
| 1101 | and \method{rpartition(sep)} methods that simplify a common use case. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1102 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1103 | The \method{find(S)} method is often used to get an index which is |
| 1104 | then used to slice the string and obtain the pieces that are before |
| 1105 | and after the separator. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1106 | \method{partition(sep)} condenses this |
| 1107 | pattern into a single method call that returns a 3-tuple containing |
| 1108 | the substring before the separator, the separator itself, and the |
| 1109 | substring after the separator. If the separator isn't found, the |
| 1110 | first element of the tuple is the entire string and the other two |
| 1111 | elements are empty. \method{rpartition(sep)} also returns a 3-tuple |
| 1112 | but starts searching from the end of the string; the \samp{r} stands |
| 1113 | for 'reverse'. |
| 1114 | |
| 1115 | Some 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1130 | \item The \method{startswith()} and \method{endswith()} methods |
| 1131 | of string types now accept tuples of strings to check for. |
| 1132 | |
| 1133 | \begin{verbatim} |
| 1134 | def 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. Kuchling | 1cae3f5 | 2004-12-03 14:57:21 +0000 | [diff] [blame] | 1141 | \item The \function{min()} and \function{max()} built-in functions |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1142 | gained a \code{key} keyword parameter analogous to the \code{key} |
| 1143 | argument for \method{sort()}. This parameter supplies a function that |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1144 | takes a single argument and is called for every value in the list; |
Andrew M. Kuchling | 1cae3f5 | 2004-12-03 14:57:21 +0000 | [diff] [blame] | 1145 | \function{min()}/\function{max()} will return the element with the |
| 1146 | smallest/largest return value from this function. |
| 1147 | For example, to find the longest string in a list, you can do: |
| 1148 | |
| 1149 | \begin{verbatim} |
| 1150 | L = ['medium', 'longest', 'short'] |
| 1151 | # Prints 'longest' |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1152 | print max(L, key=len) |
Andrew M. Kuchling | 1cae3f5 | 2004-12-03 14:57:21 +0000 | [diff] [blame] | 1153 | # Prints 'short', because lexicographically 'short' has the largest value |
| 1154 | print max(L) |
| 1155 | \end{verbatim} |
| 1156 | |
| 1157 | (Contributed by Steven Bethard and Raymond Hettinger.) |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1158 | |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1159 | \item Two new built-in functions, \function{any()} and |
| 1160 | \function{all()}, evaluate whether an iterator contains any true or |
| 1161 | false values. \function{any()} returns \constant{True} if any value |
| 1162 | returned by the iterator is true; otherwise it will return |
| 1163 | \constant{False}. \function{all()} returns \constant{True} only if |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1164 | all 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 |
| 1168 | be either a long integer or a regular integer. If a long integer is |
| 1169 | returned, the hash of that value is taken. In earlier versions the |
| 1170 | hash 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 |
| 1172 | numbers, and users often seem to use \code{id(self)} in |
| 1173 | \method{__hash__()} methods (though this is discouraged). |
| 1174 | % Bug #1536021 |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1175 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1176 | \item ASCII is now the default encoding for modules. It's now |
| 1177 | a syntax error if a module contains string literals with 8-bit |
| 1178 | characters but doesn't have an encoding declaration. In Python 2.4 |
| 1179 | this triggered a warning, not a syntax error. See \pep{263} |
| 1180 | for how to declare a module's encoding; for example, you might add |
| 1181 | a line like this near the top of the source file: |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1182 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1183 | \begin{verbatim} |
| 1184 | # -*- coding: latin1 -*- |
| 1185 | \end{verbatim} |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1186 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1187 | \item One error that Python programmers sometimes make is forgetting |
| 1188 | to include an \file{__init__.py} module in a package directory. |
| 1189 | Debugging this mistake can be confusing, and usually requires running |
| 1190 | Python with the \programopt{-v} switch to log all the paths searched. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1191 | In Python 2.5, a new \exception{ImportWarning} warning is triggered when |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1192 | an import would have picked up a directory as a package but no |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1193 | \file{__init__.py} was found. This warning is silently ignored by default; |
| 1194 | provide the \programopt{-Wd} option when running the Python executable |
| 1195 | to display the warning message. |
| 1196 | (Implemented by Thomas Wouters.) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1197 | |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1198 | \item The list of base classes in a class definition can now be empty. |
| 1199 | As an example, this is now legal: |
| 1200 | |
| 1201 | \begin{verbatim} |
| 1202 | class C(): |
| 1203 | pass |
| 1204 | \end{verbatim} |
| 1205 | (Implemented by Brett Cannon.) |
| 1206 | |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1207 | \end{itemize} |
| 1208 | |
| 1209 | |
| 1210 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1211 | \subsection{Interactive Interpreter Changes\label{interactive}} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1212 | |
| 1213 | In the interactive interpreter, \code{quit} and \code{exit} |
| 1214 | have long been strings so that new users get a somewhat helpful message |
| 1215 | when they try to quit: |
| 1216 | |
| 1217 | \begin{verbatim} |
| 1218 | >>> quit |
| 1219 | 'Use Ctrl-D (i.e. EOF) to exit.' |
| 1220 | \end{verbatim} |
| 1221 | |
| 1222 | In Python 2.5, \code{quit} and \code{exit} are now objects that still |
| 1223 | produce string representations of themselves, but are also callable. |
| 1224 | Newbies who try \code{quit()} or \code{exit()} will now exit the |
| 1225 | interpreter as they expect. (Implemented by Georg Brandl.) |
| 1226 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1227 | The Python executable now accepts the standard long options |
| 1228 | \longprogramopt{help} and \longprogramopt{version}; on Windows, |
| 1229 | it also accepts the \programopt{/?} option for displaying a help message. |
| 1230 | (Implemented by Georg Brandl.) |
| 1231 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1232 | |
| 1233 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1234 | \subsection{Optimizations\label{opts}} |
| 1235 | |
| 1236 | Several of the optimizations were developed at the NeedForSpeed |
| 1237 | sprint, an event held in Reykjavik, Iceland, from May 21--28 2006. |
| 1238 | The sprint focused on speed enhancements to the CPython implementation |
| 1239 | and was funded by EWT LLC with local support from CCP Games. Those |
| 1240 | optimizations added at this sprint are specially marked in the |
| 1241 | following list. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1242 | |
| 1243 | \begin{itemize} |
| 1244 | |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1245 | \item When they were introduced |
| 1246 | in Python 2.4, the built-in \class{set} and \class{frozenset} types |
| 1247 | were built on top of Python's dictionary type. |
| 1248 | In 2.5 the internal data structure has been customized for implementing sets, |
| 1249 | and as a result sets will use a third less memory and are somewhat faster. |
| 1250 | (Implemented by Raymond Hettinger.) |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1251 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1252 | \item The speed of some Unicode operations, such as finding |
| 1253 | substrings, string splitting, and character map encoding and decoding, |
| 1254 | has been improved. (Substring search and splitting improvements were |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1255 | added by Fredrik Lundh and Andrew Dalke at the NeedForSpeed |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1256 | sprint. Character maps were improved by Walter D\"orwald and |
| 1257 | Martin von~L\"owis.) |
| 1258 | % Patch 1313939, 1359618 |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1259 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1260 | \item The \function{long(\var{str}, \var{base})} function is now |
| 1261 | faster on long digit strings because fewer intermediate results are |
| 1262 | calculated. The peak is for strings of around 800--1000 digits where |
| 1263 | the 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 |
| 1268 | strings into an internal representation and caches this |
| 1269 | representation, yielding a 20\% speedup. (Contributed by Bob Ippolito |
| 1270 | at the NeedForSpeed sprint.) |
| 1271 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1272 | \item The \module{re} module got a 1 or 2\% speedup by switching to |
| 1273 | Python'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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1277 | \item The code generator's peephole optimizer now performs |
| 1278 | simple constant folding in expressions. If you write something like |
| 1279 | \code{a = 2+3}, the code generator will do the arithmetic and produce |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1280 | code corresponding to \code{a = 5}. (Proposed and implemented |
| 1281 | by Raymond Hettinger.) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1282 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1283 | \item Function calls are now faster because code objects now keep |
| 1284 | the most recently finished frame (a ``zombie frame'') in an internal |
| 1285 | field of the code object, reusing it the next time the code object is |
| 1286 | invoked. (Original patch by Michael Hudson, modified by Armin Rigo |
| 1287 | and Richard Jones; committed at the NeedForSpeed sprint.) |
| 1288 | % Patch 876206 |
| 1289 | |
| 1290 | Frame objects are also slightly smaller, which may improve cache locality |
| 1291 | and 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 |
| 1295 | that speeds up instantiation considerably. Exception handling in |
| 1296 | Python 2.5 is therefore about 30\% faster than in 2.4. |
| 1297 | (Contributed by Richard Jones, Georg Brandl and Sean Reifschneider at |
| 1298 | the NeedForSpeed sprint.) |
| 1299 | |
| 1300 | \item Importing now caches the paths tried, recording whether |
| 1301 | they 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 Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1306 | \end{itemize} |
| 1307 | |
| 1308 | The net result of the 2.5 optimizations is that Python 2.5 runs the |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1309 | pystone benchmark around XXX\% faster than Python 2.4. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1310 | |
| 1311 | |
| 1312 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1313 | \section{New, Improved, and Removed Modules\label{modules}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1314 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1315 | The standard library received many enhancements and bug fixes in |
| 1316 | Python 2.5. Here's a partial list of the most notable changes, sorted |
| 1317 | alphabetically by module name. Consult the \file{Misc/NEWS} file in |
| 1318 | the source tree for a more complete list of changes, or look through |
| 1319 | the SVN logs for all the details. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1320 | |
| 1321 | \begin{itemize} |
| 1322 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1323 | \item The \module{audioop} module now supports the a-LAW encoding, |
| 1324 | and the code for u-LAW encoding has been improved. (Contributed by |
| 1325 | Lars Immisch.) |
Andrew M. Kuchling | 3e41b05 | 2005-03-01 00:53:46 +0000 | [diff] [blame] | 1326 | |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1327 | \item The \module{codecs} module gained support for incremental |
| 1328 | codecs. The \function{codec.lookup()} function now |
| 1329 | returns a \class{CodecInfo} instance instead of a tuple. |
| 1330 | \class{CodecInfo} instances behave like a 4-tuple to preserve backward |
| 1331 | compatibility but also have the attributes \member{encode}, |
| 1332 | \member{decode}, \member{incrementalencoder}, \member{incrementaldecoder}, |
| 1333 | \member{streamwriter}, and \member{streamreader}. Incremental codecs |
| 1334 | can receive input and produce output in multiple chunks; the output is |
| 1335 | the same as if the entire input was fed to the non-incremental codec. |
| 1336 | See the \module{codecs} module documentation for details. |
| 1337 | (Designed and implemented by Walter D\"orwald.) |
| 1338 | % Patch 1436130 |
| 1339 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1340 | \item The \module{collections} module gained a new type, |
| 1341 | \class{defaultdict}, that subclasses the standard \class{dict} |
| 1342 | type. The new type mostly behaves like a dictionary but constructs a |
| 1343 | default value when a key isn't present, automatically adding it to the |
| 1344 | dictionary for the requested key value. |
Andrew M. Kuchling | 3e41b05 | 2005-03-01 00:53:46 +0000 | [diff] [blame] | 1345 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1346 | The first argument to \class{defaultdict}'s constructor is a factory |
| 1347 | function that gets called whenever a key is requested but not found. |
| 1348 | This factory function receives no arguments, so you can use built-in |
| 1349 | type constructors such as \function{list()} or \function{int()}. For |
| 1350 | example, |
| 1351 | you can make an index of words based on their initial letter like this: |
| 1352 | |
| 1353 | \begin{verbatim} |
| 1354 | words = """Nel mezzo del cammin di nostra vita |
| 1355 | mi ritrovai per una selva oscura |
| 1356 | che la diritta via era smarrita""".lower().split() |
| 1357 | |
| 1358 | index = defaultdict(list) |
| 1359 | |
| 1360 | for w in words: |
| 1361 | init_letter = w[0] |
| 1362 | index[init_letter].append(w) |
| 1363 | \end{verbatim} |
| 1364 | |
| 1365 | Printing \code{index} results in the following output: |
| 1366 | |
| 1367 | \begin{verbatim} |
| 1368 | defaultdict(<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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1375 | (Contributed by Guido van~Rossum.) |
| 1376 | |
| 1377 | \item The \class{deque} double-ended queue type supplied by the |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1378 | \module{collections} module now has a \method{remove(\var{value})} |
| 1379 | method that removes the first occurrence of \var{value} in the queue, |
| 1380 | raising \exception{ValueError} if the value isn't found. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1381 | (Contributed by Raymond Hettinger.) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1382 | |
| 1383 | \item New module: The \module{contextlib} module contains helper functions for use |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1384 | with the new '\keyword{with}' statement. See |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1385 | section~\ref{module-contextlib} for more about this module. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1386 | |
| 1387 | \item New module: The \module{cProfile} module is a C implementation of |
| 1388 | the existing \module{profile} module that has much lower overhead. |
| 1389 | The module's interface is the same as \module{profile}: you run |
| 1390 | \code{cProfile.run('main()')} to profile a function, can save profile |
| 1391 | data to a file, etc. It's not yet known if the Hotshot profiler, |
| 1392 | which is also written in C but doesn't match the \module{profile} |
| 1393 | module's interface, will continue to be maintained in future versions |
| 1394 | of Python. (Contributed by Armin Rigo.) |
| 1395 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1396 | Also, the \module{pstats} module for analyzing the data measured by |
| 1397 | the profiler now supports directing the output to any file object |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1398 | by supplying a \var{stream} argument to the \class{Stats} constructor. |
| 1399 | (Contributed by Skip Montanaro.) |
| 1400 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1401 | \item The \module{csv} module, which parses files in |
| 1402 | comma-separated value format, received several enhancements and a |
| 1403 | number of bugfixes. You can now set the maximum size in bytes of a |
| 1404 | field by calling the \method{csv.field_size_limit(\var{new_limit})} |
| 1405 | function; omitting the \var{new_limit} argument will return the |
| 1406 | currently-set limit. The \class{reader} class now has a |
| 1407 | \member{line_num} attribute that counts the number of physical lines |
| 1408 | read 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1410 | |
| 1411 | The CSV parser is now stricter about multi-line quoted |
| 1412 | fields. Previously, if a line ended within a quoted field without a |
| 1413 | terminating newline character, a newline would be inserted into the |
| 1414 | returned field. This behavior caused problems when reading files that |
| 1415 | contained carriage return characters within fields, so the code was |
| 1416 | changed to return the field without inserting newlines. As a |
| 1417 | consequence, if newlines embedded within fields are important, the |
| 1418 | input should be split into lines in a manner that preserves the |
| 1419 | newline characters. |
| 1420 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1421 | (Contributed by Skip Montanaro and Andrew McNamara.) |
| 1422 | |
| 1423 | \item The \class{datetime} class in the \module{datetime} |
| 1424 | module now has a \method{strptime(\var{string}, \var{format})} |
| 1425 | method for parsing date strings, contributed by Josh Spoerri. |
| 1426 | It uses the same format characters as \function{time.strptime()} and |
| 1427 | \function{time.strftime()}: |
| 1428 | |
| 1429 | \begin{verbatim} |
| 1430 | from datetime import datetime |
| 1431 | |
| 1432 | ts = datetime.strptime('10:13:15 2006-03-07', |
| 1433 | '%H:%M:%S %Y-%m-%d') |
| 1434 | \end{verbatim} |
| 1435 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1436 | \item The \method{SequenceMatcher.get_matching_blocks()} method |
| 1437 | in the \module{difflib} module now guarantees to return a minimal list |
| 1438 | of blocks describing matching subsequences. Previously, the algorithm would |
| 1439 | occasionally break a block of matching elements into two list entries. |
| 1440 | (Enhancement by Tim Peters.) |
| 1441 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1442 | \item The \module{doctest} module gained a \code{SKIP} option that |
| 1443 | keeps an example from being executed at all. This is intended for |
| 1444 | code snippets that are usage examples intended for the reader and |
| 1445 | aren't actually test cases. |
| 1446 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1447 | An \var{encoding} parameter was added to the \function{testfile()} |
| 1448 | function and the \class{DocFileSuite} class to specify the file's |
| 1449 | encoding. This makes it easier to use non-ASCII characters in |
| 1450 | tests 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1457 | \item The \module{fileinput} module was made more flexible. |
| 1458 | Unicode filenames are now supported, and a \var{mode} parameter that |
| 1459 | defaults to \code{"r"} was added to the |
| 1460 | \function{input()} function to allow opening files in binary or |
| 1461 | universal-newline mode. Another new parameter, \var{openhook}, |
| 1462 | lets you use a function other than \function{open()} |
| 1463 | to open the input files. Once you're iterating over |
| 1464 | the 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 |
| 1469 | returns a 3-tuple containing the current collection counts for the |
| 1470 | three GC generations. This is accounting information for the garbage |
| 1471 | collector; when these counts reach a specified threshold, a garbage |
| 1472 | collection sweep will be made. The existing \function{gc.collect()} |
| 1473 | function now takes an optional \var{generation} argument of 0, 1, or 2 |
| 1474 | to specify which generation to collect. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1475 | (Contributed by Barry Warsaw.) |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1476 | |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1477 | \item The \function{nsmallest()} and |
| 1478 | \function{nlargest()} functions in the \module{heapq} module |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1479 | now support a \code{key} keyword parameter similar to the one |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1480 | provided by the \function{min()}/\function{max()} functions |
| 1481 | and the \method{sort()} methods. For example: |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1482 | |
| 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. Kuchling | 511a3a8 | 2005-03-20 19:52:18 +0000 | [diff] [blame] | 1494 | \item The \function{itertools.islice()} function now accepts |
| 1495 | \code{None} for the start and step arguments. This makes it more |
| 1496 | compatible with the attributes of slice objects, so that you can now write |
| 1497 | the following: |
| 1498 | |
| 1499 | \begin{verbatim} |
| 1500 | s = slice(5) # Create slice object |
| 1501 | itertools.islice(iterable, s.start, s.stop, s.step) |
| 1502 | \end{verbatim} |
| 1503 | |
| 1504 | (Contributed by Raymond Hettinger.) |
Andrew M. Kuchling | 3e41b05 | 2005-03-01 00:53:46 +0000 | [diff] [blame] | 1505 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1506 | \item The \function{format()} function in the \module{locale} module |
| 1507 | has been modified and two new functions were added, |
| 1508 | \function{format_string()} and \function{currency()}. |
| 1509 | |
| 1510 | The \function{format()} function's \var{val} parameter could |
| 1511 | previously be a string as long as no more than one \%char specifier |
| 1512 | appeared; now the parameter must be exactly one \%char specifier with |
| 1513 | no surrounding text. An optional \var{monetary} parameter was also |
| 1514 | added which, if \code{True}, will use the locale's rules for |
| 1515 | formatting currency in placing a separator between groups of three |
| 1516 | digits. |
| 1517 | |
| 1518 | To format strings with multiple \%char specifiers, use the new |
| 1519 | \function{format_string()} function that works like \function{format()} |
| 1520 | but also supports mixing \%char specifiers with |
| 1521 | arbitrary text. |
| 1522 | |
| 1523 | A new \function{currency()} function was also added that formats a |
| 1524 | number according to the current locale's settings. |
| 1525 | |
| 1526 | (Contributed by Georg Brandl.) |
| 1527 | % Patch 1180296 |
| 1528 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1529 | \item The \module{mailbox} module underwent a massive rewrite to add |
| 1530 | the capability to modify mailboxes in addition to reading them. A new |
| 1531 | set 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 |
| 1536 | following example converts a maildir-format mailbox into an mbox-format one: |
| 1537 | |
| 1538 | \begin{verbatim} |
| 1539 | import mailbox |
| 1540 | |
| 1541 | # 'factory=None' uses email.Message.Message as the class representing |
| 1542 | # individual messages. |
| 1543 | src = mailbox.Maildir('maildir', factory=None) |
| 1544 | dest = mailbox.mbox('/tmp/mbox') |
| 1545 | |
| 1546 | for msg in src: |
| 1547 | dest.add(msg) |
| 1548 | \end{verbatim} |
| 1549 | |
| 1550 | (Contributed by Gregory K. Johnson. Funding was provided by Google's |
| 1551 | 2005 Summer of Code.) |
| 1552 | |
| 1553 | \item New module: the \module{msilib} module allows creating |
| 1554 | Microsoft Installer \file{.msi} files and CAB files. Some support |
| 1555 | for reading the \file{.msi} database is also included. |
| 1556 | (Contributed by Martin von~L\"owis.) |
| 1557 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1558 | \item The \module{nis} module now supports accessing domains other |
| 1559 | than the system default domain by supplying a \var{domain} argument to |
| 1560 | the \function{nis.match()} and \function{nis.maps()} functions. |
| 1561 | (Contributed by Ben Bell.) |
| 1562 | |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1563 | \item The \module{operator} module's \function{itemgetter()} |
| 1564 | and \function{attrgetter()} functions now support multiple fields. |
| 1565 | A call such as \code{operator.attrgetter('a', 'b')} |
| 1566 | will return a function |
| 1567 | that retrieves the \member{a} and \member{b} attributes. Combining |
| 1568 | this new feature with the \method{sort()} method's \code{key} parameter |
| 1569 | lets you easily sort lists using multiple fields. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1570 | (Contributed by Raymond Hettinger.) |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1571 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1572 | \item The \module{optparse} module was updated to version 1.5.1 of the |
| 1573 | Optik library. The \class{OptionParser} class gained an |
| 1574 | \member{epilog} attribute, a string that will be printed after the |
| 1575 | help message, and a \method{destroy()} method to break reference |
| 1576 | cycles created by the object. (Contributed by Greg Ward.) |
Andrew M. Kuchling | 3e41b05 | 2005-03-01 00:53:46 +0000 | [diff] [blame] | 1577 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1578 | \item The \module{os} module underwent several changes. The |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1579 | \member{stat_float_times} variable now defaults to true, meaning that |
| 1580 | \function{os.stat()} will now return time values as floats. (This |
| 1581 | doesn't necessarily mean that \function{os.stat()} will return times |
| 1582 | that are precise to fractions of a second; not all systems support |
| 1583 | such precision.) |
Andrew M. Kuchling | 3e41b05 | 2005-03-01 00:53:46 +0000 | [diff] [blame] | 1584 | |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1585 | Constants named \member{os.SEEK_SET}, \member{os.SEEK_CUR}, and |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1586 | \member{os.SEEK_END} have been added; these are the parameters to the |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1587 | \function{os.lseek()} function. Two new constants for locking are |
| 1588 | \member{os.O_SHLOCK} and \member{os.O_EXLOCK}. |
| 1589 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1590 | Two new functions, \function{wait3()} and \function{wait4()}, were |
| 1591 | added. They're similar the \function{waitpid()} function which waits |
| 1592 | for a child process to exit and returns a tuple of the process ID and |
| 1593 | its exit status, but \function{wait3()} and \function{wait4()} return |
| 1594 | additional information. \function{wait3()} doesn't take a process ID |
| 1595 | as input, so it waits for any child process to exit and returns a |
| 1596 | 3-tuple of \var{process-id}, \var{exit-status}, \var{resource-usage} |
| 1597 | as 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. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1601 | On FreeBSD, the \function{os.stat()} function now returns |
| 1602 | times with nanosecond resolution, and the returned object |
| 1603 | now has \member{st_gen} and \member{st_birthtime}. |
| 1604 | The \member{st_flags} member is also available, if the platform supports it. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1605 | (Contributed by Antti Louko and Diego Petten\`o.) |
| 1606 | % (Patch 1180695, 1212117) |
| 1607 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1608 | \item The Python debugger provided by the \module{pdb} module |
| 1609 | can now store lists of commands to execute when a breakpoint is |
| 1610 | reached and execution stops. Once breakpoint \#1 has been created, |
| 1611 | enter \samp{commands 1} and enter a series of commands to be executed, |
| 1612 | finishing the list with \samp{end}. The command list can include |
| 1613 | commands that resume execution, such as \samp{continue} or |
| 1614 | \samp{next}. (Contributed by Gr\'egoire Dooms.) |
| 1615 | % Patch 790710 |
| 1616 | |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1617 | \item The \module{pickle} and \module{cPickle} modules no |
| 1618 | longer accept a return value of \code{None} from the |
| 1619 | \method{__reduce__()} method; the method must return a tuple of |
| 1620 | arguments instead. The ability to return \code{None} was deprecated |
| 1621 | in Python 2.4, so this completes the removal of the feature. |
| 1622 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1623 | \item The \module{pkgutil} module, containing various utility |
| 1624 | functions for finding packages, was enhanced to support PEP 302's |
| 1625 | import 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 |
| 1629 | included in the \file{Tools/pybench} directory. The pybench suite is |
| 1630 | an improvement on the commonly used \file{pystone.py} program because |
| 1631 | pybench provides a more detailed measurement of the interpreter's |
| 1632 | speed. It times particular operations such as function calls, |
| 1633 | tuple slicing, method lookups, and numeric operations, instead of |
| 1634 | performing many different operations and reducing the result to a |
| 1635 | single number as \file{pystone.py} does. |
| 1636 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1637 | \item The \module{pyexpat} module now uses version 2.0 of the Expat parser. |
| 1638 | (Contributed by Trent Mick.) |
| 1639 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1640 | \item The old \module{regex} and \module{regsub} modules, which have been |
| 1641 | deprecated ever since Python 2.0, have finally been deleted. |
| 1642 | Other deleted modules: \module{statcache}, \module{tzparse}, |
| 1643 | \module{whrandom}. |
| 1644 | |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1645 | \item Also deleted: the \file{lib-old} directory, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1646 | which includes ancient modules such as \module{dircmp} and |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 1647 | \module{ni}, was removed. \file{lib-old} wasn't on the default |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1648 | \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. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1650 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1651 | \item The \module{rlcompleter} module is no longer |
| 1652 | dependent on importing the \module{readline} module and |
| 1653 | therefore now works on non-{\UNIX} platforms. |
| 1654 | (Patch from Robert Kiendl.) |
| 1655 | % Patch #1472854 |
| 1656 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 1657 | \item The \module{SimpleXMLRPCServer} and \module{DocXMLRPCServer} |
| 1658 | classes now have a \member{rpc_paths} attribute that constrains |
| 1659 | XML-RPC operations to a limited set of URL paths; the default is |
| 1660 | to allow only \code{'/'} and \code{'/RPC2'}. Setting |
| 1661 | \member{rpc_paths} to \code{None} or an empty tuple disables |
| 1662 | this path checking. |
| 1663 | % Bug #1473048 |
| 1664 | |
Andrew M. Kuchling | 4678dc8 | 2006-01-15 16:11:28 +0000 | [diff] [blame] | 1665 | \item The \module{socket} module now supports \constant{AF_NETLINK} |
| 1666 | sockets on Linux, thanks to a patch from Philippe Biondi. |
| 1667 | Netlink sockets are a Linux-specific mechanism for communications |
| 1668 | between a user-space process and kernel code; an introductory |
| 1669 | article about them is at \url{http://www.linuxjournal.com/article/7356}. |
| 1670 | In Python code, netlink addresses are represented as a tuple of 2 integers, |
| 1671 | \code{(\var{pid}, \var{group_mask})}. |
| 1672 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1673 | Two new methods on socket objects, \method{recv_buf(\var{buffer})} and |
| 1674 | \method{recvfrom_buf(\var{buffer})}, store the received data in an object |
| 1675 | that supports the buffer protocol instead of returning the data as a |
| 1676 | string. This means you can put the data directly into an array or a |
| 1677 | memory-mapped file. |
| 1678 | |
| 1679 | Socket objects also gained \method{getfamily()}, \method{gettype()}, |
| 1680 | and \method{getproto()} accessor methods to retrieve the family, type, |
| 1681 | and protocol values for the socket. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1682 | |
| 1683 | \item New module: the \module{spwd} module provides functions for |
| 1684 | accessing the shadow password database on systems that support |
| 1685 | shadow passwords. |
| 1686 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1687 | \item The \module{struct} is now faster because it |
| 1688 | compiles format strings into \class{Struct} objects |
| 1689 | with \method{pack()} and \method{unpack()} methods. This is similar |
| 1690 | to how the \module{re} module lets you create compiled regular |
| 1691 | expression 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} |
| 1697 | s = struct.Struct('ih3s') |
| 1698 | |
| 1699 | data = s.pack(1972, 187, 'abc') |
| 1700 | year, number, name = s.unpack(data) |
| 1701 | \end{verbatim} |
| 1702 | |
| 1703 | You can also pack and unpack data to and from buffer objects directly |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1704 | using the \method{pack_into(\var{buffer}, \var{offset}, \var{v1}, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1705 | \var{v2}, ...)} and \method{unpack_from(\var{buffer}, \var{offset})} |
| 1706 | methods. This lets you store data directly into an array or a |
| 1707 | memory-mapped file. |
| 1708 | |
| 1709 | (\class{Struct} objects were implemented by Bob Ippolito at the |
| 1710 | NeedForSpeed sprint. Support for buffer objects was added by Martin |
| 1711 | Blais, also at the NeedForSpeed sprint.) |
| 1712 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1713 | \item The Python developers switched from CVS to Subversion during the 2.5 |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1714 | development process. Information about the exact build version is |
| 1715 | available 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 |
| 1718 | of 2.5 was reporting \code{('CPython', 'trunk', '45313:45315')}. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1719 | |
| 1720 | This information is also available to C extensions via the |
| 1721 | \cfunction{Py_GetBuildInfo()} function that returns a |
| 1722 | string of build information like this: |
| 1723 | \code{"trunk:45355:45356M, Apr 13 2006, 07:42:19"}. |
| 1724 | (Contributed by Barry Warsaw.) |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1725 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1726 | \item Another new function, \function{sys._current_frames()}, returns |
| 1727 | the current stack frames for all running threads as a dictionary |
| 1728 | mapping thread identifiers to the topmost stack frame currently active |
| 1729 | in that thread at the time the function is called. (Contributed by |
| 1730 | Tim Peters.) |
| 1731 | |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1732 | \item The \class{TarFile} class in the \module{tarfile} module now has |
Georg Brandl | 08c02db | 2005-07-22 18:39:19 +0000 | [diff] [blame] | 1733 | an \method{extractall()} method that extracts all members from the |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1734 | archive into the current working directory. It's also possible to set |
| 1735 | a different directory as the extraction target, and to unpack only a |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1736 | subset of the archive's members. |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1737 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1738 | The compression used for a tarfile opened in stream mode can now be |
| 1739 | autodetected using the mode \code{'r|*'}. |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1740 | % patch 918101 |
| 1741 | (Contributed by Lars Gust\"abel.) |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 1742 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1743 | \item The \module{threading} module now lets you set the stack size |
| 1744 | used when new threads are created. The |
| 1745 | \function{stack_size(\optional{\var{size}})} function returns the |
| 1746 | currently configured stack size, and supplying the optional \var{size} |
| 1747 | parameter sets a new value. Not all platforms support changing the |
| 1748 | stack size, but Windows, POSIX threading, and OS/2 all do. |
| 1749 | (Contributed by Andrew MacIntyre.) |
| 1750 | % Patch 1454481 |
| 1751 | |
Andrew M. Kuchling | f688cc5 | 2006-03-10 18:50:08 +0000 | [diff] [blame] | 1752 | \item The \module{unicodedata} module has been updated to use version 4.1.0 |
| 1753 | of the Unicode character database. Version 3.2.0 is required |
| 1754 | by some specifications, so it's still available as |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1755 | \member{unicodedata.ucd_3_2_0}. |
Andrew M. Kuchling | f688cc5 | 2006-03-10 18:50:08 +0000 | [diff] [blame] | 1756 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1757 | \item New module: the \module{uuid} module generates |
| 1758 | universally unique identifiers (UUIDs) according to \rfc{4122}. The |
| 1759 | RFC defines several different UUID versions that are generated from a |
| 1760 | starting string, from system properties, or purely randomly. This |
| 1761 | module contains a \class{UUID} class and |
| 1762 | functions named \function{uuid1()}, |
| 1763 | \function{uuid3()}, \function{uuid4()}, and |
| 1764 | \function{uuid5()} to generate different versions of UUID. (Version 2 UUIDs |
| 1765 | are 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() |
| 1771 | UUID('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') |
| 1775 | UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e') |
| 1776 | |
| 1777 | >>> # make a random UUID |
| 1778 | >>> uuid.uuid4() |
| 1779 | UUID('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') |
| 1783 | UUID('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 |
| 1790 | over the weak references contained in the dictionary. |
| 1791 | \method{iterkeyrefs()} and \method{keyrefs()} methods were |
| 1792 | added to \class{WeakKeyDictionary}, and |
| 1793 | \method{itervaluerefs()} and \method{valuerefs()} were added to |
| 1794 | \class{WeakValueDictionary}. (Contributed by Fred L.~Drake, Jr.) |
| 1795 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1796 | \item The \module{webbrowser} module received a number of |
| 1797 | enhancements. |
| 1798 | It's now usable as a script with \code{python -m webbrowser}, taking a |
| 1799 | URL as the argument; there are a number of switches |
| 1800 | to 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 |
| 1803 | to support this. The module's \function{open()} function supports an |
| 1804 | additional feature, an \var{autoraise} parameter that signals whether |
| 1805 | to raise the open window when possible. A number of additional |
| 1806 | browsers were added to the supported list such as Firefox, Opera, |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1807 | Konqueror, and elinks. (Contributed by Oleg Broytmann and Georg |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1808 | Brandl.) |
| 1809 | % Patch #754022 |
| 1810 | |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1811 | \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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1815 | (Contributed by Skip Montanaro.) |
| 1816 | % Patch 1120353 |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1817 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1818 | \item The \module{zipfile} module now supports the ZIP64 version of the |
| 1819 | format, meaning that a .zip archive can now be larger than 4~GiB and |
| 1820 | can contain individual files larger than 4~GiB. (Contributed by |
| 1821 | Ronald Oussoren.) |
| 1822 | % Patch 1446489 |
| 1823 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1824 | \item The \module{zlib} module's \class{Compress} and \class{Decompress} |
| 1825 | objects now support a \method{copy()} method that makes a copy of the |
| 1826 | object's internal state and returns a new |
| 1827 | \class{Compress} or \class{Decompress} object. |
| 1828 | (Contributed by Chris AtLee.) |
| 1829 | % Patch 1435422 |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 1830 | |
Fred Drake | 114b8ca | 2005-03-21 05:47:11 +0000 | [diff] [blame] | 1831 | \end{itemize} |
Andrew M. Kuchling | e9b1bf4 | 2005-03-20 19:26:30 +0000 | [diff] [blame] | 1832 | |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1833 | |
| 1834 | |
| 1835 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1836 | \subsection{The ctypes package\label{module-ctypes}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 1837 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1838 | The \module{ctypes} package, written by Thomas Heller, has been added |
| 1839 | to the standard library. \module{ctypes} lets you call arbitrary functions |
| 1840 | in shared libraries or DLLs. Long-time users may remember the \module{dl} module, which |
| 1841 | provides functions for loading shared libraries and calling functions in them. The \module{ctypes} package is much fancier. |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1842 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1843 | To 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 |
| 1845 | or DLL. Once that's done, you can call arbitrary functions |
| 1846 | by accessing them as attributes of the \class{CDLL} object. |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 1847 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1848 | \begin{verbatim} |
| 1849 | import ctypes |
| 1850 | |
| 1851 | libc = ctypes.CDLL('libc.so.6') |
| 1852 | result = libc.printf("Line of output\n") |
| 1853 | \end{verbatim} |
| 1854 | |
| 1855 | Type 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 |
| 1857 | to change the wrapped value. Python integers and strings will be automatically |
| 1858 | converted to the corresponding C types, but for other types you |
| 1859 | must call the correct type constructor. (And I mean \emph{must}; |
| 1860 | getting it wrong will often result in the interpreter crashing |
| 1861 | with a segmentation fault.) |
| 1862 | |
| 1863 | You 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 |
| 1864 | supposed to be immutable; breaking this rule will cause puzzling bugs. When you need a modifiable memory area, |
| 1865 | use \function{create_string_buffer()}: |
| 1866 | |
| 1867 | \begin{verbatim} |
| 1868 | s = "this is a string" |
| 1869 | buf = ctypes.create_string_buffer(s) |
| 1870 | libc.strfry(buf) |
| 1871 | \end{verbatim} |
| 1872 | |
| 1873 | C functions are assumed to return integers, but you can set |
| 1874 | the \member{restype} attribute of the function object to |
| 1875 | change this: |
| 1876 | |
| 1877 | \begin{verbatim} |
| 1878 | >>> libc.atof('2.71828') |
| 1879 | -1783957616 |
| 1880 | >>> libc.atof.restype = ctypes.c_double |
| 1881 | >>> libc.atof('2.71828') |
| 1882 | 2.71828 |
| 1883 | \end{verbatim} |
| 1884 | |
| 1885 | \module{ctypes} also provides a wrapper for Python's C API |
| 1886 | as the \code{ctypes.pythonapi} object. This object does \emph{not} |
| 1887 | release the global interpreter lock before calling a function, because the lock must be held when calling into the interpreter's code. |
| 1888 | There's a \class{py_object()} type constructor that will create a |
| 1889 | \ctype{PyObject *} pointer. A simple usage: |
| 1890 | |
| 1891 | \begin{verbatim} |
| 1892 | import ctypes |
| 1893 | |
| 1894 | d = {} |
| 1895 | ctypes.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 | |
| 1900 | Don't forget to use \class{py_object()}; if it's omitted you end |
| 1901 | up with a segmentation fault. |
| 1902 | |
| 1903 | \module{ctypes} has been around for a while, but people still write |
| 1904 | and distribution hand-coded extension modules because you can't rely on \module{ctypes} being present. |
| 1905 | Perhaps developers will begin to write |
| 1906 | Python wrappers atop a library accessed through \module{ctypes} instead |
| 1907 | of 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 1914 | \seeurl{../lib/module-ctypes.html}{The documentation |
| 1915 | for the \module{ctypes} module.} |
| 1916 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1917 | \end{seealso} |
| 1918 | |
| 1919 | |
| 1920 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1921 | \subsection{The ElementTree package\label{module-etree}} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1922 | |
| 1923 | A subset of Fredrik Lundh's ElementTree library for processing XML has |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1924 | been added to the standard library as \module{xml.etree}. The |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1925 | available modules are |
| 1926 | \module{ElementTree}, \module{ElementPath}, and |
| 1927 | \module{ElementInclude} from ElementTree 1.2.6. |
| 1928 | The \module{cElementTree} accelerator module is also included. |
| 1929 | |
| 1930 | The rest of this section will provide a brief overview of using |
| 1931 | ElementTree. Full documentation for ElementTree is available at |
| 1932 | \url{http://effbot.org/zone/element-index.htm}. |
| 1933 | |
| 1934 | ElementTree represents an XML document as a tree of element nodes. |
| 1935 | The text content of the document is stored as the \member{.text} |
| 1936 | and \member{.tail} attributes of |
| 1937 | (This is one of the major differences between ElementTree and |
| 1938 | the Document Object Model; in the DOM there are many different |
| 1939 | types of node, including \class{TextNode}.) |
| 1940 | |
| 1941 | The most commonly used parsing function is \function{parse()}, that |
| 1942 | takes either a string (assumed to contain a filename) or a file-like |
| 1943 | object and returns an \class{ElementTree} instance: |
| 1944 | |
| 1945 | \begin{verbatim} |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1946 | from xml.etree import ElementTree as ET |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1947 | |
| 1948 | tree = ET.parse('ex-1.xml') |
| 1949 | |
| 1950 | feed = urllib.urlopen( |
| 1951 | 'http://planet.python.org/rss10.xml') |
| 1952 | tree = ET.parse(feed) |
| 1953 | \end{verbatim} |
| 1954 | |
| 1955 | Once you have an \class{ElementTree} instance, you |
| 1956 | can call its \method{getroot()} method to get the root \class{Element} node. |
| 1957 | |
| 1958 | There's also an \function{XML()} function that takes a string literal |
| 1959 | and returns an \class{Element} node (not an \class{ElementTree}). |
| 1960 | This function provides a tidy way to incorporate XML fragments, |
| 1961 | approaching the convenience of an XML literal: |
| 1962 | |
| 1963 | \begin{verbatim} |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1964 | svg = ET.XML("""<svg width="10px" version="1.0"> |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1965 | </svg>""") |
| 1966 | svg.set('height', '320px') |
| 1967 | svg.append(elem1) |
| 1968 | \end{verbatim} |
| 1969 | |
| 1970 | Each XML element supports some dictionary-like and some list-like |
| 1971 | access methods. Dictionary-like operations are used to access attribute |
| 1972 | values, 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1978 | \lineii{list(elem)}{Returns list of child elements.} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1979 | \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 | |
| 1989 | Comments and processing instructions are also represented as |
| 1990 | \class{Element} nodes. To check if a node is a comment or processing |
| 1991 | instructions: |
| 1992 | |
| 1993 | \begin{verbatim} |
| 1994 | if elem.tag is ET.Comment: |
| 1995 | ... |
| 1996 | elif elem.tag is ET.ProcessingInstruction: |
| 1997 | ... |
| 1998 | \end{verbatim} |
| 1999 | |
| 2000 | To generate XML output, you should call the |
| 2001 | \method{ElementTree.write()} method. Like \function{parse()}, |
| 2002 | it can take either a string or a file-like object: |
| 2003 | |
| 2004 | \begin{verbatim} |
| 2005 | # Encoding is US-ASCII |
| 2006 | tree.write('output.xml') |
| 2007 | |
| 2008 | # Encoding is UTF-8 |
| 2009 | f = open('output.xml', 'w') |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2010 | tree.write(f, encoding='utf-8') |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2011 | \end{verbatim} |
| 2012 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2013 | (Caution: the default encoding used for output is ASCII. For general |
| 2014 | XML work, where an element's name may contain arbitrary Unicode |
| 2015 | characters, ASCII isn't a very useful encoding because it will raise |
| 2016 | an exception if an element's name contains any characters with values |
| 2017 | greater than 127. Therefore, it's best to specify a different |
| 2018 | encoding such as UTF-8 that can handle any Unicode character.) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2019 | |
| 2020 | This section is only a partial description of the ElementTree interfaces. |
| 2021 | Please 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 Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2028 | \end{seealso} |
| 2029 | |
| 2030 | |
| 2031 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2032 | \subsection{The hashlib package\label{module-hashlib}} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2033 | |
| 2034 | A new \module{hashlib} module, written by Gregory P. Smith, |
| 2035 | has been added to replace the |
| 2036 | \module{md5} and \module{sha} modules. \module{hashlib} adds support |
| 2037 | for additional secure hashes (SHA-224, SHA-256, SHA-384, and SHA-512). |
| 2038 | When available, the module uses OpenSSL for fast platform optimized |
| 2039 | implementations of algorithms. |
| 2040 | |
| 2041 | The old \module{md5} and \module{sha} modules still exist as wrappers |
| 2042 | around hashlib to preserve backwards compatibility. The new module's |
| 2043 | interface is very close to that of the old modules, but not identical. |
| 2044 | The most significant difference is that the constructor functions |
| 2045 | for creating new hashing objects are named differently. |
| 2046 | |
| 2047 | \begin{verbatim} |
| 2048 | # Old versions |
| 2049 | h = md5.md5() |
| 2050 | h = md5.new() |
| 2051 | |
| 2052 | # New version |
| 2053 | h = hashlib.md5() |
| 2054 | |
| 2055 | # Old versions |
| 2056 | h = sha.sha() |
| 2057 | h = sha.new() |
| 2058 | |
| 2059 | # New version |
| 2060 | h = hashlib.sha1() |
| 2061 | |
| 2062 | # Hash that weren't previously available |
| 2063 | h = hashlib.sha224() |
| 2064 | h = hashlib.sha256() |
| 2065 | h = hashlib.sha384() |
| 2066 | h = hashlib.sha512() |
| 2067 | |
| 2068 | # Alternative form |
| 2069 | h = hashlib.new('md5') # Provide algorithm as a string |
| 2070 | \end{verbatim} |
| 2071 | |
| 2072 | Once a hash object has been created, its methods are the same as before: |
| 2073 | \method{update(\var{string})} hashes the specified string into the |
| 2074 | current digest state, \method{digest()} and \method{hexdigest()} |
| 2075 | return the digest value as a binary string or a string of hex digits, |
| 2076 | and \method{copy()} returns a new hashing object with the same digest state. |
| 2077 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2078 | \begin{seealso} |
| 2079 | |
| 2080 | \seeurl{../lib/module-hashlib.html}{The documentation |
| 2081 | for the \module{hashlib} module.} |
| 2082 | |
| 2083 | \end{seealso} |
| 2084 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2085 | |
| 2086 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2087 | \subsection{The sqlite3 package\label{module-sqlite}} |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2088 | |
| 2089 | The pysqlite module (\url{http://www.pysqlite.org}), a wrapper for the |
| 2090 | SQLite embedded database, has been added to the standard library under |
| 2091 | the package name \module{sqlite3}. |
| 2092 | |
| 2093 | SQLite is a C library that provides a SQL-language database that |
| 2094 | stores data in disk files without requiring a separate server process. |
| 2095 | pysqlite was written by Gerhard H\"aring and provides a SQL interface |
| 2096 | compliant with the DB-API 2.0 specification described by |
| 2097 | \pep{249}. This means that it should be possible to write the first |
| 2098 | version of your applications using SQLite for data storage. If |
| 2099 | switching to a larger database such as PostgreSQL or Oracle is |
| 2100 | later necessary, the switch should be relatively easy. |
| 2101 | |
| 2102 | If you're compiling the Python source yourself, note that the source |
| 2103 | tree doesn't include the SQLite code, only the wrapper module. |
| 2104 | You'll need to have the SQLite libraries and headers installed before |
| 2105 | compiling Python, and the build process will compile the module when |
| 2106 | the necessary headers are available. |
| 2107 | |
| 2108 | To use the module, you must first create a \class{Connection} object |
| 2109 | that represents the database. Here the data will be stored in the |
| 2110 | \file{/tmp/example} file: |
| 2111 | |
| 2112 | \begin{verbatim} |
| 2113 | conn = sqlite3.connect('/tmp/example') |
| 2114 | \end{verbatim} |
| 2115 | |
| 2116 | You can also supply the special name \samp{:memory:} to create |
| 2117 | a database in RAM. |
| 2118 | |
| 2119 | Once you have a \class{Connection}, you can create a \class{Cursor} |
| 2120 | object and call its \method{execute()} method to perform SQL commands: |
| 2121 | |
| 2122 | \begin{verbatim} |
| 2123 | c = conn.cursor() |
| 2124 | |
| 2125 | # Create table |
| 2126 | c.execute('''create table stocks |
| 2127 | (date timestamp, trans varchar, symbol varchar, |
| 2128 | qty decimal, price decimal)''') |
| 2129 | |
| 2130 | # Insert a row of data |
| 2131 | c.execute("""insert into stocks |
| 2132 | values ('2006-01-05','BUY','RHAT',100,35.14)""") |
| 2133 | \end{verbatim} |
| 2134 | |
| 2135 | Usually your SQL operations will need to use values from Python |
| 2136 | variables. You shouldn't assemble your query using Python's string |
| 2137 | operations because doing so is insecure; it makes your program |
| 2138 | vulnerable to an SQL injection attack. |
| 2139 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 2140 | Instead, use the DB-API's parameter substitution. Put \samp{?} as a |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2141 | placeholder wherever you want to use a value, and then provide a tuple |
| 2142 | of values as the second argument to the cursor's \method{execute()} |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 2143 | method. (Other database modules may use a different placeholder, |
| 2144 | such as \samp{\%s} or \samp{:1}.) For example: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2145 | |
| 2146 | \begin{verbatim} |
| 2147 | # Never do this -- insecure! |
| 2148 | symbol = 'IBM' |
| 2149 | c.execute("... where symbol = '%s'" % symbol) |
| 2150 | |
| 2151 | # Do this instead |
| 2152 | t = (symbol,) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2153 | c.execute('select * from stocks where symbol=?', t) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2154 | |
| 2155 | # Larger example |
| 2156 | for 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 | |
| 2163 | To retrieve data after executing a SELECT statement, you can either |
| 2164 | treat the cursor as an iterator, call the cursor's \method{fetchone()} |
| 2165 | method to retrieve a single matching row, |
| 2166 | or call \method{fetchall()} to get a list of the matching rows. |
| 2167 | |
| 2168 | This 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 | |
| 2183 | For 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 |
| 2193 | available data types for the supported SQL dialect.} |
| 2194 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2195 | \seeurl{../lib/module-sqlite3.html}{The documentation |
| 2196 | for the \module{sqlite3} module.} |
| 2197 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2198 | \seepep{249}{Database API Specification 2.0}{PEP written by |
| 2199 | Marc-Andr\'e Lemburg.} |
| 2200 | |
| 2201 | \end{seealso} |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 2202 | |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2203 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2204 | %====================================================================== |
| 2205 | \subsection{The wsgiref package\label{module-wsgiref}} |
| 2206 | |
| 2207 | % XXX should this be in a PEP 333 section instead? |
| 2208 | |
| 2209 | The Web Server Gateway Interface (WSGI) v1.0 defines a standard |
| 2210 | interface between web servers and Python web applications and is |
| 2211 | described in \pep{333}. The \module{wsgiref} package is a reference |
| 2212 | implementation of the WSGI specification. |
| 2213 | |
| 2214 | The package includes a basic HTTP server that will run a WSGI |
| 2215 | application; this server is useful for debugging but isn't intended for |
| 2216 | production use. Setting up a server takes only a few lines of code: |
| 2217 | |
| 2218 | \begin{verbatim} |
| 2219 | from wsgiref import simple_server |
| 2220 | |
| 2221 | wsgi_app = ... |
| 2222 | |
| 2223 | host = '' |
| 2224 | port = 8000 |
| 2225 | httpd = simple_server.make_server(host, port, wsgi_app) |
| 2226 | httpd.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 |
| 2237 | Phillip J. Eby.} |
| 2238 | |
| 2239 | \end{seealso} |
| 2240 | |
| 2241 | |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2242 | % ====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2243 | \section{Build and C API Changes\label{build-api}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2244 | |
| 2245 | Changes to Python's build process and to the C API include: |
| 2246 | |
| 2247 | \begin{itemize} |
| 2248 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2249 | \item The Python source tree was converted from CVS to Subversion, |
| 2250 | in a complex migration procedure that was supervised and flawlessly |
| 2251 | carried 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 |
| 2255 | called Prevent, provided the results of their examination of the Python |
| 2256 | source code. The analysis found about 60 bugs that |
| 2257 | were quickly fixed. Many of the bugs were refcounting problems, often |
| 2258 | occurring in error-handling code. See |
| 2259 | \url{http://scan.coverity.com} for the statistics. |
| 2260 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2261 | \item The largest change to the C API came from \pep{353}, |
| 2262 | which modifies the interpreter to use a \ctype{Py_ssize_t} type |
| 2263 | definition instead of \ctype{int}. See the earlier |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 2264 | section~\ref{pep-353} for a discussion of this change. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2265 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2266 | \item The design of the bytecode compiler has changed a great deal, |
| 2267 | no longer generating bytecode by traversing the parse tree. Instead |
Andrew M. Kuchling | db85ed5 | 2005-10-23 21:52:59 +0000 | [diff] [blame] | 2268 | the parse tree is converted to an abstract syntax tree (or AST), and it is |
| 2269 | the abstract syntax tree that's traversed to produce the bytecode. |
| 2270 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2271 | It's possible for Python code to obtain AST objects by using the |
| 2272 | \function{compile()} built-in and specifying \code{_ast.PyCF_ONLY_AST} |
| 2273 | as the value of the |
| 2274 | \var{flags} parameter: |
| 2275 | |
| 2276 | \begin{verbatim} |
| 2277 | from _ast import PyCF_ONLY_AST |
| 2278 | ast = compile("""a=0 |
| 2279 | for i in range(10): |
| 2280 | a += i |
| 2281 | """, "<string>", 'exec', PyCF_ONLY_AST) |
| 2282 | |
| 2283 | assignment = ast.body[0] |
| 2284 | for_loop = ast.body[1] |
| 2285 | \end{verbatim} |
| 2286 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2287 | No 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 |
| 2289 | definition of the various AST nodes in \file{Parser/Python.asdl}. A |
| 2290 | Python script reads this file and generates a set of C structure |
| 2291 | definitions in \file{Include/Python-ast.h}. The |
| 2292 | \cfunction{PyParser_ASTFromString()} and |
| 2293 | \cfunction{PyParser_ASTFromFile()}, defined in |
Andrew M. Kuchling | db85ed5 | 2005-10-23 21:52:59 +0000 | [diff] [blame] | 2294 | \file{Include/pythonrun.h}, take Python source as input and return the |
| 2295 | root of an AST representing the contents. This AST can then be turned |
| 2296 | into a code object by \cfunction{PyAST_Compile()}. For more |
| 2297 | information, read the source code, and then ask questions on |
| 2298 | python-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 |
| 2302 | The AST code was developed under Jeremy Hylton's management, and |
| 2303 | implemented by (in alphabetical order) Brett Cannon, Nick Coghlan, |
| 2304 | Grant Edwards, John Ehresman, Kurt Kaiser, Neal Norwitz, Tim Peters, |
| 2305 | Armin Rigo, and Neil Schemenauer, plus the participants in a number of |
| 2306 | AST sprints at conferences such as PyCon. |
| 2307 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2308 | \item Evan Jones's patch to obmalloc, first described in a talk |
| 2309 | at PyCon DC 2005, was applied. Python 2.4 allocated small objects in |
| 2310 | 256K-sized arenas, but never freed arenas. With this patch, Python |
| 2311 | will free arenas when they're empty. The net effect is that on some |
| 2312 | platforms, when you allocate many objects, Python's memory usage may |
| 2313 | actually drop when you delete them and the memory may be returned to |
| 2314 | the operating system. (Implemented by Evan Jones, and reworked by Tim |
| 2315 | Peters.) |
| 2316 | |
| 2317 | Note that this change means extension modules must be more careful |
| 2318 | when allocating memory. Python's API has many different |
| 2319 | functions for allocating memory that are grouped into families. For |
| 2320 | example, \cfunction{PyMem_Malloc()}, \cfunction{PyMem_Realloc()}, and |
| 2321 | \cfunction{PyMem_Free()} are one family that allocates raw memory, |
| 2322 | while \cfunction{PyObject_Malloc()}, \cfunction{PyObject_Realloc()}, |
| 2323 | and \cfunction{PyObject_Free()} are another family that's supposed to |
| 2324 | be used for creating Python objects. |
| 2325 | |
| 2326 | Previously these different families all reduced to the platform's |
| 2327 | \cfunction{malloc()} and \cfunction{free()} functions. This meant |
| 2328 | it didn't matter if you got things wrong and allocated memory with the |
| 2329 | \cfunction{PyMem} function but freed it with the \cfunction{PyObject} |
| 2330 | function. With 2.5's changes to obmalloc, these families now do different |
| 2331 | things and mismatches will probably result in a segfault. You should |
| 2332 | carefully test your C extension modules with Python 2.5. |
| 2333 | |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 2334 | \item The built-in set types now have an official C API. Call |
| 2335 | \cfunction{PySet_New()} and \cfunction{PyFrozenSet_New()} to create a |
| 2336 | new set, \cfunction{PySet_Add()} and \cfunction{PySet_Discard()} to |
| 2337 | add and remove elements, and \cfunction{PySet_Contains} and |
| 2338 | \cfunction{PySet_Size} to examine the set's state. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2339 | (Contributed by Raymond Hettinger.) |
| 2340 | |
| 2341 | \item C code can now obtain information about the exact revision |
| 2342 | of the Python interpreter by calling the |
| 2343 | \cfunction{Py_GetBuildInfo()} function that returns a |
| 2344 | string of build information like this: |
| 2345 | \code{"trunk:45355:45356M, Apr 13 2006, 07:42:19"}. |
| 2346 | (Contributed by Barry Warsaw.) |
| 2347 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2348 | \item Two new macros can be used to indicate C functions that are |
| 2349 | local to the current file so that a faster calling convention can be |
| 2350 | used. \cfunction{Py_LOCAL(\var{type})} declares the function as |
| 2351 | returning a value of the specified \var{type} and uses a fast-calling |
| 2352 | qualifier. \cfunction{Py_LOCAL_INLINE(\var{type})} does the same thing |
| 2353 | and also requests the function be inlined. If |
| 2354 | \cfunction{PY_LOCAL_AGGRESSIVE} is defined before \file{python.h} is |
| 2355 | included, a set of more aggressive optimizations are enabled for the |
| 2356 | module; you should benchmark the results to find out if these |
| 2357 | optimizations actually make the code faster. (Contributed by Fredrik |
| 2358 | Lundh 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} |
| 2362 | argument. (Contributed by Georg Brandl.) |
| 2363 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2364 | \item The \cfunction{PyErr_Warn()} function for issuing warnings |
| 2365 | is now deprecated in favour of \cfunction{PyErr_WarnEx(category, |
| 2366 | message, stacklevel)} which lets you specify the number of stack |
| 2367 | frames separating this function and the caller. A \var{stacklevel} of |
| 2368 | 1 is the function calling \cfunction{PyErr_WarnEx()}, 2 is the |
| 2369 | function above that, and so forth. (Added by Neal Norwitz.) |
| 2370 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2371 | \item The CPython interpreter is still written in C, but |
| 2372 | the code can now be compiled with a {\Cpp} compiler without errors. |
| 2373 | (Implemented by Anthony Baxter, Martin von~L\"owis, Skip Montanaro.) |
Andrew M. Kuchling | 150e349 | 2005-08-23 00:56:06 +0000 | [diff] [blame] | 2374 | |
| 2375 | \item The \cfunction{PyRange_New()} function was removed. It was |
| 2376 | never documented, never used in the core code, and had dangerously lax |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2377 | error checking. In the unlikely case that your extensions were using |
| 2378 | it, you can replace it by something like the following: |
| 2379 | \begin{verbatim} |
| 2380 | range = PyObject_CallFunction((PyObject*) &PyRange_Type, "lll", |
| 2381 | start, stop, step); |
| 2382 | \end{verbatim} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2383 | |
| 2384 | \end{itemize} |
| 2385 | |
| 2386 | |
| 2387 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2388 | \subsection{Port-Specific Changes\label{ports}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2389 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2390 | \begin{itemize} |
| 2391 | |
| 2392 | \item MacOS X (10.3 and higher): dynamic loading of modules |
| 2393 | now uses the \cfunction{dlopen()} function instead of MacOS-specific |
| 2394 | functions. |
| 2395 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2396 | \item MacOS X: a \longprogramopt{enable-universalsdk} switch was added |
| 2397 | to the \program{configure} script that compiles the interpreter as a |
| 2398 | universal binary able to run on both PowerPC and Intel processors. |
| 2399 | (Contributed by Ronald Oussoren.) |
| 2400 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2401 | \item Windows: \file{.dll} is no longer supported as a filename extension for |
| 2402 | extension modules. \file{.pyd} is now the only filename extension that will |
| 2403 | be searched for. |
| 2404 | |
| 2405 | \end{itemize} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2406 | |
| 2407 | |
| 2408 | %====================================================================== |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2409 | \section{Porting to Python 2.5\label{porting}} |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2410 | |
| 2411 | This section lists previously described changes that may require |
| 2412 | changes to your code: |
| 2413 | |
| 2414 | \begin{itemize} |
| 2415 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2416 | \item ASCII is now the default encoding for modules. It's now |
| 2417 | a syntax error if a module contains string literals with 8-bit |
| 2418 | characters but doesn't have an encoding declaration. In Python 2.4 |
| 2419 | this triggered a warning, not a syntax error. |
Andrew M. Kuchling | 0c35db9 | 2005-03-20 20:06:49 +0000 | [diff] [blame] | 2420 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2421 | \item Previously, the \member{gi_frame} attribute of a generator |
| 2422 | was always a frame object. Because of the \pep{342} changes |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 2423 | described in section~\ref{pep-342}, it's now possible |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2424 | for \member{gi_frame} to be \code{None}. |
Andrew M. Kuchling | 0c35db9 | 2005-03-20 20:06:49 +0000 | [diff] [blame] | 2425 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2426 | \item Library: the \module{csv} module is now stricter about multi-line quoted |
| 2427 | fields. If your files contain newlines embedded within fields, the |
| 2428 | input should be split into lines in a manner which preserves the |
| 2429 | newline characters. |
| 2430 | |
| 2431 | \item Library: the \module{locale} module's |
| 2432 | \function{format()} function's would previously |
| 2433 | accept any string as long as no more than one \%char specifier |
| 2434 | appeared. In Python 2.5, the argument must be exactly one \%char |
| 2435 | specifier with no surrounding text. |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 2436 | |
| 2437 | \item Library: The \module{pickle} and \module{cPickle} modules no |
| 2438 | longer accept a return value of \code{None} from the |
| 2439 | \method{__reduce__()} method; the method must return a tuple of |
| 2440 | arguments instead. The modules also no longer accept the deprecated |
| 2441 | \var{bin} keyword parameter. |
| 2442 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 2443 | \item Library: The \module{SimpleXMLRPCServer} and \module{DocXMLRPCServer} |
| 2444 | classes now have a \member{rpc_paths} attribute that constrains |
| 2445 | XML-RPC operations to a limited set of URL paths; the default is |
| 2446 | to allow only \code{'/'} and \code{'/RPC2'}. Setting |
| 2447 | \member{rpc_paths} to \code{None} or an empty tuple disables |
| 2448 | this path checking. |
| 2449 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2450 | \item C API: Many functions now use \ctype{Py_ssize_t} |
Thomas Wouters | d4ec0c3 | 2006-04-21 16:44:05 +0000 | [diff] [blame] | 2451 | instead of \ctype{int} to allow processing more data on 64-bit |
| 2452 | machines. Extension code may need to make the same change to avoid |
| 2453 | warnings and to support 64-bit machines. See the earlier |
| 2454 | section~\ref{pep-353} for a discussion of this change. |
Andrew M. Kuchling | 3e41b05 | 2005-03-01 00:53:46 +0000 | [diff] [blame] | 2455 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2456 | \item C API: |
| 2457 | The obmalloc changes mean that |
| 2458 | you must be careful to not mix usage |
| 2459 | of the \cfunction{PyMem_*()} and \cfunction{PyObject_*()} |
| 2460 | families of functions. Memory allocated with |
| 2461 | one family's \cfunction{*_Malloc()} must be |
| 2462 | freed with the corresponding family's \cfunction{*_Free()} function. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2463 | |
| 2464 | \end{itemize} |
| 2465 | |
| 2466 | |
| 2467 | %====================================================================== |
| 2468 | \section{Acknowledgements \label{acks}} |
| 2469 | |
| 2470 | The author would like to thank the following people for offering |
| 2471 | suggestions, corrections and assistance with various drafts of this |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 2472 | article: Georg Brandl, Nick Coghlan, Phillip J. Eby, Lars Gust\"abel, |
| 2473 | Raymond Hettinger, Ralf W. Grosse-Kunstleve, Kent Johnson, Iain Lowe, |
| 2474 | Martin von~L\"owis, Fredrik Lundh, Andrew McNamara, Skip Montanaro, |
| 2475 | Gustavo Niemeyer, Paul Prescod, James Pryor, Mike Rovner, Scott |
| 2476 | Weikart, Barry Warsaw, Thomas Wouters. |
Fred Drake | 2db7680 | 2004-12-01 05:05:47 +0000 | [diff] [blame] | 2477 | |
| 2478 | \end{document} |