Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | **************************** |
| 2 | What's New in Python 3.0 |
| 3 | **************************** |
| 4 | |
Andrew M. Kuchling | bbb809e | 2007-09-01 19:26:28 +0000 | [diff] [blame] | 5 | :Author: Guido van Rossum |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 6 | :Release: 0.1 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 8 | .. Rules for maintenance: |
| 9 | |
| 10 | * Anyone can add text to this document. Do not spend very much time |
| 11 | on the wording of your changes, because your text will probably |
| 12 | get rewritten to some degree. |
| 13 | |
| 14 | * The maintainer will go through Misc/NEWS periodically and add |
| 15 | changes; it's therefore more important to add your changes to |
| 16 | Misc/NEWS than to this file. |
| 17 | |
| 18 | * This is not a complete list of every single change; completeness |
| 19 | is the purpose of Misc/NEWS. Some changes I consider too small |
| 20 | or esoteric to include. If such a change is added to the text, |
| 21 | I'll just remove it. (This is another reason you shouldn't spend |
| 22 | too much time on writing your addition.) |
| 23 | |
| 24 | * If you want to draw your new text to the attention of the |
| 25 | maintainer, add 'XXX' to the beginning of the paragraph or |
| 26 | section. |
| 27 | |
| 28 | * It's OK to just add a fragmentary note about a change. For |
| 29 | example: "XXX Describe the transmogrify() function added to the |
| 30 | socket module." The maintainer will research the change and |
| 31 | write the necessary text. |
| 32 | |
| 33 | * You can comment out your additions if you like, but it's not |
| 34 | necessary (especially when a final release is some months away). |
| 35 | |
| 36 | * Credit the author of a patch or bugfix. Just the name is |
| 37 | sufficient; the e-mail address isn't necessary. |
| 38 | |
| 39 | * It's helpful to add the bug/patch number as a comment: |
| 40 | |
| 41 | % Patch 12345 |
| 42 | XXX Describe the transmogrify() function added to the socket |
| 43 | module. |
| 44 | (Contributed by P.Y. Developer.) |
| 45 | |
| 46 | This saves the maintainer the effort of going through the SVN log |
| 47 | when researching a change. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 48 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 49 | This article explains the new features in Python 3.0, comparing to 2.6 |
| 50 | (or in some cases 2.5, since 2.6 isn't released yet). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 51 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 52 | The best estimate for a release date is August 2008. |
| 53 | |
| 54 | This article doesn't attempt to provide a complete specification of |
| 55 | the new features, but instead provides a convenient overview. For |
| 56 | full details, you should refer to the documentation for Python 3.0. If |
| 57 | you want to understand the complete implementation and design |
| 58 | rationale, refer to the PEP for a particular new feature. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 59 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 60 | .. Compare with previous release in 2 - 3 sentences here. |
| 61 | .. add hyperlink when the documentation becomes available online. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 62 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 63 | .. ====================================================================== |
| 64 | .. Large, PEP-level features and changes should be described here. |
| 65 | .. Should there be a new section here for 3k migration? |
| 66 | .. Or perhaps a more general section describing module changes/deprecation? |
| 67 | .. sets module deprecated |
| 68 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 69 | |
| 70 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 71 | Common Stumbling Blocks |
| 72 | ======================= |
| 73 | |
| 74 | This section briefly lists the changes that are more likely to trip |
| 75 | people up, without necessarily raising obvious errors. These are all |
| 76 | explained in more detail below. (I'm not listing syntactic changes |
| 77 | and removed or renamed features here, since those tend to produce hard |
| 78 | and fast errors; it's the subtle behavioral changes in code that |
| 79 | remains syntactically valid that trips people up. I'm also omitting |
| 80 | changes to rarely used features.) |
| 81 | |
| 82 | * Python 3.0 uses strings and bytes instead of the Unicode strings and |
| 83 | 8-bit strings. This means that pretty much all code that uses |
| 84 | Unicode, encodings or binary data in any way has to change. The |
| 85 | change is for the better, as in the 2.x world there were numerous |
| 86 | bugs having to do with mixing encoded and unencoded text. |
| 87 | |
| 88 | * Text files enforce an encoding; binary files use bytes. This means |
| 89 | that if a file is opened using an incorrect mode or encoding, I/O |
| 90 | will likely fail. |
| 91 | |
| 92 | * Bytes aren't hashable, and don't support certain operations like |
| 93 | ``b.lower()``, ``b.strip()`` or ``b.split()``. |
| 94 | For the latter two, use ``b.strip(b" \t\r\n\f")`` or |
| 95 | ``b.split(b" \t\r\n\f")``. |
| 96 | |
| 97 | * ``map()`` and ``filter()`` return iterators. A quick fix is e.g. |
| 98 | ``list(map(...))``, but a better fix is often to use a list |
| 99 | comprehension (especially when the original code uses ``lambda``). |
| 100 | Particularly tricky is ``map()`` invoked for the side effects of the |
| 101 | function; the correct transformation is to use a for-loop. |
| 102 | |
| 103 | * ``dict`` methods ``.keys()``, ``.items()`` and ``.values()`` return |
| 104 | views instead of lists. For example, this no longer works: |
| 105 | ``k = d.keys(); k.sort()``. Use ``k = sorted(d)`` instead. |
| 106 | |
| 107 | * ``1/2`` returns a float. Use ``1//2`` to get the truncating behavior. |
| 108 | |
| 109 | * Code that unconditionally strips the trailing ``L`` from the ``repr()`` |
| 110 | of a long integer will chop off the last digit instead. |
| 111 | |
| 112 | * The ``print()`` function doesn't support the "softspace" feature of |
| 113 | the old ``print`` statement. For example, in Python 2.x, |
| 114 | ``print "A\n", "B\n"`` would write ``"A\nB\n"``; but in Python 3.0, |
| 115 | ``print("A\n", "B\n")`` writes ``"A\n B\n"``. |
| 116 | |
| 117 | * Also, ``print`` and ``print (x, y)`` behave differently without |
| 118 | warning: the former used to add a newline in 2.x, but does nothing |
| 119 | in 3.0; the latter used to print the ``repr()`` of a tuple in 2.x, |
| 120 | but prints the individual values in 3.0. |
| 121 | |
| 122 | * You'll be finding yourself typing ``print x`` a lot in interactive |
| 123 | mode. Time to retrain your fingers. :-) |
| 124 | |
| 125 | |
| 126 | Strings and Bytes |
| 127 | ================= |
| 128 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 129 | * There is only one string type; its name is ``str`` but its behavior |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 130 | and implementation are more like ``unicode`` in 2.x. |
| 131 | |
| 132 | * PEP 358: There is a new type, ``bytes``, to represent binary data |
| 133 | (and encoded text, which is treated as binary data until you decide |
| 134 | to decode it). The ``str`` and ``bytes`` types cannot be mixed; you |
| 135 | must always explicitly convert between them, using the ``.encode()`` |
| 136 | (str -> bytes) or ``.decode()`` (bytes -> str) methods. Comparing a |
| 137 | bytes and a str instance for equality raises a TypeError; this |
| 138 | catches common mistakes. |
| 139 | |
| 140 | * PEP 3112: Bytes literals. E.g. b"abc". |
| 141 | |
| 142 | * PEP 3120: UTF-8 default source encoding. |
| 143 | |
| 144 | * PEP 3131: Non-ASCII identifiers. (However, the standard library |
| 145 | remains ASCII-only with the exception of contributor names in |
| 146 | comments.) |
| 147 | |
| 148 | * PEP 3116: New I/O Implementation. The API is nearly 100% backwards |
| 149 | compatible, but completely reimplemented (currently mostly in |
| 150 | Python). Also, binary files use bytes instead of strings. |
| 151 | |
| 152 | * The ``StringIO`` and ``cStringIO`` modules are gone. Instead, |
| 153 | import ``StringIO`` or ``BytesIO`` from the ``io`` module. |
| 154 | |
| 155 | |
| 156 | PEP 3101: A New Approach to String Formatting |
| 157 | ============================================= |
| 158 | |
| 159 | XXX |
| 160 | |
| 161 | |
| 162 | PEP 3106: Revamping ``.keys()``, ``.items()`` and ``.values()`` |
| 163 | =============================================================== |
| 164 | |
| 165 | XXX |
| 166 | |
| 167 | |
| 168 | PEP 3107: Function Annotations |
| 169 | ============================== |
| 170 | |
| 171 | XXX |
| 172 | |
| 173 | |
| 174 | Exception Stuff |
| 175 | =============== |
| 176 | |
| 177 | * PEP 352: Exceptions must derive from BaseException. This is the |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 178 | root of the exception hierarchy. |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 179 | |
| 180 | * StandardException was removed (already in 2.6). |
| 181 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 182 | * Dropping sequence behavior (slicing!) and ``.message`` attribute of |
| 183 | exception instances. |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 184 | |
| 185 | * PEP 3109: Raising exceptions. You must now use ``raise |
| 186 | Exception(args)`` instead of ``raise Exception, args``. |
| 187 | |
| 188 | * PEP 3110: Catching exceptions. |
| 189 | |
| 190 | * PEP 3134: Exception chaining. (The ``__context__`` feature from the |
| 191 | PEP hasn't been implemented yet in 3.0a1.) |
| 192 | |
| 193 | |
| 194 | New Class and Metaclass Stuff |
| 195 | ============================= |
| 196 | |
| 197 | * Classic classes are gone. |
| 198 | |
| 199 | * PEP 3115: New Metaclass Syntax. |
| 200 | |
Skip Montanaro | a86f5d4 | 2007-09-04 02:48:01 +0000 | [diff] [blame^] | 201 | * PEP 3119: Abstract Base Classes (ABCs); ``@abstractmethod`` and |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 202 | ``@abstractproperty`` decorators; collection ABCs. |
| 203 | |
| 204 | * PEP 3129: Class decorators. |
| 205 | |
| 206 | * PEP 3141: Numeric ABCs. |
| 207 | |
| 208 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 209 | Other Language Changes |
| 210 | ====================== |
| 211 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 212 | Here are most of the changes that Python 3.0 makes to the core Python |
| 213 | language and built-in functions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 214 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 215 | * Removed backticks (use ``repr()`` instead). |
| 216 | |
| 217 | * Removed ``<>`` (use ``!=`` instead). |
| 218 | |
| 219 | * ``as`` and ``with`` are keywords. |
| 220 | |
| 221 | * PEP 237: ``long`` renamed to ``int``. That is, there is only one |
| 222 | built-in integral type, named ``int``; but it behaves like the old |
| 223 | ``long`` type. |
| 224 | |
| 225 | * PEP 238: int division returns a float. |
| 226 | |
| 227 | * The ordering operators behave differently: for example, ``x < y`` |
| 228 | where ``x`` and ``y`` have incompatible types raises ``TypeError`` |
| 229 | instead of returning a pseudo-random boolean. |
| 230 | |
| 231 | * ``__getslice__()`` and friends killed. The syntax ``a[i:j]`` now |
| 232 | translates to ``a.__getitem__(slice(i, j))`` (or ``__setitem__`` |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 233 | or ``__delitem__``, depending on context). |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 234 | |
| 235 | * PEP 3102: Keyword-only arguments. Named parameters occurring after |
| 236 | ``*args`` in the parameter list *must* be specified using keyword |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 237 | syntax in the call. You can also use a bare ``*`` in the parameter |
| 238 | list to indicate that you don't accept a variable-length argument |
| 239 | list, but you do have keyword-only arguments. |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 240 | |
| 241 | * PEP 3104: ``nonlocal`` statement. Using ``nonlocal x`` you can now |
| 242 | assign directly to a variable in an outer (but non-global) scope. |
| 243 | |
Guido van Rossum | 5eb520c | 2007-09-04 02:40:38 +0000 | [diff] [blame] | 244 | * PEP 3105: ``print`` is now a function. Keyword arguments |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 245 | ``file=sys.stdout``, ``sep=" "`` and ``end="\n"`` let you customize |
| 246 | it. |
| 247 | |
| 248 | * PEP 3111: ``raw_input()`` renamed to ``input()``. That is, the new |
| 249 | ``input()`` function reads a line from ``sys.stdin`` and returns it |
| 250 | with the trailing newline stripped. It raises ``EOFError`` if the |
| 251 | input is terminated prematurely. To get the old behavior of |
| 252 | ``input()``, use ``eval(input())``. |
| 253 | |
| 254 | * ``xrange()`` renamed to ``range()``. |
| 255 | |
| 256 | * PEP 3113: Tuple parameter unpacking removed. You can no longer write |
| 257 | ``def foo(a, (b, c)): ...``. Use ``def foo(a, b_c): b, c = b_c`` |
| 258 | instead. |
| 259 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 260 | * PEP 3114: ``.next()`` renamed to ``.__next__()``, new builtin |
| 261 | ``next()`` to call the ``__next__()`` method on an object. |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 262 | |
| 263 | * PEP 3127: New octal literals; binary literals and ``bin()``. |
| 264 | Instead of ``0666``, you write ``0o666``. The oct() function is |
| 265 | modified accordingly. Also, ``0b1010`` equals 10, and ``bin(10)`` |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 266 | returns ``"0b1010"``. ``0666`` is now a ``SyntaxError``. |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 267 | |
| 268 | * PEP 3132: Extended Iterable Unpacking. You can now write things |
| 269 | like ``a, b, *rest = some_sequence``. And even ``*rest, a = |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 270 | stuff``. The ``rest`` object is always a list; the right-hand |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 271 | side may be any iterable. |
| 272 | |
| 273 | * PEP 3135: New ``super()``. You can now invoke ``super()`` without |
| 274 | arguments and the right class and instance will automatically be |
| 275 | chosen. With arguments, its behavior is unchanged. |
| 276 | |
| 277 | * ``zip()``, ``map()`` and ``filter()`` return iterators. |
| 278 | |
| 279 | * ``string.letters`` and its friends (``.lowercase`` and |
| 280 | ``.uppercase``) are gone. Use ``string.ascii_letters`` |
| 281 | etc. instead. |
| 282 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 283 | * Removed: ``apply()``, ``callable()``, ``coerce()``, ``execfile()``, |
| 284 | ``file()``, ``reduce()``, ``reload()``. |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 285 | |
| 286 | * Removed: ``dict.has_key()``. |
| 287 | |
| 288 | * ``exec`` is now a function. |
| 289 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 290 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 291 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 292 | |
| 293 | |
| 294 | Optimizations |
| 295 | ------------- |
| 296 | |
| 297 | * Detailed changes are listed here. |
| 298 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 299 | The net result of the 3.0 generalizations is that Python 3.0 runs the |
Guido van Rossum | b3922cb | 2007-08-31 14:03:28 +0000 | [diff] [blame] | 300 | pystone benchmark around 33% slower than Python 2.5. There's room for |
| 301 | improvement; we expect to be optimizing string and integer operations |
| 302 | significantly before the final 3.0 release! |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 303 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 304 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 305 | |
| 306 | |
| 307 | New, Improved, and Deprecated Modules |
| 308 | ===================================== |
| 309 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 310 | As usual, Python's standard library received a number of enhancements |
| 311 | and bug fixes. Here's a partial list of the most notable changes, |
| 312 | sorted alphabetically by module name. Consult the :file:`Misc/NEWS` |
| 313 | file in the source tree for a more complete list of changes, or look |
| 314 | through the CVS logs for all the details. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 315 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 316 | * The ``cPickle`` module is gone. Use ``pickle`` instead. Eventually |
| 317 | we'll have a transparent accelerator module. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 318 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 319 | .. ====================================================================== |
| 320 | .. whole new modules get described in subsections here |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 321 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 322 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 323 | |
| 324 | |
| 325 | Build and C API Changes |
| 326 | ======================= |
| 327 | |
| 328 | Changes to Python's build process and to the C API include: |
| 329 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 330 | * PEP 3118: New Buffer API. |
| 331 | |
| 332 | * PEP 3121: Extension Module Initialization & Finalization. |
| 333 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 334 | * PEP 3123: Making ``PyObject_HEAD`` conform to standard C. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 335 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 336 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 337 | |
| 338 | |
| 339 | Port-Specific Changes |
| 340 | --------------------- |
| 341 | |
| 342 | Platform-specific changes go here. |
| 343 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 344 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 345 | |
| 346 | |
| 347 | .. _section-other: |
| 348 | |
| 349 | Other Changes and Fixes |
| 350 | ======================= |
| 351 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 352 | As usual, there were a bunch of other improvements and bugfixes |
| 353 | scattered throughout the source tree. A search through the change |
| 354 | logs finds there were XXX patches applied and YYY bugs fixed between |
| 355 | Python 2.6 and 3.0. Both figures are likely to be underestimates. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 356 | |
| 357 | Some of the more notable changes are: |
| 358 | |
| 359 | * Details go here. |
| 360 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 361 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 362 | |
| 363 | |
| 364 | Porting to Python 3.0 |
| 365 | ===================== |
| 366 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 367 | This section lists previously described changes that may require |
| 368 | changes to your code: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 369 | |
| 370 | * Everything is all in the details! |
| 371 | |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 372 | .. ====================================================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 373 | |
| 374 | |
| 375 | .. _acks: |
| 376 | |
| 377 | Acknowledgements |
| 378 | ================ |
| 379 | |
Guido van Rossum | b197f3c | 2007-08-31 00:37:00 +0000 | [diff] [blame] | 380 | The author would like to thank the following people for offering |
| 381 | suggestions, corrections and assistance with various drafts of this |
Georg Brandl | 5a16558 | 2007-08-31 06:15:01 +0000 | [diff] [blame] | 382 | article: Georg Brandl. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 383 | |