Fred Drake | 03e1031 | 2002-03-26 19:17:43 +0000 | [diff] [blame] | 1 | \documentclass{howto} |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 2 | % $Id$ |
| 3 | |
| 4 | \title{What's New in Python 2.3} |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 5 | \release{0.03} |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 6 | \author{A.M. Kuchling} |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 7 | \authoraddress{\email{amk@amk.ca}} |
Fred Drake | 03e1031 | 2002-03-26 19:17:43 +0000 | [diff] [blame] | 8 | |
| 9 | \begin{document} |
| 10 | \maketitle |
| 11 | \tableofcontents |
| 12 | |
Andrew M. Kuchling | f70a0a8 | 2002-06-10 13:22:46 +0000 | [diff] [blame] | 13 | % Optik (or whatever it gets called) |
| 14 | % |
Andrew M. Kuchling | c61ec52 | 2002-08-04 01:20:05 +0000 | [diff] [blame] | 15 | % MacOS framework-related changes (section of its own, probably) |
| 16 | % |
Andrew M. Kuchling | 90e9a79 | 2002-08-15 00:40:21 +0000 | [diff] [blame] | 17 | % xreadlines obsolete; files are their own iterator |
Andrew M. Kuchling | f70a0a8 | 2002-06-10 13:22:46 +0000 | [diff] [blame] | 18 | |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 19 | %\section{Introduction \label{intro}} |
| 20 | |
| 21 | {\large This article is a draft, and is currently up to date for some |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 22 | random version of the CVS tree from early November 2002. Please send any |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 23 | additions, comments or errata to the author.} |
| 24 | |
| 25 | This article explains the new features in Python 2.3. The tentative |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 26 | release date of Python 2.3 is currently scheduled for some undefined |
| 27 | time before the end of 2002. |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 28 | |
| 29 | This article doesn't attempt to provide a complete specification of |
| 30 | the new features, but instead provides a convenient overview. For |
| 31 | full details, you should refer to the documentation for Python 2.3, |
| 32 | such as the |
| 33 | \citetitle[http://www.python.org/doc/2.3/lib/lib.html]{Python Library |
| 34 | Reference} and the |
| 35 | \citetitle[http://www.python.org/doc/2.3/ref/ref.html]{Python |
| 36 | Reference Manual}. If you want to understand the complete |
| 37 | implementation and design rationale for a change, refer to the PEP for |
| 38 | a particular new feature. |
Fred Drake | 03e1031 | 2002-03-26 19:17:43 +0000 | [diff] [blame] | 39 | |
| 40 | |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 41 | %====================================================================== |
Andrew M. Kuchling | bc46510 | 2002-08-20 01:34:06 +0000 | [diff] [blame] | 42 | \section{PEP 218: A Standard Set Datatype} |
| 43 | |
| 44 | The new \module{sets} module contains an implementation of a set |
| 45 | datatype. The \class{Set} class is for mutable sets, sets that can |
| 46 | have members added and removed. The \class{ImmutableSet} class is for |
| 47 | sets that can't be modified, and can be used as dictionary keys. Sets |
| 48 | are built on top of dictionaries, so the elements within a set must be |
| 49 | hashable. |
| 50 | |
| 51 | As a simple example, |
| 52 | |
| 53 | \begin{verbatim} |
| 54 | >>> import sets |
| 55 | >>> S = sets.Set([1,2,3]) |
| 56 | >>> S |
| 57 | Set([1, 2, 3]) |
| 58 | >>> 1 in S |
| 59 | True |
| 60 | >>> 0 in S |
| 61 | False |
| 62 | >>> S.add(5) |
| 63 | >>> S.remove(3) |
| 64 | >>> S |
| 65 | Set([1, 2, 5]) |
| 66 | >>> |
| 67 | \end{verbatim} |
| 68 | |
| 69 | The union and intersection of sets can be computed with the |
| 70 | \method{union()} and \method{intersection()} methods, or, |
| 71 | alternatively, using the bitwise operators \samp{\&} and \samp{|}. |
| 72 | Mutable sets also have in-place versions of these methods, |
| 73 | \method{union_update()} and \method{intersection_update()}. |
| 74 | |
| 75 | \begin{verbatim} |
| 76 | >>> S1 = sets.Set([1,2,3]) |
| 77 | >>> S2 = sets.Set([4,5,6]) |
| 78 | >>> S1.union(S2) |
| 79 | Set([1, 2, 3, 4, 5, 6]) |
| 80 | >>> S1 | S2 # Alternative notation |
| 81 | Set([1, 2, 3, 4, 5, 6]) |
| 82 | >>> S1.intersection(S2) |
| 83 | Set([]) |
| 84 | >>> S1 & S2 # Alternative notation |
| 85 | Set([]) |
| 86 | >>> S1.union_update(S2) |
| 87 | Set([1, 2, 3, 4, 5, 6]) |
| 88 | >>> S1 |
| 89 | Set([1, 2, 3, 4, 5, 6]) |
| 90 | >>> |
| 91 | \end{verbatim} |
| 92 | |
| 93 | It's also possible to take the symmetric difference of two sets. This |
| 94 | is the set of all elements in the union that aren't in the |
| 95 | intersection. An alternative way of expressing the symmetric |
| 96 | difference is that it contains all elements that are in exactly one |
| 97 | set. Again, there's an in-place version, with the ungainly name |
| 98 | \method{symmetric_difference_update()}. |
| 99 | |
| 100 | \begin{verbatim} |
| 101 | >>> S1 = sets.Set([1,2,3,4]) |
| 102 | >>> S2 = sets.Set([3,4,5,6]) |
| 103 | >>> S1.symmetric_difference(S2) |
| 104 | Set([1, 2, 5, 6]) |
| 105 | >>> S1 ^ S2 |
| 106 | Set([1, 2, 5, 6]) |
| 107 | >>> |
| 108 | \end{verbatim} |
| 109 | |
| 110 | There are also methods, \method{issubset()} and \method{issuperset()}, |
| 111 | for checking whether one set is a strict subset or superset of |
| 112 | another: |
| 113 | |
| 114 | \begin{verbatim} |
| 115 | >>> S1 = sets.Set([1,2,3]) |
| 116 | >>> S2 = sets.Set([2,3]) |
| 117 | >>> S2.issubset(S1) |
| 118 | True |
| 119 | >>> S1.issubset(S2) |
| 120 | False |
| 121 | >>> S1.issuperset(S2) |
| 122 | True |
| 123 | >>> |
| 124 | \end{verbatim} |
| 125 | |
| 126 | |
| 127 | \begin{seealso} |
| 128 | |
| 129 | \seepep{218}{Adding a Built-In Set Object Type}{PEP written by Greg V. Wilson. |
| 130 | Implemented by Greg V. Wilson, Alex Martelli, and GvR.} |
| 131 | |
| 132 | \end{seealso} |
| 133 | |
| 134 | |
| 135 | |
| 136 | %====================================================================== |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 137 | \section{PEP 255: Simple Generators\label{section-generators}} |
Andrew M. Kuchling | f4dd65d | 2002-04-01 19:28:09 +0000 | [diff] [blame] | 138 | |
| 139 | In Python 2.2, generators were added as an optional feature, to be |
| 140 | enabled by a \code{from __future__ import generators} directive. In |
| 141 | 2.3 generators no longer need to be specially enabled, and are now |
| 142 | always present; this means that \keyword{yield} is now always a |
| 143 | keyword. The rest of this section is a copy of the description of |
| 144 | generators from the ``What's New in Python 2.2'' document; if you read |
| 145 | it when 2.2 came out, you can skip the rest of this section. |
| 146 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 147 | You're doubtless familiar with how function calls work in Python or C. |
| 148 | When you call a function, it gets a private namespace where its local |
Andrew M. Kuchling | f4dd65d | 2002-04-01 19:28:09 +0000 | [diff] [blame] | 149 | variables are created. When the function reaches a \keyword{return} |
| 150 | statement, the local variables are destroyed and the resulting value |
| 151 | is returned to the caller. A later call to the same function will get |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 152 | a fresh new set of local variables. But, what if the local variables |
Andrew M. Kuchling | f4dd65d | 2002-04-01 19:28:09 +0000 | [diff] [blame] | 153 | weren't thrown away on exiting a function? What if you could later |
| 154 | resume the function where it left off? This is what generators |
| 155 | provide; they can be thought of as resumable functions. |
| 156 | |
| 157 | Here's the simplest example of a generator function: |
| 158 | |
| 159 | \begin{verbatim} |
| 160 | def generate_ints(N): |
| 161 | for i in range(N): |
| 162 | yield i |
| 163 | \end{verbatim} |
| 164 | |
| 165 | A new keyword, \keyword{yield}, was introduced for generators. Any |
| 166 | function containing a \keyword{yield} statement is a generator |
| 167 | function; this is detected by Python's bytecode compiler which |
| 168 | compiles the function specially as a result. |
| 169 | |
| 170 | When you call a generator function, it doesn't return a single value; |
| 171 | instead it returns a generator object that supports the iterator |
| 172 | protocol. On executing the \keyword{yield} statement, the generator |
| 173 | outputs the value of \code{i}, similar to a \keyword{return} |
| 174 | statement. The big difference between \keyword{yield} and a |
| 175 | \keyword{return} statement is that on reaching a \keyword{yield} the |
| 176 | generator's state of execution is suspended and local variables are |
| 177 | preserved. On the next call to the generator's \code{.next()} method, |
| 178 | the function will resume executing immediately after the |
| 179 | \keyword{yield} statement. (For complicated reasons, the |
| 180 | \keyword{yield} statement isn't allowed inside the \keyword{try} block |
| 181 | of a \code{try...finally} statement; read \pep{255} for a full |
| 182 | explanation of the interaction between \keyword{yield} and |
| 183 | exceptions.) |
| 184 | |
| 185 | Here's a sample usage of the \function{generate_ints} generator: |
| 186 | |
| 187 | \begin{verbatim} |
| 188 | >>> gen = generate_ints(3) |
| 189 | >>> gen |
| 190 | <generator object at 0x8117f90> |
| 191 | >>> gen.next() |
| 192 | 0 |
| 193 | >>> gen.next() |
| 194 | 1 |
| 195 | >>> gen.next() |
| 196 | 2 |
| 197 | >>> gen.next() |
| 198 | Traceback (most recent call last): |
Andrew M. Kuchling | 9f6e104 | 2002-06-17 13:40:04 +0000 | [diff] [blame] | 199 | File "stdin", line 1, in ? |
| 200 | File "stdin", line 2, in generate_ints |
Andrew M. Kuchling | f4dd65d | 2002-04-01 19:28:09 +0000 | [diff] [blame] | 201 | StopIteration |
| 202 | \end{verbatim} |
| 203 | |
| 204 | You could equally write \code{for i in generate_ints(5)}, or |
| 205 | \code{a,b,c = generate_ints(3)}. |
| 206 | |
| 207 | Inside a generator function, the \keyword{return} statement can only |
| 208 | be used without a value, and signals the end of the procession of |
| 209 | values; afterwards the generator cannot return any further values. |
| 210 | \keyword{return} with a value, such as \code{return 5}, is a syntax |
| 211 | error inside a generator function. The end of the generator's results |
| 212 | can also be indicated by raising \exception{StopIteration} manually, |
| 213 | or by just letting the flow of execution fall off the bottom of the |
| 214 | function. |
| 215 | |
| 216 | You could achieve the effect of generators manually by writing your |
| 217 | own class and storing all the local variables of the generator as |
| 218 | instance variables. For example, returning a list of integers could |
| 219 | be done by setting \code{self.count} to 0, and having the |
| 220 | \method{next()} method increment \code{self.count} and return it. |
| 221 | However, for a moderately complicated generator, writing a |
| 222 | corresponding class would be much messier. |
| 223 | \file{Lib/test/test_generators.py} contains a number of more |
| 224 | interesting examples. The simplest one implements an in-order |
| 225 | traversal of a tree using generators recursively. |
| 226 | |
| 227 | \begin{verbatim} |
| 228 | # A recursive generator that generates Tree leaves in in-order. |
| 229 | def inorder(t): |
| 230 | if t: |
| 231 | for x in inorder(t.left): |
| 232 | yield x |
| 233 | yield t.label |
| 234 | for x in inorder(t.right): |
| 235 | yield x |
| 236 | \end{verbatim} |
| 237 | |
| 238 | Two other examples in \file{Lib/test/test_generators.py} produce |
| 239 | solutions for the N-Queens problem (placing $N$ queens on an $NxN$ |
| 240 | chess board so that no queen threatens another) and the Knight's Tour |
| 241 | (a route that takes a knight to every square of an $NxN$ chessboard |
| 242 | without visiting any square twice). |
| 243 | |
| 244 | The idea of generators comes from other programming languages, |
| 245 | especially Icon (\url{http://www.cs.arizona.edu/icon/}), where the |
| 246 | idea of generators is central. In Icon, every |
| 247 | expression and function call behaves like a generator. One example |
| 248 | from ``An Overview of the Icon Programming Language'' at |
| 249 | \url{http://www.cs.arizona.edu/icon/docs/ipd266.htm} gives an idea of |
| 250 | what this looks like: |
| 251 | |
| 252 | \begin{verbatim} |
| 253 | sentence := "Store it in the neighboring harbor" |
| 254 | if (i := find("or", sentence)) > 5 then write(i) |
| 255 | \end{verbatim} |
| 256 | |
| 257 | In Icon the \function{find()} function returns the indexes at which the |
| 258 | substring ``or'' is found: 3, 23, 33. In the \keyword{if} statement, |
| 259 | \code{i} is first assigned a value of 3, but 3 is less than 5, so the |
| 260 | comparison fails, and Icon retries it with the second value of 23. 23 |
| 261 | is greater than 5, so the comparison now succeeds, and the code prints |
| 262 | the value 23 to the screen. |
| 263 | |
| 264 | Python doesn't go nearly as far as Icon in adopting generators as a |
| 265 | central concept. Generators are considered a new part of the core |
| 266 | Python language, but learning or using them isn't compulsory; if they |
| 267 | don't solve any problems that you have, feel free to ignore them. |
| 268 | One novel feature of Python's interface as compared to |
| 269 | Icon's is that a generator's state is represented as a concrete object |
| 270 | (the iterator) that can be passed around to other functions or stored |
| 271 | in a data structure. |
| 272 | |
| 273 | \begin{seealso} |
| 274 | |
| 275 | \seepep{255}{Simple Generators}{Written by Neil Schemenauer, Tim |
| 276 | Peters, Magnus Lie Hetland. Implemented mostly by Neil Schemenauer |
| 277 | and Tim Peters, with other fixes from the Python Labs crew.} |
| 278 | |
| 279 | \end{seealso} |
| 280 | |
| 281 | |
| 282 | %====================================================================== |
Fred Drake | 13090e1 | 2002-08-22 16:51:08 +0000 | [diff] [blame] | 283 | \section{PEP 263: Source Code Encodings \label{section-encodings}} |
Andrew M. Kuchling | 950725f | 2002-08-06 01:40:48 +0000 | [diff] [blame] | 284 | |
| 285 | Python source files can now be declared as being in different |
| 286 | character set encodings. Encodings are declared by including a |
| 287 | specially formatted comment in the first or second line of the source |
| 288 | file. For example, a UTF-8 file can be declared with: |
| 289 | |
| 290 | \begin{verbatim} |
| 291 | #!/usr/bin/env python |
| 292 | # -*- coding: UTF-8 -*- |
| 293 | \end{verbatim} |
| 294 | |
| 295 | Without such an encoding declaration, the default encoding used is |
| 296 | ISO-8859-1, also known as Latin1. |
| 297 | |
| 298 | The encoding declaration only affects Unicode string literals; the |
| 299 | text in the source code will be converted to Unicode using the |
| 300 | specified encoding. Note that Python identifiers are still restricted |
| 301 | to ASCII characters, so you can't have variable names that use |
| 302 | characters outside of the usual alphanumerics. |
| 303 | |
| 304 | \begin{seealso} |
| 305 | |
| 306 | \seepep{263}{Defining Python Source Code Encodings}{Written by |
Martin v. Löwis | bd5e38d | 2002-10-07 18:52:29 +0000 | [diff] [blame] | 307 | Marc-Andr\'e Lemburg and Martin von L\"owis; implemented by SUZUKI |
| 308 | Hisao and Martin von L\"owis.} |
Andrew M. Kuchling | 950725f | 2002-08-06 01:40:48 +0000 | [diff] [blame] | 309 | |
| 310 | \end{seealso} |
| 311 | |
| 312 | |
| 313 | %====================================================================== |
Martin v. Löwis | bd5e38d | 2002-10-07 18:52:29 +0000 | [diff] [blame] | 314 | \section{PEP 277: Unicode file name support for Windows NT} |
Andrew M. Kuchling | 0f34556 | 2002-10-04 22:34:11 +0000 | [diff] [blame] | 315 | |
Martin v. Löwis | bd5e38d | 2002-10-07 18:52:29 +0000 | [diff] [blame] | 316 | On Windows NT, 2000, and XP, the system stores file names as Unicode |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 317 | strings. Traditionally, Python has represented file names as byte |
| 318 | strings, which is inadequate because it renders some file names |
Martin v. Löwis | bd5e38d | 2002-10-07 18:52:29 +0000 | [diff] [blame] | 319 | inaccessible. |
| 320 | |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 321 | Python now allows using arbitrary Unicode strings (within the |
| 322 | limitations of the file system) for all functions that expect file |
| 323 | names, in particular the \function{open()} built-in. If a Unicode |
| 324 | string is passed to \function{os.listdir}, Python now returns a list |
| 325 | of Unicode strings. A new function, \function{os.getcwdu()}, returns |
| 326 | the current directory as a Unicode string. |
Martin v. Löwis | bd5e38d | 2002-10-07 18:52:29 +0000 | [diff] [blame] | 327 | |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 328 | Byte strings still work as file names, and Python will transparently |
| 329 | convert them to Unicode using the \code{mbcs} encoding. |
Martin v. Löwis | bd5e38d | 2002-10-07 18:52:29 +0000 | [diff] [blame] | 330 | |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 331 | Other systems also allow Unicode strings as file names, but convert |
| 332 | them to byte strings before passing them to the system which may cause |
| 333 | a \exception{UnicodeError} to be raised. Applications can test whether |
| 334 | arbitrary Unicode strings are supported as file names by checking |
| 335 | \member{os.path.unicode_file_names}, a Boolean value. |
Martin v. Löwis | bd5e38d | 2002-10-07 18:52:29 +0000 | [diff] [blame] | 336 | |
| 337 | \begin{seealso} |
| 338 | |
| 339 | \seepep{277}{Unicode file name support for Windows NT}{Written by Neil |
| 340 | Hodgson; implemented by Neil Hodgson, Martin von L\"owis, and Mark |
| 341 | Hammond.} |
| 342 | |
| 343 | \end{seealso} |
Andrew M. Kuchling | 0f34556 | 2002-10-04 22:34:11 +0000 | [diff] [blame] | 344 | |
| 345 | |
| 346 | %====================================================================== |
Andrew M. Kuchling | f367651 | 2002-04-15 02:27:55 +0000 | [diff] [blame] | 347 | \section{PEP 278: Universal Newline Support} |
| 348 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 349 | The three major operating systems used today are Microsoft Windows, |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 350 | Apple's Macintosh OS, and the various \UNIX\ derivatives. A minor |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 351 | irritation is that these three platforms all use different characters |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 352 | to mark the ends of lines in text files. \UNIX\ uses character 10, |
| 353 | the ASCII linefeed, while MacOS uses character 13, the ASCII carriage |
| 354 | return, and Windows uses a two-character sequence of a carriage return |
| 355 | plus a newline. |
Andrew M. Kuchling | f367651 | 2002-04-15 02:27:55 +0000 | [diff] [blame] | 356 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 357 | Python's file objects can now support end of line conventions other |
| 358 | than the one followed by the platform on which Python is running. |
| 359 | Opening a file with the mode \samp{U} or \samp{rU} will open a file |
| 360 | for reading in universal newline mode. All three line ending |
| 361 | conventions will be translated to a \samp{\e n} in the strings |
| 362 | returned by the various file methods such as \method{read()} and |
| 363 | \method{readline()}. |
Andrew M. Kuchling | f367651 | 2002-04-15 02:27:55 +0000 | [diff] [blame] | 364 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 365 | Universal newline support is also used when importing modules and when |
| 366 | executing a file with the \function{execfile()} function. This means |
| 367 | that Python modules can be shared between all three operating systems |
| 368 | without needing to convert the line-endings. |
| 369 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 370 | This feature can be disabled at compile-time by specifying |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 371 | \longprogramopt{without-universal-newlines} when running Python's |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 372 | \file{configure} script. |
Andrew M. Kuchling | f367651 | 2002-04-15 02:27:55 +0000 | [diff] [blame] | 373 | |
| 374 | \begin{seealso} |
| 375 | |
| 376 | \seepep{278}{Universal Newline Support}{Written |
| 377 | and implemented by Jack Jansen.} |
| 378 | |
| 379 | \end{seealso} |
| 380 | |
Andrew M. Kuchling | fad2f59 | 2002-05-10 21:00:05 +0000 | [diff] [blame] | 381 | |
| 382 | %====================================================================== |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 383 | \section{PEP 279: The \function{enumerate()} Built-in Function\label{section-enumerate}} |
Andrew M. Kuchling | fad2f59 | 2002-05-10 21:00:05 +0000 | [diff] [blame] | 384 | |
| 385 | A new built-in function, \function{enumerate()}, will make |
| 386 | certain loops a bit clearer. \code{enumerate(thing)}, where |
| 387 | \var{thing} is either an iterator or a sequence, returns a iterator |
| 388 | that will return \code{(0, \var{thing[0]})}, \code{(1, |
| 389 | \var{thing[1]})}, \code{(2, \var{thing[2]})}, and so forth. Fairly |
| 390 | often you'll see code to change every element of a list that looks |
| 391 | like this: |
| 392 | |
| 393 | \begin{verbatim} |
| 394 | for i in range(len(L)): |
| 395 | item = L[i] |
| 396 | # ... compute some result based on item ... |
| 397 | L[i] = result |
| 398 | \end{verbatim} |
| 399 | |
| 400 | This can be rewritten using \function{enumerate()} as: |
| 401 | |
| 402 | \begin{verbatim} |
| 403 | for i, item in enumerate(L): |
| 404 | # ... compute some result based on item ... |
| 405 | L[i] = result |
| 406 | \end{verbatim} |
| 407 | |
| 408 | |
| 409 | \begin{seealso} |
| 410 | |
| 411 | \seepep{279}{The enumerate() built-in function}{Written |
| 412 | by Raymond D. Hettinger.} |
| 413 | |
| 414 | \end{seealso} |
| 415 | |
| 416 | |
Andrew M. Kuchling | f367651 | 2002-04-15 02:27:55 +0000 | [diff] [blame] | 417 | %====================================================================== |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 418 | \section{PEP 285: The \class{bool} Type\label{section-bool}} |
| 419 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 420 | A Boolean type was added to Python 2.3. Two new constants were added |
| 421 | to the \module{__builtin__} module, \constant{True} and |
| 422 | \constant{False}. The type object for this new type is named |
| 423 | \class{bool}; the constructor for it takes any Python value and |
| 424 | converts it to \constant{True} or \constant{False}. |
| 425 | |
| 426 | \begin{verbatim} |
| 427 | >>> bool(1) |
| 428 | True |
| 429 | >>> bool(0) |
| 430 | False |
| 431 | >>> bool([]) |
| 432 | False |
| 433 | >>> bool( (1,) ) |
| 434 | True |
| 435 | \end{verbatim} |
| 436 | |
| 437 | Most of the standard library modules and built-in functions have been |
| 438 | changed to return Booleans. |
| 439 | |
| 440 | \begin{verbatim} |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 441 | >>> obj = [] |
| 442 | >>> hasattr(obj, 'append') |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 443 | True |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 444 | >>> isinstance(obj, list) |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 445 | True |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 446 | >>> isinstance(obj, tuple) |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 447 | False |
| 448 | \end{verbatim} |
| 449 | |
| 450 | Python's Booleans were added with the primary goal of making code |
| 451 | clearer. For example, if you're reading a function and encounter the |
| 452 | statement \code{return 1}, you might wonder whether the \samp{1} |
| 453 | represents a truth value, or whether it's an index, or whether it's a |
| 454 | coefficient that multiplies some other quantity. If the statement is |
| 455 | \code{return True}, however, the meaning of the return value is quite |
| 456 | clearly a truth value. |
| 457 | |
| 458 | Python's Booleans were not added for the sake of strict type-checking. |
Andrew M. Kuchling | a2a206b | 2002-05-24 21:08:58 +0000 | [diff] [blame] | 459 | A very strict language such as Pascal would also prevent you |
| 460 | performing arithmetic with Booleans, and would require that the |
| 461 | expression in an \keyword{if} statement always evaluate to a Boolean. |
| 462 | Python is not this strict, and it never will be. (\pep{285} |
| 463 | explicitly says so.) So you can still use any expression in an |
| 464 | \keyword{if}, even ones that evaluate to a list or tuple or some |
| 465 | random object, and the Boolean type is a subclass of the |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 466 | \class{int} class, so arithmetic using a Boolean still works. |
| 467 | |
| 468 | \begin{verbatim} |
| 469 | >>> True + 1 |
| 470 | 2 |
| 471 | >>> False + 1 |
| 472 | 1 |
| 473 | >>> False * 75 |
| 474 | 0 |
| 475 | >>> True * 75 |
| 476 | 75 |
| 477 | \end{verbatim} |
| 478 | |
| 479 | To sum up \constant{True} and \constant{False} in a sentence: they're |
| 480 | alternative ways to spell the integer values 1 and 0, with the single |
| 481 | difference that \function{str()} and \function{repr()} return the |
| 482 | strings \samp{True} and \samp{False} instead of \samp{1} and \samp{0}. |
Andrew M. Kuchling | 3a52ff6 | 2002-04-03 22:44:47 +0000 | [diff] [blame] | 483 | |
| 484 | \begin{seealso} |
| 485 | |
| 486 | \seepep{285}{Adding a bool type}{Written and implemented by GvR.} |
| 487 | |
| 488 | \end{seealso} |
| 489 | |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 490 | |
Andrew M. Kuchling | 65b7282 | 2002-09-03 00:53:21 +0000 | [diff] [blame] | 491 | %====================================================================== |
| 492 | \section{PEP 293: Codec Error Handling Callbacks} |
| 493 | |
Martin v. Löwis | 20eae69 | 2002-10-07 19:01:07 +0000 | [diff] [blame] | 494 | When encoding a Unicode string into a byte string, unencodable |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 495 | characters may be encountered. So far, Python has allowed specifying |
| 496 | the error processing as either ``strict'' (raising |
| 497 | \exception{UnicodeError}), ``ignore'' (skip the character), or |
| 498 | ``replace'' (with question mark), defaulting to ``strict''. It may be |
| 499 | desirable to specify an alternative processing of the error, e.g. by |
| 500 | inserting an XML character reference or HTML entity reference into the |
| 501 | converted string. |
Martin v. Löwis | 20eae69 | 2002-10-07 19:01:07 +0000 | [diff] [blame] | 502 | |
| 503 | Python now has a flexible framework to add additional processing |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 504 | strategies. New error handlers can be added with |
Martin v. Löwis | 20eae69 | 2002-10-07 19:01:07 +0000 | [diff] [blame] | 505 | \function{codecs.register_error}. Codecs then can access the error |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 506 | handler with \function{codecs.lookup_error}. An equivalent C API has |
| 507 | been added for codecs written in C. The error handler gets the |
| 508 | necessary state information, such as the string being converted, the |
| 509 | position in the string where the error was detected, and the target |
| 510 | encoding. The handler can then either raise an exception, or return a |
| 511 | replacement string. |
Martin v. Löwis | 20eae69 | 2002-10-07 19:01:07 +0000 | [diff] [blame] | 512 | |
| 513 | Two additional error handlers have been implemented using this |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 514 | framework: ``backslashreplace'' uses Python backslash quoting to |
Martin v. Löwis | 20eae69 | 2002-10-07 19:01:07 +0000 | [diff] [blame] | 515 | represent the unencodable character, and ``xmlcharrefreplace'' emits |
| 516 | XML character references. |
Andrew M. Kuchling | 65b7282 | 2002-09-03 00:53:21 +0000 | [diff] [blame] | 517 | |
| 518 | \begin{seealso} |
| 519 | |
| 520 | \seepep{293}{Codec Error Handling Callbacks}{Written and implemented by |
Andrew M. Kuchling | 0a6fa96 | 2002-10-09 12:11:10 +0000 | [diff] [blame] | 521 | Walter D\"orwald.} |
Andrew M. Kuchling | 65b7282 | 2002-09-03 00:53:21 +0000 | [diff] [blame] | 522 | |
| 523 | \end{seealso} |
| 524 | |
| 525 | |
| 526 | %====================================================================== |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 527 | \section{Extended Slices\label{section-slices}} |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 528 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 529 | Ever since Python 1.4, the slicing syntax has supported an optional |
| 530 | third ``step'' or ``stride'' argument. For example, these are all |
| 531 | legal Python syntax: \code{L[1:10:2]}, \code{L[:-1:1]}, |
| 532 | \code{L[::-1]}. This was added to Python included at the request of |
| 533 | the developers of Numerical Python. However, the built-in sequence |
| 534 | types of lists, tuples, and strings have never supported this feature, |
| 535 | and you got a \exception{TypeError} if you tried it. Michael Hudson |
| 536 | contributed a patch that was applied to Python 2.3 and fixed this |
| 537 | shortcoming. |
| 538 | |
| 539 | For example, you can now easily extract the elements of a list that |
| 540 | have even indexes: |
Fred Drake | df872a2 | 2002-07-03 12:02:01 +0000 | [diff] [blame] | 541 | |
| 542 | \begin{verbatim} |
| 543 | >>> L = range(10) |
| 544 | >>> L[::2] |
| 545 | [0, 2, 4, 6, 8] |
| 546 | \end{verbatim} |
| 547 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 548 | Negative values also work, so you can make a copy of the same list in |
| 549 | reverse order: |
Fred Drake | df872a2 | 2002-07-03 12:02:01 +0000 | [diff] [blame] | 550 | |
| 551 | \begin{verbatim} |
| 552 | >>> L[::-1] |
| 553 | [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] |
| 554 | \end{verbatim} |
Andrew M. Kuchling | 3a52ff6 | 2002-04-03 22:44:47 +0000 | [diff] [blame] | 555 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 556 | This also works for strings: |
| 557 | |
| 558 | \begin{verbatim} |
| 559 | >>> s='abcd' |
| 560 | >>> s[::2] |
| 561 | 'ac' |
| 562 | >>> s[::-1] |
| 563 | 'dcba' |
| 564 | \end{verbatim} |
| 565 | |
Michael W. Hudson | 4da01ed | 2002-07-19 15:48:56 +0000 | [diff] [blame] | 566 | as well as tuples and arrays. |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 567 | |
Michael W. Hudson | 4da01ed | 2002-07-19 15:48:56 +0000 | [diff] [blame] | 568 | If you have a mutable sequence (i.e. a list or an array) you can |
| 569 | assign to or delete an extended slice, but there are some differences |
| 570 | in assignment to extended and regular slices. Assignment to a regular |
| 571 | slice can be used to change the length of the sequence: |
| 572 | |
| 573 | \begin{verbatim} |
| 574 | >>> a = range(3) |
| 575 | >>> a |
| 576 | [0, 1, 2] |
| 577 | >>> a[1:3] = [4, 5, 6] |
| 578 | >>> a |
| 579 | [0, 4, 5, 6] |
| 580 | \end{verbatim} |
| 581 | |
| 582 | but when assigning to an extended slice the list on the right hand |
| 583 | side of the statement must contain the same number of items as the |
| 584 | slice it is replacing: |
| 585 | |
| 586 | \begin{verbatim} |
| 587 | >>> a = range(4) |
| 588 | >>> a |
| 589 | [0, 1, 2, 3] |
| 590 | >>> a[::2] |
| 591 | [0, 2] |
| 592 | >>> a[::2] = range(0, -2, -1) |
| 593 | >>> a |
| 594 | [0, 1, -1, 3] |
| 595 | >>> a[::2] = range(3) |
| 596 | Traceback (most recent call last): |
| 597 | File "<stdin>", line 1, in ? |
| 598 | ValueError: attempt to assign list of size 3 to extended slice of size 2 |
| 599 | \end{verbatim} |
| 600 | |
| 601 | Deletion is more straightforward: |
| 602 | |
| 603 | \begin{verbatim} |
| 604 | >>> a = range(4) |
| 605 | >>> a[::2] |
| 606 | [0, 2] |
| 607 | >>> del a[::2] |
| 608 | >>> a |
| 609 | [1, 3] |
| 610 | \end{verbatim} |
| 611 | |
| 612 | One can also now pass slice objects to builtin sequences |
| 613 | \method{__getitem__} methods: |
| 614 | |
| 615 | \begin{verbatim} |
| 616 | >>> range(10).__getitem__(slice(0, 5, 2)) |
| 617 | [0, 2, 4] |
| 618 | \end{verbatim} |
| 619 | |
| 620 | or use them directly in subscripts: |
| 621 | |
| 622 | \begin{verbatim} |
| 623 | >>> range(10)[slice(0, 5, 2)] |
| 624 | [0, 2, 4] |
| 625 | \end{verbatim} |
| 626 | |
| 627 | To make implementing sequences that support extended slicing in Python |
| 628 | easier, slice ojects now have a method \method{indices} which given |
| 629 | the length of a sequence returns \code{(start, stop, step)} handling |
| 630 | omitted and out-of-bounds indices in a manner consistent with regular |
| 631 | slices (and this innocuous phrase hides a welter of confusing |
| 632 | details!). The method is intended to be used like this: |
| 633 | |
| 634 | \begin{verbatim} |
| 635 | class FakeSeq: |
| 636 | ... |
| 637 | def calc_item(self, i): |
| 638 | ... |
| 639 | def __getitem__(self, item): |
| 640 | if isinstance(item, slice): |
| 641 | return FakeSeq([self.calc_item(i) |
| 642 | in range(*item.indices(len(self)))]) |
| 643 | else: |
| 644 | return self.calc_item(i) |
| 645 | \end{verbatim} |
| 646 | |
Andrew M. Kuchling | 90e9a79 | 2002-08-15 00:40:21 +0000 | [diff] [blame] | 647 | From this example you can also see that the builtin ``\class{slice}'' |
| 648 | object is now the type object for the slice type, and is no longer a |
| 649 | function. This is consistent with Python 2.2, where \class{int}, |
| 650 | \class{str}, etc., underwent the same change. |
| 651 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 652 | |
Andrew M. Kuchling | 3a52ff6 | 2002-04-03 22:44:47 +0000 | [diff] [blame] | 653 | %====================================================================== |
Fred Drake | df872a2 | 2002-07-03 12:02:01 +0000 | [diff] [blame] | 654 | \section{Other Language Changes} |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 655 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 656 | Here are all of the changes that Python 2.3 makes to the core Python |
| 657 | language. |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 658 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 659 | \begin{itemize} |
| 660 | \item The \keyword{yield} statement is now always a keyword, as |
| 661 | described in section~\ref{section-generators} of this document. |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 662 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 663 | \item A new built-in function \function{enumerate()} |
| 664 | was added, as described in section~\ref{section-enumerate} of this |
| 665 | document. |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 666 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 667 | \item Two new constants, \constant{True} and \constant{False} were |
| 668 | added along with the built-in \class{bool} type, as described in |
| 669 | section~\ref{section-bool} of this document. |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 670 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 671 | \item Built-in types now support the extended slicing syntax, |
| 672 | as described in section~\ref{section-slices} of this document. |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 673 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 674 | \item Dictionaries have a new method, \method{pop(\var{key})}, that |
| 675 | returns the value corresponding to \var{key} and removes that |
| 676 | key/value pair from the dictionary. \method{pop()} will raise a |
| 677 | \exception{KeyError} if the requested key isn't present in the |
| 678 | dictionary: |
| 679 | |
| 680 | \begin{verbatim} |
| 681 | >>> d = {1:2} |
| 682 | >>> d |
| 683 | {1: 2} |
| 684 | >>> d.pop(4) |
| 685 | Traceback (most recent call last): |
| 686 | File ``stdin'', line 1, in ? |
| 687 | KeyError: 4 |
| 688 | >>> d.pop(1) |
| 689 | 2 |
| 690 | >>> d.pop(1) |
| 691 | Traceback (most recent call last): |
| 692 | File ``stdin'', line 1, in ? |
| 693 | KeyError: pop(): dictionary is empty |
| 694 | >>> d |
| 695 | {} |
| 696 | >>> |
| 697 | \end{verbatim} |
| 698 | |
| 699 | (Patch contributed by Raymond Hettinger.) |
| 700 | |
Andrew M. Kuchling | 7a82b8c | 2002-11-04 20:17:24 +0000 | [diff] [blame] | 701 | \item The \keyword{assert} statement no longer checks the \code{__debug__} |
Andrew M. Kuchling | 6974aa9 | 2002-08-20 00:54:36 +0000 | [diff] [blame] | 702 | flag, so you can no longer disable assertions by assigning to \code{__debug__}. |
| 703 | Running Python with the \programopt{-O} switch will still generate |
| 704 | code that doesn't execute any assertions. |
| 705 | |
| 706 | \item Most type objects are now callable, so you can use them |
| 707 | to create new objects such as functions, classes, and modules. (This |
| 708 | means that the \module{new} module can be deprecated in a future |
| 709 | Python version, because you can now use the type objects available |
| 710 | in the \module{types} module.) |
| 711 | % XXX should new.py use PendingDeprecationWarning? |
| 712 | For example, you can create a new module object with the following code: |
| 713 | |
| 714 | \begin{verbatim} |
| 715 | >>> import types |
| 716 | >>> m = types.ModuleType('abc','docstring') |
| 717 | >>> m |
| 718 | <module 'abc' (built-in)> |
| 719 | >>> m.__doc__ |
| 720 | 'docstring' |
| 721 | \end{verbatim} |
| 722 | |
| 723 | \item |
| 724 | A new warning, \exception{PendingDeprecationWarning} was added to |
| 725 | indicate features which are in the process of being |
| 726 | deprecated. The warning will \emph{not} be printed by default. To |
| 727 | check for use of features that will be deprecated in the future, |
| 728 | supply \programopt{-Walways::PendingDeprecationWarning::} on the |
| 729 | command line or use \function{warnings.filterwarnings()}. |
| 730 | |
| 731 | \item Using \code{None} as a variable name will now result in a |
| 732 | \exception{SyntaxWarning} warning. In a future version of Python, |
| 733 | \code{None} may finally become a keyword. |
| 734 | |
Andrew M. Kuchling | dcfd825 | 2002-09-13 22:21:42 +0000 | [diff] [blame] | 735 | \item Python runs multithreaded programs by switching between threads |
| 736 | after executing N bytecodes. The default value for N has been |
| 737 | increased from 10 to 100 bytecodes, speeding up single-threaded |
| 738 | applications by reducing the switching overhead. Some multithreaded |
| 739 | applications may suffer slower response time, but that's easily fixed |
| 740 | by setting the limit back to a lower number by calling |
| 741 | \function{sys.setcheckinterval(\var{N})}. |
| 742 | |
Andrew M. Kuchling | 6974aa9 | 2002-08-20 00:54:36 +0000 | [diff] [blame] | 743 | \item One minor but far-reaching change is that the names of extension |
| 744 | types defined by the modules included with Python now contain the |
| 745 | module and a \samp{.} in front of the type name. For example, in |
| 746 | Python 2.2, if you created a socket and printed its |
| 747 | \member{__class__}, you'd get this output: |
| 748 | |
| 749 | \begin{verbatim} |
| 750 | >>> s = socket.socket() |
| 751 | >>> s.__class__ |
| 752 | <type 'socket'> |
| 753 | \end{verbatim} |
| 754 | |
| 755 | In 2.3, you get this: |
| 756 | \begin{verbatim} |
| 757 | >>> s.__class__ |
| 758 | <type '_socket.socket'> |
| 759 | \end{verbatim} |
| 760 | |
| 761 | \end{itemize} |
| 762 | |
| 763 | |
| 764 | \subsection{String Changes} |
| 765 | |
| 766 | \begin{itemize} |
| 767 | |
| 768 | \item The \code{in} operator now works differently for strings. |
| 769 | Previously, when evaluating \code{\var{X} in \var{Y}} where \var{X} |
| 770 | and \var{Y} are strings, \var{X} could only be a single character. |
| 771 | That's now changed; \var{X} can be a string of any length, and |
| 772 | \code{\var{X} in \var{Y}} will return \constant{True} if \var{X} is a |
| 773 | substring of \var{Y}. If \var{X} is the empty string, the result is |
| 774 | always \constant{True}. |
| 775 | |
| 776 | \begin{verbatim} |
| 777 | >>> 'ab' in 'abcd' |
| 778 | True |
| 779 | >>> 'ad' in 'abcd' |
| 780 | False |
| 781 | >>> '' in 'abcd' |
| 782 | True |
| 783 | \end{verbatim} |
| 784 | |
| 785 | Note that this doesn't tell you where the substring starts; the |
| 786 | \method{find()} method is still necessary to figure that out. |
| 787 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 788 | \item The \method{strip()}, \method{lstrip()}, and \method{rstrip()} |
| 789 | string methods now have an optional argument for specifying the |
| 790 | characters to strip. The default is still to remove all whitespace |
| 791 | characters: |
| 792 | |
| 793 | \begin{verbatim} |
| 794 | >>> ' abc '.strip() |
| 795 | 'abc' |
| 796 | >>> '><><abc<><><>'.strip('<>') |
| 797 | 'abc' |
| 798 | >>> '><><abc<><><>\n'.strip('<>') |
| 799 | 'abc<><><>\n' |
| 800 | >>> u'\u4000\u4001abc\u4000'.strip(u'\u4000') |
| 801 | u'\u4001abc' |
| 802 | >>> |
| 803 | \end{verbatim} |
| 804 | |
Andrew M. Kuchling | 7a82b8c | 2002-11-04 20:17:24 +0000 | [diff] [blame] | 805 | (Suggested by Simon Brunning, and implemented by Walter D\"orwald.) |
Andrew M. Kuchling | 346386f | 2002-07-12 20:24:42 +0000 | [diff] [blame] | 806 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 807 | \item The \method{startswith()} and \method{endswith()} |
| 808 | string methods now accept negative numbers for the start and end |
| 809 | parameters. |
| 810 | |
| 811 | \item Another new string method is \method{zfill()}, originally a |
| 812 | function in the \module{string} module. \method{zfill()} pads a |
| 813 | numeric string with zeros on the left until it's the specified width. |
| 814 | Note that the \code{\%} operator is still more flexible and powerful |
| 815 | than \method{zfill()}. |
| 816 | |
| 817 | \begin{verbatim} |
| 818 | >>> '45'.zfill(4) |
| 819 | '0045' |
| 820 | >>> '12345'.zfill(4) |
| 821 | '12345' |
| 822 | >>> 'goofy'.zfill(6) |
| 823 | '0goofy' |
| 824 | \end{verbatim} |
| 825 | |
Andrew M. Kuchling | 346386f | 2002-07-12 20:24:42 +0000 | [diff] [blame] | 826 | (Contributed by Walter D\"orwald.) |
| 827 | |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 828 | \item A new type object, \class{basestring}, has been added. |
| 829 | Both 8-bit strings and Unicode strings inherit from this type, so |
| 830 | \code{isinstance(obj, basestring)} will return \constant{True} for |
| 831 | either kind of string. It's a completely abstract type, so you |
| 832 | can't create \class{basestring} instances. |
| 833 | |
Andrew M. Kuchling | 6974aa9 | 2002-08-20 00:54:36 +0000 | [diff] [blame] | 834 | \item Interned strings are no longer immortal. Interned will now be |
| 835 | garbage-collected in the usual way when the only reference to them is |
| 836 | from the internal dictionary of interned strings. (Implemented by |
| 837 | Oren Tirosh.) |
| 838 | |
| 839 | \end{itemize} |
| 840 | |
| 841 | |
| 842 | \subsection{Optimizations} |
| 843 | |
| 844 | \begin{itemize} |
| 845 | |
Andrew M. Kuchling | 950725f | 2002-08-06 01:40:48 +0000 | [diff] [blame] | 846 | \item The \method{sort()} method of list objects has been extensively |
| 847 | rewritten by Tim Peters, and the implementation is significantly |
| 848 | faster. |
| 849 | |
Andrew M. Kuchling | 6974aa9 | 2002-08-20 00:54:36 +0000 | [diff] [blame] | 850 | \item Multiplication of large long integers is now much faster thanks |
| 851 | to an implementation of Karatsuba multiplication, an algorithm that |
| 852 | scales better than the O(n*n) required for the grade-school |
| 853 | multiplication algorithm. (Original patch by Christopher A. Craig, |
| 854 | and significantly reworked by Tim Peters.) |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 855 | |
Andrew M. Kuchling | 6974aa9 | 2002-08-20 00:54:36 +0000 | [diff] [blame] | 856 | \item The \code{SET_LINENO} opcode is now gone. This may provide a |
| 857 | small speed increase, subject to your compiler's idiosyncrasies. |
| 858 | (Removed by Michael Hudson.) |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 859 | |
Andrew M. Kuchling | 6974aa9 | 2002-08-20 00:54:36 +0000 | [diff] [blame] | 860 | \item A number of small rearrangements have been made in various |
| 861 | hotspots to improve performance, inlining a function here, removing |
| 862 | some code there. (Implemented mostly by GvR, but lots of people have |
| 863 | contributed to one change or another.) |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 864 | |
| 865 | \end{itemize} |
Neal Norwitz | d68f517 | 2002-05-29 15:54:55 +0000 | [diff] [blame] | 866 | |
Andrew M. Kuchling | 6974aa9 | 2002-08-20 00:54:36 +0000 | [diff] [blame] | 867 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 868 | %====================================================================== |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 869 | \section{New and Improved Modules} |
| 870 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 871 | As usual, Python's standard modules had a number of enhancements and |
Andrew M. Kuchling | a982eb1 | 2002-07-22 18:57:36 +0000 | [diff] [blame] | 872 | bug fixes. Here's a partial list of the most notable changes, sorted |
| 873 | alphabetically by module name. Consult the |
| 874 | \file{Misc/NEWS} file in the source tree for a more |
| 875 | complete list of changes, or look through the CVS logs for all the |
| 876 | details. |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 877 | |
| 878 | \begin{itemize} |
| 879 | |
Andrew M. Kuchling | a982eb1 | 2002-07-22 18:57:36 +0000 | [diff] [blame] | 880 | \item The \module{array} module now supports arrays of Unicode |
| 881 | characters using the \samp{u} format character. Arrays also now |
| 882 | support using the \code{+=} assignment operator to add another array's |
| 883 | contents, and the \code{*=} assignment operator to repeat an array. |
| 884 | (Contributed by Jason Orendorff.) |
| 885 | |
| 886 | \item The Distutils \class{Extension} class now supports |
| 887 | an extra constructor argument named \samp{depends} for listing |
| 888 | additional source files that an extension depends on. This lets |
| 889 | Distutils recompile the module if any of the dependency files are |
| 890 | modified. For example, if \samp{sampmodule.c} includes the header |
| 891 | file \file{sample.h}, you would create the \class{Extension} object like |
| 892 | this: |
| 893 | |
| 894 | \begin{verbatim} |
| 895 | ext = Extension("samp", |
| 896 | sources=["sampmodule.c"], |
| 897 | depends=["sample.h"]) |
| 898 | \end{verbatim} |
| 899 | |
| 900 | Modifying \file{sample.h} would then cause the module to be recompiled. |
| 901 | (Contributed by Jeremy Hylton.) |
| 902 | |
Andrew M. Kuchling | dc3f7e1 | 2002-11-04 20:05:10 +0000 | [diff] [blame] | 903 | \item Other minor changes to Distutils: |
| 904 | it now checks for the \envvar{CC}, \envvar{CFLAGS}, \envvar{CPP}, |
| 905 | \envvar{LDFLAGS}, and \envvar{CPPFLAGS} environment variables, using |
| 906 | them to override the settings in Python's configuration (contributed |
| 907 | by Robert Weber); the \function{get_distutils_option()} method lists |
| 908 | recently-added extensions to Distutils. |
| 909 | |
Andrew M. Kuchling | a982eb1 | 2002-07-22 18:57:36 +0000 | [diff] [blame] | 910 | \item The \module{getopt} module gained a new function, |
| 911 | \function{gnu_getopt()}, that supports the same arguments as the existing |
| 912 | \function{getopt()} function but uses GNU-style scanning mode. |
| 913 | The existing \function{getopt()} stops processing options as soon as a |
| 914 | non-option argument is encountered, but in GNU-style mode processing |
| 915 | continues, meaning that options and arguments can be mixed. For |
| 916 | example: |
| 917 | |
| 918 | \begin{verbatim} |
| 919 | >>> getopt.getopt(['-f', 'filename', 'output', '-v'], 'f:v') |
| 920 | ([('-f', 'filename')], ['output', '-v']) |
| 921 | >>> getopt.gnu_getopt(['-f', 'filename', 'output', '-v'], 'f:v') |
| 922 | ([('-f', 'filename'), ('-v', '')], ['output']) |
| 923 | \end{verbatim} |
| 924 | |
| 925 | (Contributed by Peter \AA{strand}.) |
| 926 | |
| 927 | \item The \module{grp}, \module{pwd}, and \module{resource} modules |
| 928 | now return enhanced tuples: |
| 929 | |
| 930 | \begin{verbatim} |
| 931 | >>> import grp |
| 932 | >>> g = grp.getgrnam('amk') |
| 933 | >>> g.gr_name, g.gr_gid |
| 934 | ('amk', 500) |
| 935 | \end{verbatim} |
| 936 | |
Andrew M. Kuchling | 950725f | 2002-08-06 01:40:48 +0000 | [diff] [blame] | 937 | \item The new \module{heapq} module contains an implementation of a |
| 938 | heap queue algorithm. A heap is an array-like data structure that |
| 939 | keeps items in a sorted order such that, for every index k, heap[k] <= |
| 940 | heap[2*k+1] and heap[k] <= heap[2*k+2]. This makes it quick to remove |
| 941 | the smallest item, and inserting a new item while maintaining the heap |
| 942 | property is O(lg~n). (See |
| 943 | \url{http://www.nist.gov/dads/HTML/priorityque.html} for more |
| 944 | information about the priority queue data structure.) |
| 945 | |
| 946 | The Python \module{heapq} module provides \function{heappush()} and |
| 947 | \function{heappop()} functions for adding and removing items while |
| 948 | maintaining the heap property on top of some other mutable Python |
| 949 | sequence type. For example: |
| 950 | |
| 951 | \begin{verbatim} |
| 952 | >>> import heapq |
| 953 | >>> heap = [] |
| 954 | >>> for item in [3, 7, 5, 11, 1]: |
| 955 | ... heapq.heappush(heap, item) |
| 956 | ... |
| 957 | >>> heap |
| 958 | [1, 3, 5, 11, 7] |
| 959 | >>> heapq.heappop(heap) |
| 960 | 1 |
| 961 | >>> heapq.heappop(heap) |
| 962 | 3 |
| 963 | >>> heap |
| 964 | [5, 7, 11] |
| 965 | >>> |
| 966 | >>> heapq.heappush(heap, 5) |
| 967 | >>> heap = [] |
| 968 | >>> for item in [3, 7, 5, 11, 1]: |
| 969 | ... heapq.heappush(heap, item) |
| 970 | ... |
| 971 | >>> heap |
| 972 | [1, 3, 5, 11, 7] |
| 973 | >>> heapq.heappop(heap) |
| 974 | 1 |
| 975 | >>> heapq.heappop(heap) |
| 976 | 3 |
| 977 | >>> heap |
| 978 | [5, 7, 11] |
| 979 | >>> |
| 980 | \end{verbatim} |
| 981 | |
| 982 | (Contributed by Kevin O'Connor.) |
Andrew M. Kuchling | a982eb1 | 2002-07-22 18:57:36 +0000 | [diff] [blame] | 983 | |
| 984 | \item Two new functions in the \module{math} module, |
| 985 | \function{degrees(\var{rads})} and \function{radians(\var{degs})}, |
| 986 | convert between radians and degrees. Other functions in the |
| 987 | \module{math} module such as |
| 988 | \function{math.sin()} and \function{math.cos()} have always required |
| 989 | input values measured in radians. (Contributed by Raymond Hettinger.) |
| 990 | |
Andrew M. Kuchling | c309cca | 2002-10-10 16:04:08 +0000 | [diff] [blame] | 991 | \item Seven new functions, \function{getpgid()}, \function{killpg()}, |
| 992 | \function{lchown()}, \function{major()}, \function{makedev()}, |
| 993 | \function{minor()}, and \function{mknod()}, were added to the |
| 994 | \module{posix} module that underlies the \module{os} module. |
| 995 | (Contributed by Gustavo Niemeyer and Geert Jansen.) |
Andrew M. Kuchling | a982eb1 | 2002-07-22 18:57:36 +0000 | [diff] [blame] | 996 | |
| 997 | \item The parser objects provided by the \module{pyexpat} module |
| 998 | can now optionally buffer character data, resulting in fewer calls to |
| 999 | your character data handler and therefore faster performance. Setting |
| 1000 | the parser object's \member{buffer_text} attribute to \constant{True} |
| 1001 | will enable buffering. |
| 1002 | |
| 1003 | \item The \module{readline} module also gained a number of new |
| 1004 | functions: \function{get_history_item()}, |
| 1005 | \function{get_current_history_length()}, and \function{redisplay()}. |
| 1006 | |
| 1007 | \item Support for more advanced POSIX signal handling was added |
| 1008 | to the \module{signal} module by adding the \function{sigpending}, |
| 1009 | \function{sigprocmask} and \function{sigsuspend} functions, where supported |
| 1010 | by the platform. These functions make it possible to avoid some previously |
| 1011 | unavoidable race conditions. |
| 1012 | |
| 1013 | \item The \module{socket} module now supports timeouts. You |
| 1014 | can call the \method{settimeout(\var{t})} method on a socket object to |
| 1015 | set a timeout of \var{t} seconds. Subsequent socket operations that |
| 1016 | take longer than \var{t} seconds to complete will abort and raise a |
| 1017 | \exception{socket.error} exception. |
| 1018 | |
| 1019 | The original timeout implementation was by Tim O'Malley. Michael |
| 1020 | Gilfix integrated it into the Python \module{socket} module, after the |
| 1021 | patch had undergone a lengthy review. After it was checked in, Guido |
| 1022 | van~Rossum rewrote parts of it. This is a good example of the free |
| 1023 | software development process in action. |
| 1024 | |
Fred Drake | 583db0d | 2002-09-14 02:03:25 +0000 | [diff] [blame] | 1025 | \item The value of the C \constant{PYTHON_API_VERSION} macro is now exposed |
| 1026 | at the Python level as \code{sys.api_version}. |
Andrew M. Kuchling | dcfd825 | 2002-09-13 22:21:42 +0000 | [diff] [blame] | 1027 | |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 1028 | \item The new \module{textwrap} module contains functions for wrapping |
Andrew M. Kuchling | d003a2a | 2002-06-26 13:23:55 +0000 | [diff] [blame] | 1029 | strings containing paragraphs of text. The \function{wrap(\var{text}, |
| 1030 | \var{width})} function takes a string and returns a list containing |
| 1031 | the text split into lines of no more than the chosen width. The |
| 1032 | \function{fill(\var{text}, \var{width})} function returns a single |
| 1033 | string, reformatted to fit into lines no longer than the chosen width. |
| 1034 | (As you can guess, \function{fill()} is built on top of |
| 1035 | \function{wrap()}. For example: |
| 1036 | |
| 1037 | \begin{verbatim} |
| 1038 | >>> import textwrap |
| 1039 | >>> paragraph = "Not a whit, we defy augury: ... more text ..." |
| 1040 | >>> textwrap.wrap(paragraph, 60) |
| 1041 | ["Not a whit, we defy augury: there's a special providence in", |
| 1042 | "the fall of a sparrow. If it be now, 'tis not to come; if it", |
| 1043 | ...] |
| 1044 | >>> print textwrap.fill(paragraph, 35) |
| 1045 | Not a whit, we defy augury: there's |
| 1046 | a special providence in the fall of |
| 1047 | a sparrow. If it be now, 'tis not |
| 1048 | to come; if it be not to come, it |
| 1049 | will be now; if it be not now, yet |
| 1050 | it will come: the readiness is all. |
| 1051 | >>> |
| 1052 | \end{verbatim} |
| 1053 | |
| 1054 | The module also contains a \class{TextWrapper} class that actually |
| 1055 | implements the text wrapping strategy. Both the |
| 1056 | \class{TextWrapper} class and the \function{wrap()} and |
| 1057 | \function{fill()} functions support a number of additional keyword |
| 1058 | arguments for fine-tuning the formatting; consult the module's |
| 1059 | documentation for details. |
| 1060 | % XXX add a link to the module docs? |
| 1061 | (Contributed by Greg Ward.) |
| 1062 | |
Andrew M. Kuchling | ef5d06b | 2002-07-22 19:21:06 +0000 | [diff] [blame] | 1063 | \item The \module{time} module's \function{strptime()} function has |
| 1064 | long been an annoyance because it uses the platform C library's |
| 1065 | \function{strptime()} implementation, and different platforms |
| 1066 | sometimes have odd bugs. Brett Cannon contributed a portable |
| 1067 | implementation that's written in pure Python, which should behave |
| 1068 | identically on all platforms. |
| 1069 | |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 1070 | \item The DOM implementation |
| 1071 | in \module{xml.dom.minidom} can now generate XML output in a |
| 1072 | particular encoding, by specifying an optional encoding argument to |
| 1073 | the \method{toxml()} and \method{toprettyxml()} methods of DOM nodes. |
| 1074 | |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 1075 | \item The \function{*stat()} family of functions can now report |
| 1076 | fractions of a second in a timestamp. Such time stamps are |
| 1077 | represented as floats, similar to \function{time.time()}. |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1078 | |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 1079 | During testing, it was found that some applications will break if time |
| 1080 | stamps are floats. For compatibility, when using the tuple interface |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1081 | of the \class{stat_result}, time stamps are represented as integers. |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 1082 | When using named fields (a feature first introduced in Python 2.2), |
| 1083 | time stamps are still represented as ints, unless |
| 1084 | \function{os.stat_float_times()} is invoked to enable float return |
| 1085 | values: |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1086 | |
| 1087 | \begin{verbatim} |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 1088 | >>> os.stat("/tmp").st_mtime |
| 1089 | 1034791200 |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1090 | >>> os.stat_float_times(True) |
| 1091 | >>> os.stat("/tmp").st_mtime |
| 1092 | 1034791200.6335014 |
| 1093 | \end{verbatim} |
| 1094 | |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 1095 | In Python 2.4, the default will change to always returning floats. |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1096 | |
| 1097 | Application developers should use this feature only if all their |
| 1098 | libraries work properly when confronted with floating point time |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 1099 | stamps, or if they use the tuple API. If used, the feature should be |
| 1100 | activated on an application level instead of trying to enable it on a |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1101 | per-use basis. |
| 1102 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 1103 | \end{itemize} |
| 1104 | |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 1105 | |
Andrew M. Kuchling | ef5d06b | 2002-07-22 19:21:06 +0000 | [diff] [blame] | 1106 | %====================================================================== |
| 1107 | \section{Specialized Object Allocator (pymalloc)\label{section-pymalloc}} |
| 1108 | |
| 1109 | An experimental feature added to Python 2.1 was a specialized object |
| 1110 | allocator called pymalloc, written by Vladimir Marangozov. Pymalloc |
| 1111 | was intended to be faster than the system \cfunction{malloc()} and have |
| 1112 | less memory overhead for typical allocation patterns of Python |
| 1113 | programs. The allocator uses C's \cfunction{malloc()} function to get |
| 1114 | large pools of memory, and then fulfills smaller memory requests from |
| 1115 | these pools. |
| 1116 | |
| 1117 | In 2.1 and 2.2, pymalloc was an experimental feature and wasn't |
| 1118 | enabled by default; you had to explicitly turn it on by providing the |
| 1119 | \longprogramopt{with-pymalloc} option to the \program{configure} |
| 1120 | script. In 2.3, pymalloc has had further enhancements and is now |
| 1121 | enabled by default; you'll have to supply |
| 1122 | \longprogramopt{without-pymalloc} to disable it. |
| 1123 | |
| 1124 | This change is transparent to code written in Python; however, |
| 1125 | pymalloc may expose bugs in C extensions. Authors of C extension |
| 1126 | modules should test their code with the object allocator enabled, |
| 1127 | because some incorrect code may cause core dumps at runtime. There |
| 1128 | are a bunch of memory allocation functions in Python's C API that have |
| 1129 | previously been just aliases for the C library's \cfunction{malloc()} |
| 1130 | and \cfunction{free()}, meaning that if you accidentally called |
| 1131 | mismatched functions, the error wouldn't be noticeable. When the |
| 1132 | object allocator is enabled, these functions aren't aliases of |
| 1133 | \cfunction{malloc()} and \cfunction{free()} any more, and calling the |
| 1134 | wrong function to free memory may get you a core dump. For example, |
| 1135 | if memory was allocated using \cfunction{PyObject_Malloc()}, it has to |
| 1136 | be freed using \cfunction{PyObject_Free()}, not \cfunction{free()}. A |
| 1137 | few modules included with Python fell afoul of this and had to be |
| 1138 | fixed; doubtless there are more third-party modules that will have the |
| 1139 | same problem. |
| 1140 | |
| 1141 | As part of this change, the confusing multiple interfaces for |
| 1142 | allocating memory have been consolidated down into two API families. |
| 1143 | Memory allocated with one family must not be manipulated with |
| 1144 | functions from the other family. |
| 1145 | |
| 1146 | There is another family of functions specifically for allocating |
| 1147 | Python \emph{objects} (as opposed to memory). |
| 1148 | |
| 1149 | \begin{itemize} |
| 1150 | \item To allocate and free an undistinguished chunk of memory use |
| 1151 | the ``raw memory'' family: \cfunction{PyMem_Malloc()}, |
| 1152 | \cfunction{PyMem_Realloc()}, and \cfunction{PyMem_Free()}. |
| 1153 | |
| 1154 | \item The ``object memory'' family is the interface to the pymalloc |
| 1155 | facility described above and is biased towards a large number of |
| 1156 | ``small'' allocations: \cfunction{PyObject_Malloc}, |
| 1157 | \cfunction{PyObject_Realloc}, and \cfunction{PyObject_Free}. |
| 1158 | |
| 1159 | \item To allocate and free Python objects, use the ``object'' family |
| 1160 | \cfunction{PyObject_New()}, \cfunction{PyObject_NewVar()}, and |
| 1161 | \cfunction{PyObject_Del()}. |
| 1162 | \end{itemize} |
| 1163 | |
| 1164 | Thanks to lots of work by Tim Peters, pymalloc in 2.3 also provides |
| 1165 | debugging features to catch memory overwrites and doubled frees in |
| 1166 | both extension modules and in the interpreter itself. To enable this |
| 1167 | support, turn on the Python interpreter's debugging code by running |
| 1168 | \program{configure} with \longprogramopt{with-pydebug}. |
| 1169 | |
| 1170 | To aid extension writers, a header file \file{Misc/pymemcompat.h} is |
| 1171 | distributed with the source to Python 2.3 that allows Python |
| 1172 | extensions to use the 2.3 interfaces to memory allocation and compile |
| 1173 | against any version of Python since 1.5.2. You would copy the file |
| 1174 | from Python's source distribution and bundle it with the source of |
| 1175 | your extension. |
| 1176 | |
| 1177 | \begin{seealso} |
| 1178 | |
| 1179 | \seeurl{http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/python/python/dist/src/Objects/obmalloc.c} |
| 1180 | {For the full details of the pymalloc implementation, see |
| 1181 | the comments at the top of the file \file{Objects/obmalloc.c} in the |
| 1182 | Python source code. The above link points to the file within the |
| 1183 | SourceForge CVS browser.} |
| 1184 | |
| 1185 | \end{seealso} |
| 1186 | |
| 1187 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 1188 | % ====================================================================== |
| 1189 | \section{Build and C API Changes} |
| 1190 | |
Andrew M. Kuchling | 3c305d9 | 2002-07-22 18:50:11 +0000 | [diff] [blame] | 1191 | Changes to Python's build process and to the C API include: |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 1192 | |
| 1193 | \begin{itemize} |
| 1194 | |
Andrew M. Kuchling | ef5d06b | 2002-07-22 19:21:06 +0000 | [diff] [blame] | 1195 | \item The C-level interface to the garbage collector has been changed, |
| 1196 | to make it easier to write extension types that support garbage |
| 1197 | collection, and to make it easier to debug misuses of the functions. |
| 1198 | Various functions have slightly different semantics, so a bunch of |
| 1199 | functions had to be renamed. Extensions that use the old API will |
| 1200 | still compile but will \emph{not} participate in garbage collection, |
| 1201 | so updating them for 2.3 should be considered fairly high priority. |
| 1202 | |
| 1203 | To upgrade an extension module to the new API, perform the following |
| 1204 | steps: |
| 1205 | |
| 1206 | \begin{itemize} |
| 1207 | |
| 1208 | \item Rename \cfunction{Py_TPFLAGS_GC} to \cfunction{PyTPFLAGS_HAVE_GC}. |
| 1209 | |
| 1210 | \item Use \cfunction{PyObject_GC_New} or \cfunction{PyObject_GC_NewVar} to |
| 1211 | allocate objects, and \cfunction{PyObject_GC_Del} to deallocate them. |
| 1212 | |
| 1213 | \item Rename \cfunction{PyObject_GC_Init} to \cfunction{PyObject_GC_Track} and |
| 1214 | \cfunction{PyObject_GC_Fini} to \cfunction{PyObject_GC_UnTrack}. |
| 1215 | |
| 1216 | \item Remove \cfunction{PyGC_HEAD_SIZE} from object size calculations. |
| 1217 | |
| 1218 | \item Remove calls to \cfunction{PyObject_AS_GC} and \cfunction{PyObject_FROM_GC}. |
| 1219 | |
| 1220 | \end{itemize} |
| 1221 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1222 | \item Python can now optionally be built as a shared library |
| 1223 | (\file{libpython2.3.so}) by supplying \longprogramopt{enable-shared} |
Andrew M. Kuchling | fad2f59 | 2002-05-10 21:00:05 +0000 | [diff] [blame] | 1224 | when running Python's \file{configure} script. (Contributed by Ondrej |
| 1225 | Palkovsky.) |
Andrew M. Kuchling | f4dd65d | 2002-04-01 19:28:09 +0000 | [diff] [blame] | 1226 | |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 1227 | \item The \csimplemacro{DL_EXPORT} and \csimplemacro{DL_IMPORT} macros |
| 1228 | are now deprecated. Initialization functions for Python extension |
| 1229 | modules should now be declared using the new macro |
Andrew M. Kuchling | 3c305d9 | 2002-07-22 18:50:11 +0000 | [diff] [blame] | 1230 | \csimplemacro{PyMODINIT_FUNC}, while the Python core will generally |
| 1231 | use the \csimplemacro{PyAPI_FUNC} and \csimplemacro{PyAPI_DATA} |
| 1232 | macros. |
Neal Norwitz | bba23a8 | 2002-07-22 13:18:59 +0000 | [diff] [blame] | 1233 | |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 1234 | \item The interpreter can be compiled without any docstrings for |
| 1235 | the built-in functions and modules by supplying |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 1236 | \longprogramopt{without-doc-strings} to the \file{configure} script. |
Andrew M. Kuchling | e995d16 | 2002-07-11 20:09:50 +0000 | [diff] [blame] | 1237 | This makes the Python executable about 10\% smaller, but will also |
| 1238 | mean that you can't get help for Python's built-ins. (Contributed by |
| 1239 | Gustavo Niemeyer.) |
| 1240 | |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 1241 | \item The cycle detection implementation used by the garbage collection |
| 1242 | has proven to be stable, so it's now being made mandatory; you can no |
| 1243 | longer compile Python without it, and the |
| 1244 | \longprogramopt{with-cycle-gc} switch to \file{configure} has been removed. |
| 1245 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1246 | \item The \cfunction{PyArg_NoArgs()} macro is now deprecated, and code |
Andrew M. Kuchling | 7845e7c | 2002-07-11 19:27:46 +0000 | [diff] [blame] | 1247 | that uses it should be changed. For Python 2.2 and later, the method |
| 1248 | definition table can specify the |
| 1249 | \constant{METH_NOARGS} flag, signalling that there are no arguments, and |
| 1250 | the argument checking can then be removed. If compatibility with |
| 1251 | pre-2.2 versions of Python is important, the code could use |
| 1252 | \code{PyArg_ParseTuple(args, "")} instead, but this will be slower |
| 1253 | than using \constant{METH_NOARGS}. |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 1254 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1255 | \item A new function, \cfunction{PyObject_DelItemString(\var{mapping}, |
| 1256 | char *\var{key})} was added |
| 1257 | as shorthand for |
| 1258 | \code{PyObject_DelItem(\var{mapping}, PyString_New(\var{key})}. |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 1259 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1260 | \item File objects now manage their internal string buffer |
| 1261 | differently by increasing it exponentially when needed. |
| 1262 | This results in the benchmark tests in \file{Lib/test/test_bufio.py} |
| 1263 | speeding up from 57 seconds to 1.7 seconds, according to one |
| 1264 | measurement. |
| 1265 | |
Andrew M. Kuchling | 72b58e0 | 2002-05-29 17:30:34 +0000 | [diff] [blame] | 1266 | \item It's now possible to define class and static methods for a C |
| 1267 | extension type by setting either the \constant{METH_CLASS} or |
| 1268 | \constant{METH_STATIC} flags in a method's \ctype{PyMethodDef} |
| 1269 | structure. |
Andrew M. Kuchling | 45afd54 | 2002-04-02 14:25:25 +0000 | [diff] [blame] | 1270 | |
Andrew M. Kuchling | 346386f | 2002-07-12 20:24:42 +0000 | [diff] [blame] | 1271 | \item Python now includes a copy of the Expat XML parser's source code, |
| 1272 | removing any dependence on a system version or local installation of |
| 1273 | Expat. |
| 1274 | |
Andrew M. Kuchling | 821013e | 2002-05-06 17:46:39 +0000 | [diff] [blame] | 1275 | \end{itemize} |
| 1276 | |
| 1277 | \subsection{Port-Specific Changes} |
| 1278 | |
Andrew M. Kuchling | 187b1d8 | 2002-05-29 19:20:57 +0000 | [diff] [blame] | 1279 | Support for a port to IBM's OS/2 using the EMX runtime environment was |
| 1280 | merged into the main Python source tree. EMX is a POSIX emulation |
| 1281 | layer over the OS/2 system APIs. The Python port for EMX tries to |
| 1282 | support all the POSIX-like capability exposed by the EMX runtime, and |
| 1283 | mostly succeeds; \function{fork()} and \function{fcntl()} are |
| 1284 | restricted by the limitations of the underlying emulation layer. The |
| 1285 | standard OS/2 port, which uses IBM's Visual Age compiler, also gained |
| 1286 | support for case-sensitive import semantics as part of the integration |
| 1287 | of the EMX port into CVS. (Contributed by Andrew MacIntyre.) |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 1288 | |
Andrew M. Kuchling | 72b58e0 | 2002-05-29 17:30:34 +0000 | [diff] [blame] | 1289 | On MacOS, most toolbox modules have been weaklinked to improve |
| 1290 | backward compatibility. This means that modules will no longer fail |
| 1291 | to load if a single routine is missing on the curent OS version. |
Andrew M. Kuchling | 187b1d8 | 2002-05-29 19:20:57 +0000 | [diff] [blame] | 1292 | Instead calling the missing routine will raise an exception. |
| 1293 | (Contributed by Jack Jansen.) |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 1294 | |
Andrew M. Kuchling | 187b1d8 | 2002-05-29 19:20:57 +0000 | [diff] [blame] | 1295 | The RPM spec files, found in the \file{Misc/RPM/} directory in the |
| 1296 | Python source distribution, were updated for 2.3. (Contributed by |
| 1297 | Sean Reifschneider.) |
Fred Drake | 03e1031 | 2002-03-26 19:17:43 +0000 | [diff] [blame] | 1298 | |
Andrew M. Kuchling | 3e3e129 | 2002-10-10 11:32:30 +0000 | [diff] [blame] | 1299 | Python now supports AtheOS (\url{http://www.atheos.cx}) and GNU/Hurd. |
Andrew M. Kuchling | 20e5abc | 2002-07-11 20:50:34 +0000 | [diff] [blame] | 1300 | |
Fred Drake | 03e1031 | 2002-03-26 19:17:43 +0000 | [diff] [blame] | 1301 | |
| 1302 | %====================================================================== |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1303 | \section{Other Changes and Fixes} |
| 1304 | |
Andrew M. Kuchling | 7a82b8c | 2002-11-04 20:17:24 +0000 | [diff] [blame] | 1305 | As usual, there were a bunch of other improvements and bugfixes |
| 1306 | scattered throughout the source tree. A search through the CVS change |
| 1307 | logs finds there were 289 patches applied and 323 bugs fixed between |
| 1308 | Python 2.2 and 2.3. Both figures are likely to be underestimates. |
| 1309 | |
| 1310 | Some of the more notable changes are: |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1311 | |
| 1312 | \begin{itemize} |
| 1313 | |
| 1314 | \item The tools used to build the documentation now work under Cygwin |
| 1315 | as well as \UNIX. |
| 1316 | |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 1317 | \item The \code{SET_LINENO} opcode has been removed. Back in the |
| 1318 | mists of time, this opcode was needed to produce line numbers in |
| 1319 | tracebacks and support trace functions (for, e.g., \module{pdb}). |
| 1320 | Since Python 1.5, the line numbers in tracebacks have been computed |
| 1321 | using a different mechanism that works with ``python -O''. For Python |
| 1322 | 2.3 Michael Hudson implemented a similar scheme to determine when to |
| 1323 | call the trace function, removing the need for \code{SET_LINENO} |
| 1324 | entirely. |
| 1325 | |
Andrew M. Kuchling | 7a82b8c | 2002-11-04 20:17:24 +0000 | [diff] [blame] | 1326 | It would be difficult to detect any resulting difference from Python |
| 1327 | code, apart from a slight speed up when Python is run without |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 1328 | \programopt{-O}. |
| 1329 | |
| 1330 | C extensions that access the \member{f_lineno} field of frame objects |
| 1331 | should instead call \code{PyCode_Addr2Line(f->f_code, f->f_lasti)}. |
| 1332 | This will have the added effect of making the code work as desired |
| 1333 | under ``python -O'' in earlier versions of Python. |
| 1334 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1335 | \end{itemize} |
| 1336 | |
Andrew M. Kuchling | 187b1d8 | 2002-05-29 19:20:57 +0000 | [diff] [blame] | 1337 | |
Andrew M. Kuchling | 517109b | 2002-05-07 21:01:16 +0000 | [diff] [blame] | 1338 | %====================================================================== |
Andrew M. Kuchling | 950725f | 2002-08-06 01:40:48 +0000 | [diff] [blame] | 1339 | \section{Porting to Python 2.3} |
| 1340 | |
| 1341 | XXX write this |
| 1342 | |
| 1343 | |
| 1344 | %====================================================================== |
Fred Drake | 03e1031 | 2002-03-26 19:17:43 +0000 | [diff] [blame] | 1345 | \section{Acknowledgements \label{acks}} |
| 1346 | |
Andrew M. Kuchling | 03594bb | 2002-03-27 02:29:48 +0000 | [diff] [blame] | 1347 | The author would like to thank the following people for offering |
| 1348 | suggestions, corrections and assistance with various drafts of this |
Andrew M. Kuchling | 7a82b8c | 2002-11-04 20:17:24 +0000 | [diff] [blame] | 1349 | article: Simon Brunning, Michael Chermside, Scott David Daniels, Fred~L. Drake, Jr., |
Andrew M. Kuchling | 7845e7c | 2002-07-11 19:27:46 +0000 | [diff] [blame] | 1350 | Michael Hudson, Detlef Lannert, Martin von L\"owis, Andrew MacIntyre, |
Andrew M. Kuchling | bc5e3cc | 2002-11-05 00:26:33 +0000 | [diff] [blame] | 1351 | Lalo Martins, Gustavo Niemeyer, Neal Norwitz, Neil Schemenauer, Jason |
| 1352 | Tishler. |
Fred Drake | 03e1031 | 2002-03-26 19:17:43 +0000 | [diff] [blame] | 1353 | |
| 1354 | \end{document} |