blob: 03bd432a27077c0d91d29abb89d2471cb42a1d25 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001****************************
2 What's New in Python 2.6
3****************************
4
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00005.. XXX add trademark info for Apple, Microsoft, SourceForge.
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00006
Georg Brandl8ec7f652007-08-15 14:28:01 +00007:Author: A.M. Kuchling
8:Release: |release|
9:Date: |today|
10
Georg Brandlb19be572007-12-29 10:57:00 +000011.. $Id: whatsnew26.tex 55746 2007-06-02 18:33:53Z neal.norwitz $
12 Rules for maintenance:
13
14 * Anyone can add text to this document. Do not spend very much time
15 on the wording of your changes, because your text will probably
16 get rewritten to some degree.
17
18 * The maintainer will go through Misc/NEWS periodically and add
19 changes; it's therefore more important to add your changes to
20 Misc/NEWS than to this file.
21
22 * This is not a complete list of every single change; completeness
23 is the purpose of Misc/NEWS. Some changes I consider too small
24 or esoteric to include. If such a change is added to the text,
25 I'll just remove it. (This is another reason you shouldn't spend
26 too much time on writing your addition.)
27
28 * If you want to draw your new text to the attention of the
29 maintainer, add 'XXX' to the beginning of the paragraph or
30 section.
31
32 * It's OK to just add a fragmentary note about a change. For
33 example: "XXX Describe the transmogrify() function added to the
34 socket module." The maintainer will research the change and
35 write the necessary text.
36
37 * You can comment out your additions if you like, but it's not
38 necessary (especially when a final release is some months away).
39
40 * Credit the author of a patch or bugfix. Just the name is
41 sufficient; the e-mail address isn't necessary.
42
Andrew M. Kuchling17f84292008-04-10 21:29:01 +000043 * It's helpful to add the bug/patch number in an parenthetical
Georg Brandlb19be572007-12-29 10:57:00 +000044
Georg Brandlb19be572007-12-29 10:57:00 +000045 XXX Describe the transmogrify() function added to the socket
46 module.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +000047 (Contributed by P.Y. Developer; :issue:`12345`.)
Georg Brandlb19be572007-12-29 10:57:00 +000048
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +000049 This saves the maintainer the effort of going through the SVN logs
Georg Brandlb19be572007-12-29 10:57:00 +000050 when researching a change.
Georg Brandl8ec7f652007-08-15 14:28:01 +000051
52This article explains the new features in Python 2.6. No release date for
53Python 2.6 has been set; it will probably be released in mid 2008.
54
Andrew M. Kuchling17f84292008-04-10 21:29:01 +000055This article doesn't attempt to provide a complete specification of
56the new features, but instead provides a convenient overview. For
57full details, you should refer to the documentation for Python 2.6. If
58you want to understand the complete implementation and design
59rationale, refer to the PEP for a particular new feature. For smaller
60changes, this edition of "What's New in Python" links to the bug/patch
61item for each change whenever possible.
Georg Brandl8ec7f652007-08-15 14:28:01 +000062
Georg Brandlb19be572007-12-29 10:57:00 +000063.. Compare with previous release in 2 - 3 sentences here.
64 add hyperlink when the documentation becomes available online.
Georg Brandl8ec7f652007-08-15 14:28:01 +000065
Georg Brandlb19be572007-12-29 10:57:00 +000066.. ========================================================================
67.. Large, PEP-level features and changes should be described here.
68.. Should there be a new section here for 3k migration?
69.. Or perhaps a more general section describing module changes/deprecation?
70.. ========================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +000071
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +000072Python 3.0
73================
74
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +000075The development cycle for Python 2.6 also saw the release of the first
76alphas of Python 3.0, and the development of 3.0 has influenced
77a number of features in 2.6.
78
79Python 3.0 is a far-ranging redesign of Python that breaks
80compatibility with the 2.x series. This means that existing Python
81code will need a certain amount of conversion in order to run on
82Python 3.0. However, not all the changes in 3.0 necessarily break
83compatibility. In cases where new features won't cause existing code
84to break, they've been backported to 2.6 and are described in this
85document in the appropriate place. Some of the 3.0-derived features
86are:
87
88* A :meth:`__complex__` method for converting objects to a complex number.
89* Alternate syntax for catching exceptions: ``except TypeError as exc``.
90* The addition of :func:`functools.reduce` as a synonym for the built-in
91 :func:`reduce` function.
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +000092
93A new command-line switch, :option:`-3`, enables warnings
94about features that will be removed in Python 3.0. You can run code
95with this switch to see how much work will be necessary to port
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +000096code to 3.0. The value of this switch is available
Georg Brandld5b635f2008-03-25 08:29:14 +000097to Python code as the boolean variable :data:`sys.py3kwarning`,
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +000098and to C extension code as :cdata:`Py_Py3kWarningFlag`.
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +000099
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000100Python 3.0 adds several new built-in functions and change the
101semantics of some existing built-ins. Entirely new functions such as
102:func:`bin` have simply been added to Python 2.6, but existing
103built-ins haven't been changed; instead, the :mod:`future_builtins`
104module has versions with the new 3.0 semantics. Code written to be
105compatible with 3.0 can do ``from future_builtins import hex, map``
106as necessary.
107
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000108.. seealso::
109
110 The 3xxx series of PEPs, which describes the development process for
111 Python 3.0 and various features that have been accepted, rejected,
112 or are still under consideration.
113
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000114
115Development Changes
116==================================================
117
118While 2.6 was being developed, the Python development process
119underwent two significant changes: the developer group
120switched from SourceForge's issue tracker to a customized
121Roundup installation, and the documentation was converted from
David Goodger09f57b72008-04-21 14:40:22 +0000122LaTeX to reStructuredText.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000123
124
125New Issue Tracker: Roundup
126--------------------------------------------------
127
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000128For a long time, the Python developers have been growing increasingly
129annoyed by SourceForge's bug tracker. SourceForge's hosted solution
130doesn't permit much customization; for example, it wasn't possible to
131customize the life cycle of issues.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000132
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000133The infrastructure committee of the Python Software Foundation
134therefore posted a call for issue trackers, asking volunteers to set
135up different products and import some of the bugs and patches from
136SourceForge. Four different trackers were examined: Atlassian's `Jira
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +0000137<http://www.atlassian.com/software/jira/>`__,
138`Launchpad <http://www.launchpad.net>`__,
139`Roundup <http://roundup.sourceforge.net/>`__, and
Benjamin Peterson80ef62e2008-04-30 22:03:36 +0000140`Trac <http://trac.edgewall.org/>`__.
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +0000141The committee eventually settled on Jira
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000142and Roundup as the two candidates. Jira is a commercial product that
143offers a no-cost hosted instance to free-software projects; Roundup
144is an open-source project that requires volunteers
145to administer it and a server to host it.
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000146
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000147After posting a call for volunteers, a new Roundup installation was
148set up at http://bugs.python.org. One installation of Roundup can
149host multiple trackers, and this server now also hosts issue trackers
150for Jython and for the Python web site. It will surely find
Andrew M. Kuchling17f84292008-04-10 21:29:01 +0000151other uses in the future. Where possible,
152this edition of "What's New in Python" links to the bug/patch
153item for each change.
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000154
Andrew M. Kuchling17f84292008-04-10 21:29:01 +0000155Hosting is kindly provided by
156`Upfront Systems <http://www.upfrontsystems.co.za/>`__
157of Stellenbosch, South Africa. Martin von Loewis put a
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +0000158lot of effort into importing existing bugs and patches from
159SourceForge; his scripts for this import operation are at
160http://svn.python.org/view/tracker/importer/.
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000161
162.. seealso::
163
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000164 http://bugs.python.org
165 The Python bug tracker.
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000166
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000167 http://bugs.jython.org:
168 The Jython bug tracker.
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000169
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000170 http://roundup.sourceforge.net/
171 Roundup downloads and documentation.
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000172
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000173
Benjamin Peterson56fcb0b2008-05-02 22:12:58 +0000174New Documentation Format: reStructuredText Using Sphinx
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000175-----------------------------------------------------------
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000176
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000177Since the Python project's inception around 1989, the documentation
178had been written using LaTeX. At that time, most documentation was
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000179printed out for later study, not viewed online. LaTeX was widely used
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000180because it provided attractive printed output while remaining
181straightforward to write, once the basic rules of the markup have been
182learned.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000183
184LaTeX is still used today for writing technical publications destined
185for printing, but the landscape for programming tools has shifted. We
186no longer print out reams of documentation; instead, we browse through
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000187it online and HTML has become the most important format to support.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000188Unfortunately, converting LaTeX to HTML is fairly complicated, and
189Fred L. Drake Jr., the Python documentation editor for many years,
190spent a lot of time wrestling the conversion process into shape.
191Occasionally people would suggest converting the documentation into
192SGML or, later, XML, but performing a good conversion is a major task
193and no one pursued the task to completion.
194
Andrew M. Kuchling17f84292008-04-10 21:29:01 +0000195During the 2.6 development cycle, Georg Brandl put a substantial
196effort into building a new toolchain for processing the documentation.
197The resulting package is called Sphinx, and is available from
David Goodger09f57b72008-04-21 14:40:22 +0000198http://sphinx.pocoo.org/. The input format is reStructuredText, a
Andrew M. Kuchling17f84292008-04-10 21:29:01 +0000199markup commonly used in the Python community that supports custom
200extensions and directives. Sphinx concentrates on HTML output,
201producing attractively styled and modern HTML, though printed output
202is still supported through conversion to LaTeX. Sphinx is a
203standalone package that can be used in documenting other projects.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000204
205.. seealso::
206
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000207 :ref:`documenting-index`
208 Describes how to write for Python's documentation.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000209
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000210 `Sphinx <http://sphinx.pocoo.org/>`__
211 Documentation and code for the Sphinx toolchain.
212
213 `Docutils <http://docutils.sf.net>`__
David Goodger09f57b72008-04-21 14:40:22 +0000214 The underlying reStructuredText parser and toolset.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000215
216
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000217PEP 343: The 'with' statement
218=============================
219
220The previous version, Python 2.5, added the ':keyword:`with`'
221statement an optional feature, to be enabled by a ``from __future__
Andrew M. Kuchling6e751f42007-12-03 21:28:41 +0000222import with_statement`` directive. In 2.6 the statement no longer needs to
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000223be specially enabled; this means that :keyword:`with` is now always a
224keyword. The rest of this section is a copy of the corresponding
225section from "What's New in Python 2.5" document; if you read
226it back when Python 2.5 came out, you can skip the rest of this
227section.
228
229The ':keyword:`with`' statement clarifies code that previously would use
230``try...finally`` blocks to ensure that clean-up code is executed. In this
231section, I'll discuss the statement as it will commonly be used. In the next
232section, I'll examine the implementation details and show how to write objects
233for use with this statement.
234
235The ':keyword:`with`' statement is a new control-flow structure whose basic
236structure is::
237
238 with expression [as variable]:
239 with-block
240
241The expression is evaluated, and it should result in an object that supports the
242context management protocol (that is, has :meth:`__enter__` and :meth:`__exit__`
243methods.
244
245The object's :meth:`__enter__` is called before *with-block* is executed and
246therefore can run set-up code. It also may return a value that is bound to the
247name *variable*, if given. (Note carefully that *variable* is *not* assigned
248the result of *expression*.)
249
250After execution of the *with-block* is finished, the object's :meth:`__exit__`
251method is called, even if the block raised an exception, and can therefore run
252clean-up code.
253
254Some standard Python objects now support the context management protocol and can
255be used with the ':keyword:`with`' statement. File objects are one example::
256
257 with open('/etc/passwd', 'r') as f:
258 for line in f:
259 print line
260 ... more processing code ...
261
262After this statement has executed, the file object in *f* will have been
263automatically closed, even if the :keyword:`for` loop raised an exception part-
264way through the block.
265
266.. note::
267
268 In this case, *f* is the same object created by :func:`open`, because
269 :meth:`file.__enter__` returns *self*.
270
271The :mod:`threading` module's locks and condition variables also support the
272':keyword:`with`' statement::
273
274 lock = threading.Lock()
275 with lock:
276 # Critical section of code
277 ...
278
279The lock is acquired before the block is executed and always released once the
280block is complete.
281
282The new :func:`localcontext` function in the :mod:`decimal` module makes it easy
283to save and restore the current decimal context, which encapsulates the desired
284precision and rounding characteristics for computations::
285
286 from decimal import Decimal, Context, localcontext
287
288 # Displays with default precision of 28 digits
289 v = Decimal('578')
290 print v.sqrt()
291
292 with localcontext(Context(prec=16)):
293 # All code in this block uses a precision of 16 digits.
294 # The original context is restored on exiting the block.
295 print v.sqrt()
296
297
298.. _new-26-context-managers:
299
300Writing Context Managers
301------------------------
302
303Under the hood, the ':keyword:`with`' statement is fairly complicated. Most
304people will only use ':keyword:`with`' in company with existing objects and
305don't need to know these details, so you can skip the rest of this section if
306you like. Authors of new objects will need to understand the details of the
307underlying implementation and should keep reading.
308
309A high-level explanation of the context management protocol is:
310
311* The expression is evaluated and should result in an object called a "context
312 manager". The context manager must have :meth:`__enter__` and :meth:`__exit__`
313 methods.
314
315* The context manager's :meth:`__enter__` method is called. The value returned
Georg Brandld41b8dc2007-12-16 23:15:07 +0000316 is assigned to *VAR*. If no ``as VAR`` clause is present, the value is simply
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000317 discarded.
318
319* The code in *BLOCK* is executed.
320
321* If *BLOCK* raises an exception, the :meth:`__exit__(type, value, traceback)`
322 is called with the exception details, the same values returned by
323 :func:`sys.exc_info`. The method's return value controls whether the exception
324 is re-raised: any false value re-raises the exception, and ``True`` will result
325 in suppressing it. You'll only rarely want to suppress the exception, because
326 if you do the author of the code containing the ':keyword:`with`' statement will
327 never realize anything went wrong.
328
329* If *BLOCK* didn't raise an exception, the :meth:`__exit__` method is still
330 called, but *type*, *value*, and *traceback* are all ``None``.
331
332Let's think through an example. I won't present detailed code but will only
333sketch the methods necessary for a database that supports transactions.
334
335(For people unfamiliar with database terminology: a set of changes to the
336database are grouped into a transaction. Transactions can be either committed,
337meaning that all the changes are written into the database, or rolled back,
338meaning that the changes are all discarded and the database is unchanged. See
339any database textbook for more information.)
340
341Let's assume there's an object representing a database connection. Our goal will
342be to let the user write code like this::
343
344 db_connection = DatabaseConnection()
345 with db_connection as cursor:
346 cursor.execute('insert into ...')
347 cursor.execute('delete from ...')
348 # ... more operations ...
349
350The transaction should be committed if the code in the block runs flawlessly or
351rolled back if there's an exception. Here's the basic interface for
352:class:`DatabaseConnection` that I'll assume::
353
354 class DatabaseConnection:
355 # Database interface
Georg Brandl9f72d232007-12-16 23:13:29 +0000356 def cursor(self):
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000357 "Returns a cursor object and starts a new transaction"
Georg Brandl9f72d232007-12-16 23:13:29 +0000358 def commit(self):
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000359 "Commits current transaction"
Georg Brandl9f72d232007-12-16 23:13:29 +0000360 def rollback(self):
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000361 "Rolls back current transaction"
362
363The :meth:`__enter__` method is pretty easy, having only to start a new
364transaction. For this application the resulting cursor object would be a useful
365result, so the method will return it. The user can then add ``as cursor`` to
366their ':keyword:`with`' statement to bind the cursor to a variable name. ::
367
368 class DatabaseConnection:
369 ...
Georg Brandl9f72d232007-12-16 23:13:29 +0000370 def __enter__(self):
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000371 # Code to start a new transaction
372 cursor = self.cursor()
373 return cursor
374
375The :meth:`__exit__` method is the most complicated because it's where most of
376the work has to be done. The method has to check if an exception occurred. If
377there was no exception, the transaction is committed. The transaction is rolled
378back if there was an exception.
379
380In the code below, execution will just fall off the end of the function,
381returning the default value of ``None``. ``None`` is false, so the exception
382will be re-raised automatically. If you wished, you could be more explicit and
383add a :keyword:`return` statement at the marked location. ::
384
385 class DatabaseConnection:
386 ...
Georg Brandl9f72d232007-12-16 23:13:29 +0000387 def __exit__(self, type, value, tb):
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000388 if tb is None:
389 # No exception, so commit
390 self.commit()
391 else:
392 # Exception occurred, so rollback.
393 self.rollback()
394 # return False
395
396
397.. _module-contextlib:
398
399The contextlib module
400---------------------
401
402The new :mod:`contextlib` module provides some functions and a decorator that
403are useful for writing objects for use with the ':keyword:`with`' statement.
404
405The decorator is called :func:`contextmanager`, and lets you write a single
406generator function instead of defining a new class. The generator should yield
407exactly one value. The code up to the :keyword:`yield` will be executed as the
408:meth:`__enter__` method, and the value yielded will be the method's return
409value that will get bound to the variable in the ':keyword:`with`' statement's
410:keyword:`as` clause, if any. The code after the :keyword:`yield` will be
411executed in the :meth:`__exit__` method. Any exception raised in the block will
412be raised by the :keyword:`yield` statement.
413
414Our database example from the previous section could be written using this
415decorator as::
416
417 from contextlib import contextmanager
418
419 @contextmanager
Georg Brandl9f72d232007-12-16 23:13:29 +0000420 def db_transaction(connection):
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000421 cursor = connection.cursor()
422 try:
423 yield cursor
424 except:
425 connection.rollback()
426 raise
427 else:
428 connection.commit()
429
430 db = DatabaseConnection()
431 with db_transaction(db) as cursor:
432 ...
433
434The :mod:`contextlib` module also has a :func:`nested(mgr1, mgr2, ...)` function
435that combines a number of context managers so you don't need to write nested
436':keyword:`with`' statements. In this example, the single ':keyword:`with`'
437statement both starts a database transaction and acquires a thread lock::
438
439 lock = threading.Lock()
440 with nested (db_transaction(db), lock) as (cursor, locked):
441 ...
442
443Finally, the :func:`closing(object)` function returns *object* so that it can be
444bound to a variable, and calls ``object.close`` at the end of the block. ::
445
446 import urllib, sys
447 from contextlib import closing
448
449 with closing(urllib.urlopen('http://www.yahoo.com')) as f:
450 for line in f:
451 sys.stdout.write(line)
452
453
454.. seealso::
455
456 :pep:`343` - The "with" statement
457 PEP written by Guido van Rossum and Nick Coghlan; implemented by Mike Bland,
458 Guido van Rossum, and Neal Norwitz. The PEP shows the code generated for a
459 ':keyword:`with`' statement, which can be helpful in learning how the statement
460 works.
461
462 The documentation for the :mod:`contextlib` module.
463
Georg Brandlb19be572007-12-29 10:57:00 +0000464.. ======================================================================
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000465
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000466.. _pep-0366:
467
468PEP 366: Explicit Relative Imports From a Main Module
469============================================================
470
471Python's :option:`-m` switch allows running a module as a script.
472When you ran a module that was located inside a package, relative
473imports didn't work correctly.
474
475The fix in Python 2.6 adds a :attr:`__package__` attribute to modules.
476When present, relative imports will be relative to the value of this
477attribute instead of the :attr:`__name__` attribute. PEP 302-style
478importers can then set :attr:`__package__`. The :mod:`runpy` module
479that implements the :option:`-m` switch now does this, so relative imports
480can now be used in scripts running from inside a package.
481
Georg Brandlb19be572007-12-29 10:57:00 +0000482.. ======================================================================
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +0000483
Andrew M. Kuchling2e463552008-01-15 01:47:32 +0000484.. ::
485
486 .. _pep-0370:
487
488 PEP 370: XXX
489 =====================================================
490
491 When you run Python, the module search page ``sys.modules`` usually
492 includes a directory whose path ends in ``"site-packages"``. This
493 directory is intended to hold locally-installed packages available to
494 all users on a machine or using a particular site installation.
495
496 Python 2.6 introduces a convention for user-specific site directories.
497
498 .. seealso::
499
500 :pep:`370` - XXX
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000501 PEP written by XXX; implemented by Christian Heimes.
Andrew M. Kuchling2e463552008-01-15 01:47:32 +0000502
503
504.. ======================================================================
505
Andrew M. Kuchling378586a2008-03-04 01:50:32 +0000506.. _pep-3101:
507
508PEP 3101: Advanced String Formatting
509=====================================================
510
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000511In Python 3.0, the `%` operator is supplemented by a more powerful
512string formatting method, :meth:`format`. Support for the
513:meth:`format` method has been backported to Python 2.6.
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000514
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000515In 2.6, both 8-bit and Unicode strings have a `.format()` method that
516treats the string as a template and takes the arguments to be formatted.
517The formatting template uses curly brackets (`{`, `}`) as special characters::
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000518
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000519 # Substitute positional argument 0 into the string.
520 "User ID: {0}".format("root") -> "User ID: root"
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000521
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000522 # Use the named keyword arguments
523 uid = 'root'
524
525 'User ID: {uid} Last seen: {last_login}'.format(uid='root',
526 last_login = '5 Mar 2008 07:20') ->
527 'User ID: root Last seen: 5 Mar 2008 07:20'
528
529Curly brackets can be escaped by doubling them::
530
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000531 format("Empty dict: {{}}") -> "Empty dict: {}"
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000532
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000533Field names can be integers indicating positional arguments, such as
534``{0}``, ``{1}``, etc. or names of keyword arguments. You can also
535supply compound field names that read attributes or access dictionary keys::
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000536
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000537 import sys
538 'Platform: {0.platform}\nPython version: {0.version}'.format(sys) ->
539 'Platform: darwin\n
540 Python version: 2.6a1+ (trunk:61261M, Mar 5 2008, 20:29:41) \n
541 [GCC 4.0.1 (Apple Computer, Inc. build 5367)]'
542
543 import mimetypes
544 'Content-type: {0[.mp4]}'.format(mimetypes.types_map) ->
545 'Content-type: video/mp4'
546
547Note that when using dictionary-style notation such as ``[.mp4]``, you
548don't need to put any quotation marks around the string; it will look
549up the value using ``.mp4`` as the key. Strings beginning with a
550number will be converted to an integer. You can't write more
551complicated expressions inside a format string.
552
553So far we've shown how to specify which field to substitute into the
554resulting string. The precise formatting used is also controllable by
Georg Brandl859043c2008-03-21 17:19:29 +0000555adding a colon followed by a format specifier. For example::
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000556
557 # Field 0: left justify, pad to 15 characters
558 # Field 1: right justify, pad to 6 characters
559 fmt = '{0:15} ${1:>6}'
560 fmt.format('Registration', 35) ->
561 'Registration $ 35'
562 fmt.format('Tutorial', 50) ->
563 'Tutorial $ 50'
564 fmt.format('Banquet', 125) ->
565 'Banquet $ 125'
566
Georg Brandl859043c2008-03-21 17:19:29 +0000567Format specifiers can reference other fields through nesting::
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000568
569 fmt = '{0:{1}}'
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000570 fmt.format('Invoice #1234', 15) ->
571 'Invoice #1234 '
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +0000572 width = 35
573 fmt.format('Invoice #1234', width) ->
574 'Invoice #1234 '
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000575
576The alignment of a field within the desired width can be specified:
577
578================ ============================================
579Character Effect
580================ ============================================
581< (default) Left-align
582> Right-align
583^ Center
584= (For numeric types only) Pad after the sign.
585================ ============================================
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000586
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +0000587Format specifiers can also include a presentation type, which
588controls how the value is formatted. For example, floating-point numbers
589can be formatted as a general number or in exponential notation:
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000590
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +0000591 >>> '{0:g}'.format(3.75)
592 '3.75'
593 >>> '{0:e}'.format(3.75)
594 '3.750000e+00'
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000595
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +0000596A variety of presentation types are available. Consult the 2.6
597documentation for a complete list (XXX add link, once it's in the 2.6
598docs), but here's a sample::
599
600 'b' - Binary. Outputs the number in base 2.
601 'c' - Character. Converts the integer to the corresponding
602 Unicode character before printing.
603 'd' - Decimal Integer. Outputs the number in base 10.
604 'o' - Octal format. Outputs the number in base 8.
605 'x' - Hex format. Outputs the number in base 16, using lower-
606 case letters for the digits above 9.
607 'e' - Exponent notation. Prints the number in scientific
608 notation using the letter 'e' to indicate the exponent.
609 'g' - General format. This prints the number as a fixed-point
610 number, unless the number is too large, in which case
611 it switches to 'e' exponent notation.
612 'n' - Number. This is the same as 'g', except that it uses the
613 current locale setting to insert the appropriate
614 number separator characters.
615 '%' - Percentage. Multiplies the number by 100 and displays
616 in fixed ('f') format, followed by a percent sign.
617
618Classes and types can define a __format__ method to control how they're
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000619formatted. It receives a single argument, the format specifier::
620
621 def __format__(self, format_spec):
622 if isinstance(format_spec, unicode):
623 return unicode(str(self))
624 else:
625 return str(self)
626
627There's also a format() built-in that will format a single value. It calls
628the type's :meth:`__format__` method with the provided specifier::
629
630 >>> format(75.6564, '.2f')
631 '75.66'
632
633.. seealso::
634
635 :pep:`3101` - Advanced String Formatting
636 PEP written by Talin.
Andrew M. Kuchling378586a2008-03-04 01:50:32 +0000637
638.. ======================================================================
639
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000640.. _pep-3105:
641
642PEP 3105: ``print`` As a Function
643=====================================================
644
645The ``print`` statement becomes the :func:`print` function in Python 3.0.
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000646Making :func:`print` a function makes it easier to change
647by doing 'def print(...)' or importing a new function from somewhere else.
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000648
649Python 2.6 has a ``__future__`` import that removes ``print`` as language
650syntax, letting you use the functional form instead. For example::
651
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000652 from __future__ import print_function
653 print('# of entries', len(dictionary), file=sys.stderr)
654
655The signature of the new function is::
656
657 def print(*args, sep=' ', end='\n', file=None)
658
659The parameters are:
660
661 * **args**: positional arguments whose values will be printed out.
662 * **sep**: the separator, which will be printed between arguments.
663 * **end**: the ending text, which will be printed after all of the
664 arguments have been output.
665 * **file**: the file object to which the output will be sent.
666
667.. seealso::
668
Eric Smith33dd0942008-03-20 23:04:04 +0000669 :pep:`3105` - Make print a function
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +0000670 PEP written by Georg Brandl.
671
672.. ======================================================================
673
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000674.. _pep-3110:
675
676PEP 3110: Exception-Handling Changes
677=====================================================
678
679One error that Python programmers occasionally make
680is the following::
681
682 try:
683 ...
684 except TypeError, ValueError:
685 ...
686
687The author is probably trying to catch both
688:exc:`TypeError` and :exc:`ValueError` exceptions, but this code
689actually does something different: it will catch
690:exc:`TypeError` and bind the resulting exception object
691to the local name ``"ValueError"``. The correct code
692would have specified a tuple::
693
694 try:
695 ...
696 except (TypeError, ValueError):
697 ...
698
699This error is possible because the use of the comma here is ambiguous:
700does it indicate two different nodes in the parse tree, or a single
701node that's a tuple.
702
703Python 3.0 changes the syntax to make this unambiguous by replacing
704the comma with the word "as". To catch an exception and store the
705exception object in the variable ``exc``, you must write::
706
707 try:
708 ...
709 except TypeError as exc:
710 ...
711
712Python 3.0 will only support the use of "as", and therefore interprets
713the first example as catching two different exceptions. Python 2.6
714supports both the comma and "as", so existing code will continue to
715work.
716
717.. seealso::
718
719 :pep:`3110` - Catching Exceptions in Python 3000
720 PEP written and implemented by Collin Winter.
721
Georg Brandlb19be572007-12-29 10:57:00 +0000722.. ======================================================================
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000723
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000724.. _pep-3112:
725
726PEP 3112: Byte Literals
727=====================================================
728
729Python 3.0 adopts Unicode as the language's fundamental string type, and
730denotes 8-bit literals differently, either as ``b'string'``
731or using a :class:`bytes` constructor. For future compatibility,
732Python 2.6 adds :class:`bytes` as a synonym for the :class:`str` type,
733and it also supports the ``b''`` notation.
734
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +0000735There's also a ``__future__`` import that causes all string literals
736to become Unicode strings. This means that ``\u`` escape sequences
Benjamin Peterson83343302008-05-04 03:05:49 +0000737can be used to include Unicode characters::
738
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +0000739
Andrew M. Kuchlingda950eb2008-04-13 22:39:12 +0000740 from __future__ import unicode_literals
741
742 s = ('\u751f\u3080\u304e\u3000\u751f\u3054'
743 '\u3081\u3000\u751f\u305f\u307e\u3054')
744
745 print len(s) # 12 Unicode characters
746
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +0000747
Benjamin Peterson83343302008-05-04 03:05:49 +0000748
Andrew M. Kuchling3710a132008-03-05 00:44:41 +0000749.. seealso::
750
751 :pep:`3112` - Bytes literals in Python 3000
752 PEP written by Jason Orendorff; backported to 2.6 by Christian Heimes.
753
754.. ======================================================================
755
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +0000756.. _pep-3116:
757
758PEP 3116: New I/O Library
759=====================================================
760
Andrew M. Kuchlingabf8e012008-04-08 21:22:53 +0000761Python's built-in file objects support a number of methods, but
762file-like objects don't necessarily support all of them. Objects that
763imitate files usually support :meth:`read` and :meth:`write`, but they
764may not support :meth:`readline`. Python 3.0 introduces a layered I/O
765library in the :mod:`io` module that separates buffering and
766text-handling features from the fundamental read and write operations.
767
768There are three levels of abstract base classes provided by
769the :mod:`io` module:
770
771* :class:`RawIOBase`: defines raw I/O operations: :meth:`read`,
772 :meth:`readinto`,
773 :meth:`write`, :meth:`seek`, :meth:`tell`, :meth:`truncate`,
774 and :meth:`close`.
775 Most of the methods of this class will often map to a single system call.
776 There are also :meth:`readable`, :meth:`writable`, and :meth:`seekable`
777 methods for determining what operations a given object will allow.
778
779 Python 3.0 has concrete implementations of this class for files and
780 sockets, but Python 2.6 hasn't restructured its file and socket objects
781 in this way.
782
783 .. XXX should 2.6 register them in io.py?
784
785* :class:`BufferedIOBase`: is an abstract base class that
786 buffers data in memory to reduce the number of
787 system calls used, making I/O processing more efficient.
788 It supports all of the methods of :class:`RawIOBase`,
789 and adds a :attr:`raw` attribute holding the underlying raw object.
790
791 There are four concrete classes implementing this ABC:
792 :class:`BufferedWriter` and
793 :class:`BufferedReader` for objects that only support
794 writing or reading and don't support random access,
795 :class:`BufferedRandom` for objects that support the :meth:`seek` method
796 for random access,
797 and :class:`BufferedRWPair` for objects such as TTYs that have
798 both read and write operations that act upon unconnected streams of data.
799
800* :class:`TextIOBase`: Provides functions for reading and writing
801 strings (remember, strings will be Unicode in Python 3.0),
802 and supporting universal newlines. :class:`TextIOBase` defines
803 the :meth:`readline` method and supports iteration upon
804 objects.
805
806 There are two concrete implementations. :class:`TextIOWrapper`
807 wraps a buffered I/O object, supporting all of the methods for
808 text I/O and adding a :attr:`buffer` attribute for access
809 to the underlying object. :class:`StringIO` simply buffers
810 everything in memory without ever writing anything to disk.
811
812 (In current 2.6 alpha releases, :class:`io.StringIO` is implemented in
813 pure Python, so it's pretty slow. You should therefore stick with the
814 existing :mod:`StringIO` module or :mod:`cStringIO` for now. At some
815 point Python 3.0's :mod:`io` module will be rewritten into C for speed,
816 and perhaps the C implementation will be backported to the 2.x releases.)
817
818 .. XXX check before final release: is io.py still written in Python?
819
820In Python 2.6, the underlying implementations haven't been
821restructured to build on top of the :mod:`io` module's classes. The
822module is being provided to make it easier to write code that's
823forward-compatible with 3.0, and to save developers the effort of writing
824their own implementations of buffering and text I/O.
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +0000825
826.. seealso::
827
828 :pep:`3116` - New I/O
829 PEP written by Daniel Stutzbach, Mike Verdone, and Guido van Rossum.
Andrew M. Kuchling04f58762008-04-15 02:24:15 +0000830 Code by Guido van Rossum, Georg Brandl, Walter Doerwald,
831 Jeremy Hylton, Martin von Loewis, Tony Lownds, and others.
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +0000832
833.. ======================================================================
834
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +0000835.. _pep-3118:
836
837PEP 3118: Revised Buffer Protocol
838=====================================================
839
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000840The buffer protocol is a C-level API that lets Python types
841exchange pointers into their internal representations. A
842memory-mapped file can be viewed as a buffer of characters, for
843example, and this lets another module such as :mod:`re`
844treat memory-mapped files as a string of characters to be searched.
845
846The primary users of the buffer protocol are numeric-processing
847packages such as NumPy, which can expose the internal representation
848of arrays so that callers can write data directly into an array instead
849of going through a slower API. This PEP updates the buffer protocol in light of experience
850from NumPy development, adding a number of new features
851such as indicating the shape of an array,
852locking memory .
853
854The most important new C API function is
855``PyObject_GetBuffer(PyObject *obj, Py_buffer *view, int flags)``, which
856takes an object and a set of flags, and fills in the
857``Py_buffer`` structure with information
858about the object's memory representation. Objects
859can use this operation to lock memory in place
860while an external caller could be modifying the contents,
861so there's a corresponding
862``PyObject_ReleaseBuffer(PyObject *obj, Py_buffer *view)`` to
863indicate that the external caller is done.
864
865The **flags** argument to :cfunc:`PyObject_GetBuffer` specifies
866constraints upon the memory returned. Some examples are:
867
868 * :const:`PyBUF_WRITABLE` indicates that the memory must be writable.
869
870 * :const:`PyBUF_LOCK` requests a read-only or exclusive lock on the memory.
871
872 * :const:`PyBUF_C_CONTIGUOUS` and :const:`PyBUF_F_CONTIGUOUS`
873 requests a C-contiguous (last dimension varies the fastest) or
874 Fortran-contiguous (first dimension varies the fastest) layout.
875
876.. XXX this feature is not in 2.6 docs yet
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +0000877
878.. seealso::
879
880 :pep:`3118` - Revising the buffer protocol
Andrew M. Kuchling217057f2008-04-05 15:57:46 +0000881 PEP written by Travis Oliphant and Carl Banks; implemented by
882 Travis Oliphant.
883
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +0000884
885.. ======================================================================
886
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000887.. _pep-3119:
888
889PEP 3119: Abstract Base Classes
890=====================================================
891
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000892Some object-oriented languages such as Java support interfaces: declarations
893that a class has a given set of methods or supports a given access protocol.
894Abstract Base Classes (or ABCs) are an equivalent feature for Python. The ABC
895support consists of an :mod:`abc` module containing a metaclass called
896:class:`ABCMeta`, special handling
897of this metaclass by the :func:`isinstance` and :func:`issubclass` built-ins,
898and a collection of basic ABCs that the Python developers think will be widely
899useful.
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +0000900
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000901Let's say you have a particular class and wish to know whether it supports
902dictionary-style access. The phrase "dictionary-style" is vague, however.
903It probably means that accessing items with ``obj[1]`` works.
904Does it imply that setting items with ``obj[2] = value`` works?
905Or that the object will have :meth:`keys`, :meth:`values`, and :meth:`items`
906methods? What about the iterative variants such as :meth:`iterkeys`? :meth:`copy`
907and :meth:`update`? Iterating over the object with :func:`iter`?
Andrew M. Kuchling3b554702008-01-04 02:31:40 +0000908
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000909Python 2.6 includes a number of different ABCs in the :mod:`collections`
910module. :class:`Iterable` indicates that a class defines :meth:`__iter__`,
911and :class:`Container` means the class supports ``x in y`` expressions
912by defining a :meth:`__contains__` method. The basic dictionary interface of
913getting items, setting items, and
914:meth:`keys`, :meth:`values`, and :meth:`items`, is defined by the
915:class:`MutableMapping` ABC.
Andrew M. Kuchling3b554702008-01-04 02:31:40 +0000916
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000917You can derive your own classes from a particular ABC
918to indicate they support that ABC's interface::
Andrew M. Kuchling3b554702008-01-04 02:31:40 +0000919
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000920 import collections
921
922 class Storage(collections.MutableMapping):
923 ...
Andrew M. Kuchling3b554702008-01-04 02:31:40 +0000924
Andrew M. Kuchling3b554702008-01-04 02:31:40 +0000925
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000926Alternatively, you could write the class without deriving from
927the desired ABC and instead register the class by
928calling the ABC's :meth:`register` method::
Andrew M. Kuchling3b554702008-01-04 02:31:40 +0000929
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000930 import collections
931
932 class Storage:
933 ...
934
935 collections.MutableMapping.register(Storage)
936
937For classes that you write, deriving from the ABC is probably clearer.
938The :meth:`register` method is useful when you've written a new
939ABC that can describe an existing type or class, or if you want
940to declare that some third-party class implements an ABC.
941For example, if you defined a :class:`PrintableType` ABC,
942it's legal to do:
Andrew M. Kuchling73835bd2008-01-04 18:24:41 +0000943
Andrew M. Kuchling21852412008-04-05 18:15:30 +0000944 # Register Python's types
945 PrintableType.register(int)
946 PrintableType.register(float)
947 PrintableType.register(str)
948
949Classes should obey the semantics specified by an ABC, but
950Python can't check this; it's up to the class author to
951understand the ABC's requirements and to implement the code accordingly.
952
953To check whether an object supports a particular interface, you can
954now write::
955
956 def func(d):
957 if not isinstance(d, collections.MutableMapping):
958 raise ValueError("Mapping object expected, not %r" % d)
959
960(Don't feel that you must now begin writing lots of checks as in the
961above example. Python has a strong tradition of duck-typing, where
962explicit type-checking isn't done and code simply calls methods on
963an object, trusting that those methods will be there and raising an
964exception if they aren't. Be judicious in checking for ABCs
965and only do it where it helps.)
966
967You can write your own ABCs by using ``abc.ABCMeta`` as the
968metaclass in a class definition::
969
970 from abc import ABCMeta
971
972 class Drawable():
973 __metaclass__ = ABCMeta
974
975 def draw(self, x, y, scale=1.0):
976 pass
977
978 def draw_doubled(self, x, y):
979 self.draw(x, y, scale=2.0)
980
981
982 class Square(Drawable):
983 def draw(self, x, y, scale):
984 ...
985
986
987In the :class:`Drawable` ABC above, the :meth:`draw_doubled` method
988renders the object at twice its size and can be implemented in terms
989of other methods described in :class:`Drawable`. Classes implementing
990this ABC therefore don't need to provide their own implementation
991of :meth:`draw_doubled`, though they can do so. An implementation
992of :meth:`draw` is necessary, though; the ABC can't provide
993a useful generic implementation. You
994can apply the ``@abstractmethod`` decorator to methods such as
995:meth:`draw` that must be implemented; Python will
996then raise an exception for classes that
997don't define the method::
998
999 class Drawable():
1000 __metaclass__ = ABCMeta
1001
1002 @abstractmethod
1003 def draw(self, x, y, scale):
1004 pass
1005
1006Note that the exception is only raised when you actually
1007try to create an instance of a subclass without the method::
1008
1009 >>> s=Square()
1010 Traceback (most recent call last):
1011 File "<stdin>", line 1, in <module>
1012 TypeError: Can't instantiate abstract class Square with abstract methods draw
1013 >>>
1014
1015Abstract data attributes can be declared using the ``@abstractproperty`` decorator::
1016
Andrew M. Kuchling73835bd2008-01-04 18:24:41 +00001017 @abstractproperty
1018 def readonly(self):
1019 return self._x
Andrew M. Kuchling3b554702008-01-04 02:31:40 +00001020
Andrew M. Kuchling21852412008-04-05 18:15:30 +00001021Subclasses must then define a :meth:`readonly` property
Andrew M. Kuchling3b554702008-01-04 02:31:40 +00001022
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001023.. seealso::
1024
1025 :pep:`3119` - Introducing Abstract Base Classes
1026 PEP written by Guido van Rossum and Talin.
Andrew M. Kuchling21852412008-04-05 18:15:30 +00001027 Implemented by Guido van Rossum.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001028 Backported to 2.6 by Benjamin Aranguren, with Alex Martelli.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001029
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001030.. ======================================================================
1031
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001032.. _pep-3127:
1033
1034PEP 3127: Integer Literal Support and Syntax
1035=====================================================
1036
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001037Python 3.0 changes the syntax for octal (base-8) integer literals,
1038which are now prefixed by "0o" or "0O" instead of a leading zero, and
1039adds support for binary (base-2) integer literals, signalled by a "0b"
1040or "0B" prefix.
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001041
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001042Python 2.6 doesn't drop support for a leading 0 signalling
1043an octal number, but it does add support for "0o" and "0b"::
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001044
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001045 >>> 0o21, 2*8 + 1
1046 (17, 17)
1047 >>> 0b101111
1048 47
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001049
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001050The :func:`oct` built-in still returns numbers
1051prefixed with a leading zero, and a new :func:`bin`
1052built-in returns the binary representation for a number::
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001053
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001054 >>> oct(42)
1055 '052'
1056 >>> bin(173)
1057 '0b10101101'
1058
1059The :func:`int` and :func:`long` built-ins will now accept the "0o"
1060and "0b" prefixes when base-8 or base-2 are requested, or when the
1061**base** argument is zero (meaning the base used is determined from
1062the string):
1063
1064 >>> int ('0o52', 0)
1065 42
1066 >>> int('1101', 2)
1067 13
1068 >>> int('0b1101', 2)
1069 13
1070 >>> int('0b1101', 0)
1071 13
1072
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001073
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001074.. seealso::
1075
1076 :pep:`3127` - Integer Literal Support and Syntax
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001077 PEP written by Patrick Maupin; backported to 2.6 by
1078 Eric Smith.
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001079
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001080.. ======================================================================
1081
1082.. _pep-3129:
1083
1084PEP 3129: Class Decorators
1085=====================================================
1086
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001087Decorators have been extended from functions to classes. It's now legal to
1088write::
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001089
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001090 @foo
1091 @bar
1092 class A:
1093 pass
1094
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001095This is equivalent to::
1096
1097 class A:
1098 pass
1099
1100 A = foo(bar(A))
1101
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001102.. seealso::
1103
1104 :pep:`3129` - Class Decorators
1105 PEP written by Collin Winter.
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001106
1107.. ======================================================================
1108
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001109.. _pep-3141:
1110
1111PEP 3141: A Type Hierarchy for Numbers
1112=====================================================
1113
1114In Python 3.0, several abstract base classes for numeric types,
Andrew M. Kuchlingd2219562008-01-17 12:00:15 +00001115inspired by Scheme's numeric tower, are being added.
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001116This change was backported to 2.6 as the :mod:`numbers` module.
1117
1118The most general ABC is :class:`Number`. It defines no operations at
1119all, and only exists to allow checking if an object is a number by
1120doing ``isinstance(obj, Number)``.
1121
1122Numbers are further divided into :class:`Exact` and :class:`Inexact`.
1123Exact numbers can represent values precisely and operations never
1124round off the results or introduce tiny errors that may break the
Georg Brandl907a7202008-02-22 12:31:45 +00001125commutativity and associativity properties; inexact numbers may
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001126perform such rounding or introduce small errors. Integers, long
1127integers, and rational numbers are exact, while floating-point
1128and complex numbers are inexact.
1129
1130:class:`Complex` is a subclass of :class:`Number`. Complex numbers
1131can undergo the basic operations of addition, subtraction,
1132multiplication, division, and exponentiation, and you can retrieve the
1133real and imaginary parts and obtain a number's conjugate. Python's built-in
1134complex type is an implementation of :class:`Complex`.
1135
1136:class:`Real` further derives from :class:`Complex`, and adds
1137operations that only work on real numbers: :func:`floor`, :func:`trunc`,
1138rounding, taking the remainder mod N, floor division,
1139and comparisons.
1140
1141:class:`Rational` numbers derive from :class:`Real`, have
1142:attr:`numerator` and :attr:`denominator` properties, and can be
Mark Dickinsond058cd22008-02-10 21:29:51 +00001143converted to floats. Python 2.6 adds a simple rational-number class,
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001144:class:`Fraction`, in the :mod:`fractions` module. (It's called
1145:class:`Fraction` instead of :class:`Rational` to avoid
1146a name clash with :class:`numbers.Rational`.)
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001147
1148:class:`Integral` numbers derive from :class:`Rational`, and
1149can be shifted left and right with ``<<`` and ``>>``,
1150combined using bitwise operations such as ``&`` and ``|``,
1151and can be used as array indexes and slice boundaries.
1152
Andrew M. Kuchlingd2219562008-01-17 12:00:15 +00001153In Python 3.0, the PEP slightly redefines the existing built-ins
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001154:func:`round`, :func:`math.floor`, :func:`math.ceil`, and adds a new
1155one, :func:`math.trunc`, that's been backported to Python 2.6.
1156:func:`math.trunc` rounds toward zero, returning the closest
Andrew M. Kuchlingd2219562008-01-17 12:00:15 +00001157:class:`Integral` that's between the function's argument and zero.
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001158
Andrew M. Kuchlingd2219562008-01-17 12:00:15 +00001159.. seealso::
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001160
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001161 :pep:`3141` - A Type Hierarchy for Numbers
1162 PEP written by Jeffrey Yasskin.
1163
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +00001164 `Scheme's numerical tower <http://www.gnu.org/software/guile/manual/html_node/Numerical-Tower.html#Numerical-Tower>`__, from the Guile manual.
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001165
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +00001166 `Scheme's number datatypes <http://schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-9.html#%_sec_6.2>`__ from the R5RS Scheme specification.
Andrew M. Kuchlingd2219562008-01-17 12:00:15 +00001167
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001168
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001169The :mod:`fractions` Module
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001170--------------------------------------------------
1171
1172To fill out the hierarchy of numeric types, a rational-number class
Mark Dickinsond058cd22008-02-10 21:29:51 +00001173has been added as the :mod:`fractions` module. Rational numbers are
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001174represented as a fraction, and can exactly represent
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001175numbers such as two-thirds that floating-point numbers can only
1176approximate.
1177
Mark Dickinsond058cd22008-02-10 21:29:51 +00001178The :class:`Fraction` constructor takes two :class:`Integral` values
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001179that will be the numerator and denominator of the resulting fraction. ::
1180
Mark Dickinsond058cd22008-02-10 21:29:51 +00001181 >>> from fractions import Fraction
1182 >>> a = Fraction(2, 3)
1183 >>> b = Fraction(2, 5)
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001184 >>> float(a), float(b)
1185 (0.66666666666666663, 0.40000000000000002)
1186 >>> a+b
Mark Dickinsoncd873fc2008-02-11 03:11:55 +00001187 Fraction(16, 15)
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001188 >>> a/b
Mark Dickinsoncd873fc2008-02-11 03:11:55 +00001189 Fraction(5, 3)
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001190
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001191To help in converting floating-point numbers to rationals,
1192the float type now has a :meth:`as_integer_ratio()` method that returns
1193the numerator and denominator for a fraction that evaluates to the same
1194floating-point value::
1195
1196 >>> (2.5) .as_integer_ratio()
1197 (5, 2)
1198 >>> (3.1415) .as_integer_ratio()
1199 (7074029114692207L, 2251799813685248L)
1200 >>> (1./3) .as_integer_ratio()
1201 (6004799503160661L, 18014398509481984L)
1202
1203Note that values that can only be approximated by floating-point
1204numbers, such as 1./3, are not simplified to the number being
1205approximated; the fraction attempts to match the floating-point value
1206**exactly**.
1207
Mark Dickinsond058cd22008-02-10 21:29:51 +00001208The :mod:`fractions` module is based upon an implementation by Sjoerd
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001209Mullender that was in Python's :file:`Demo/classes/` directory for a
1210long time. This implementation was significantly updated by Jeffrey
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001211Yasskin.
Andrew M. Kuchlingaa355542008-01-16 03:17:25 +00001212
Georg Brandl8ec7f652007-08-15 14:28:01 +00001213Other Language Changes
1214======================
1215
1216Here are all of the changes that Python 2.6 makes to the core Python language.
1217
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001218* When calling a function using the ``**`` syntax to provide keyword
1219 arguments, you are no longer required to use a Python dictionary;
1220 any mapping will now work::
1221
1222 >>> def f(**kw):
1223 ... print sorted(kw)
1224 ...
1225 >>> ud=UserDict.UserDict()
1226 >>> ud['a'] = 1
1227 >>> ud['b'] = 'string'
1228 >>> f(**ud)
1229 ['a', 'b']
1230
Andrew M. Kuchlingc157c9c2008-04-09 22:28:43 +00001231 (Contributed by Alexander Belopolsky; :issue:`1686487`.)
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001232
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001233* Tuples now have an :meth:`index` method matching the list type's
1234 :meth:`index` method::
1235
1236 >>> t = (0,1,2,3,4)
1237 >>> t.index(3)
1238 3
1239
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001240* The built-in types now have improved support for extended slicing syntax,
1241 where various combinations of ``(start, stop, step)`` are supplied.
1242 Previously, the support was partial and certain corner cases wouldn't work.
1243 (Implemented by Thomas Wouters.)
1244
Georg Brandlb19be572007-12-29 10:57:00 +00001245 .. Revision 57619
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001246
Christian Heimesff6cc6b2008-01-17 23:01:44 +00001247* Properties now have three attributes, :attr:`getter`,
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001248 :attr:`setter` and :attr:`deleter`, that are useful shortcuts for
Christian Heimesff6cc6b2008-01-17 23:01:44 +00001249 adding or modifying a getter, setter or deleter function to an
1250 existing property. You would use them like this::
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001251
1252 class C(object):
1253 @property
1254 def x(self):
1255 return self._x
1256
1257 @x.setter
1258 def x(self, value):
1259 self._x = value
1260
1261 @x.deleter
1262 def x(self):
1263 del self._x
1264
Christian Heimesff6cc6b2008-01-17 23:01:44 +00001265 class D(C):
1266 @C.x.getter
1267 def x(self):
1268 return self._x * 2
1269
1270 @x.setter
1271 def x(self, value):
1272 self._x = value / 2
1273
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001274
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001275* C functions and methods that use
1276 :cfunc:`PyComplex_AsCComplex` will now accept arguments that
1277 have a :meth:`__complex__` method. In particular, the functions in the
1278 :mod:`cmath` module will now accept objects with this method.
1279 This is a backport of a Python 3.0 change.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001280 (Contributed by Mark Dickinson; :issue:`1675423`.)
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001281
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001282 A numerical nicety: when creating a complex number from two floats
1283 on systems that support signed zeros (-0 and +0), the
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001284 :func:`complex` constructor will now preserve the sign
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001285 of the zero. (:issue:`1507`)
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001286
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00001287* More floating-point features were also added. The :func:`float` function
1288 will now turn the strings ``+nan`` and ``-nan`` into the corresponding
Andrew M. Kuchling3b554702008-01-04 02:31:40 +00001289 IEEE 754 Not A Number values, and ``+inf`` and ``-inf`` into
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00001290 positive or negative infinity. This works on any platform with
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001291 IEEE 754 semantics. (Contributed by Christian Heimes; :issue:`1635`.)
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00001292
Andrew M. Kuchling3b554702008-01-04 02:31:40 +00001293 Other functions in the :mod:`math` module, :func:`isinf` and
1294 :func:`isnan`, return true if their floating-point argument is
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001295 infinite or Not A Number. (:issue:`1640`)
Georg Brandle1b8e9c2008-02-20 19:12:36 +00001296
Andrew M. Kuchling2cede392008-04-20 16:54:02 +00001297* The :mod:`math` module has seven new functions, and the existing
1298 functions have been improved to give more consistent behaviour
1299 across platforms, especially with respect to handling of
1300 floating-point exceptions and IEEE 754 special values.
1301 The new functions are:
1302
1303 * :func:`isinf` and :func:`isnan` determine whether a given float is
1304 a (positive or negative) infinity or a NaN (Not a Number),
1305 respectively.
1306
1307 * ``copysign(x, y)`` copies the sign bit of an IEEE 754 number,
1308 returning the absolute value of *x* combined with the sign bit of
1309 *y*. For example, ``math.copysign(1, -0.0)`` returns -1.0.
1310 (Contributed by Christian Heimes.)
1311
1312 * The inverse hyperbolic functions :func:`acosh`, :func:`asinh` and
1313 :func:`atanh`.
1314
1315 * The function :func:`log1p`, returning the natural logarithm of
1316 *1+x* (base *e*).
1317
1318 There's also a new :func:`trunc` function as a result of the
1319 backport of `PEP 3141's type hierarchy for numbers <#pep-3141>`__.
1320
1321 The existing math functions have been modified to follow the
1322 recommendations of the C99 standard with respect to special values
1323 whenever possible. For example, ``sqrt(-1.)`` should now give a
1324 :exc:`ValueError` across (nearly) all platforms, while
1325 ``sqrt(float('NaN'))`` should return a NaN on all IEEE 754
1326 platforms. Where Annex 'F' of the C99 standard recommends signaling
1327 'divide-by-zero' or 'invalid', Python will raise :exc:`ValueError`.
1328 Where Annex 'F' of the C99 standard recommends signaling 'overflow',
1329 Python will raise :exc:`OverflowError`. (See :issue:`711019`,
1330 :issue:`1640`.)
1331
1332 (Contributed by Christian Heimes and Mark Dickinson.)
Andrew M. Kuchling3b554702008-01-04 02:31:40 +00001333
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001334* Changes to the :class:`Exception` interface
1335 as dictated by :pep:`352` continue to be made. For 2.6,
1336 the :attr:`message` attribute is being deprecated in favor of the
1337 :attr:`args` attribute.
1338
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001339* The :exc:`GeneratorExit` exception now subclasses
1340 :exc:`BaseException` instead of :exc:`Exception`. This means
1341 that an exception handler that does ``except Exception:``
1342 will not inadvertently catch :exc:`GeneratorExit`.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001343 (Contributed by Chad Austin; :issue:`1537`.)
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001344
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001345* Generator objects now have a :attr:`gi_code` attribute that refers to
1346 the original code object backing the generator.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001347 (Contributed by Collin Winter; :issue:`1473257`.)
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001348
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001349* The :func:`compile` built-in function now accepts keyword arguments
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001350 as well as positional parameters. (Contributed by Thomas Wouters;
1351 :issue:`1444529`.)
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001352
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00001353* The :func:`complex` constructor now accepts strings containing
1354 parenthesized complex numbers, letting ``complex(repr(cmplx))``
1355 will now round-trip values. For example, ``complex('(3+4j)')``
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001356 now returns the value (3+4j). (:issue:`1491866`)
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00001357
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001358* The string :meth:`translate` method now accepts ``None`` as the
1359 translation table parameter, which is treated as the identity
1360 transformation. This makes it easier to carry out operations
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001361 that only delete characters. (Contributed by Bengt Richter;
1362 :issue:`1193128`.)
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001363
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001364* The built-in :func:`dir` function now checks for a :meth:`__dir__`
1365 method on the objects it receives. This method must return a list
1366 of strings containing the names of valid attributes for the object,
1367 and lets the object control the value that :func:`dir` produces.
1368 Objects that have :meth:`__getattr__` or :meth:`__getattribute__`
Facundo Batistabd5b6232007-12-03 19:49:54 +00001369 methods can use this to advertise pseudo-attributes they will honor.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001370 (:issue:`1591665`)
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001371
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001372* Instance method objects have new attributes for the object and function
1373 comprising the method; the new synonym for :attr:`im_self` is
1374 :attr:`__self__`, and :attr:`im_func` is also available as :attr:`__func__`.
1375 The old names are still supported in Python 2.6; they're gone in 3.0.
1376
Georg Brandl8ec7f652007-08-15 14:28:01 +00001377* An obscure change: when you use the the :func:`locals` function inside a
1378 :keyword:`class` statement, the resulting dictionary no longer returns free
1379 variables. (Free variables, in this case, are variables referred to in the
1380 :keyword:`class` statement that aren't attributes of the class.)
1381
Georg Brandlb19be572007-12-29 10:57:00 +00001382.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00001383
1384
1385Optimizations
1386-------------
1387
Andrew M. Kuchling57ce0542008-04-21 02:14:24 +00001388* The :mod:`warnings` module has been rewritten in C. This makes
1389 it possible to invoke warnings from the parser, and may also
1390 make the interpreter's startup faster.
1391 (Contributed by Neal Norwitz and Brett Cannon; :issue:`1631171`.)
1392
Georg Brandlaf30b282008-01-15 06:55:56 +00001393* Type objects now have a cache of methods that can reduce
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001394 the amount of work required to find the correct method implementation
Andrew M. Kuchlinga01ed032008-01-15 01:55:32 +00001395 for a particular class; once cached, the interpreter doesn't need to
1396 traverse base classes to figure out the right method to call.
1397 The cache is cleared if a base class or the class itself is modified,
1398 so the cache should remain correct even in the face of Python's dynamic
1399 nature.
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001400 (Original optimization implemented by Armin Rigo, updated for
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001401 Python 2.6 by Kevin Jacobs; :issue:`1700288`.)
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001402
Andrew M. Kuchling3b554702008-01-04 02:31:40 +00001403* All of the functions in the :mod:`struct` module have been rewritten in
1404 C, thanks to work at the Need For Speed sprint.
1405 (Contributed by Raymond Hettinger.)
1406
Georg Brandl8ec7f652007-08-15 14:28:01 +00001407* Internally, a bit is now set in type objects to indicate some of the standard
1408 built-in types. This speeds up checking if an object is a subclass of one of
1409 these types. (Contributed by Neal Norwitz.)
1410
Andrew M. Kuchling57ce0542008-04-21 02:14:24 +00001411* Unicode strings now use faster code for detecting
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001412 whitespace and line breaks; this speeds up the :meth:`split` method
1413 by about 25% and :meth:`splitlines` by 35%.
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001414 (Contributed by Antoine Pitrou.) Memory usage is reduced
1415 by using pymalloc for the Unicode string's data.
1416
1417* The ``with`` statement now stores the :meth:`__exit__` method on the stack,
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +00001418 producing a small speedup. (Implemented by Jeffrey Yasskin.)
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001419
1420* To reduce memory usage, the garbage collector will now clear internal
1421 free lists when garbage-collecting the highest generation of objects.
1422 This may return memory to the OS sooner.
1423
Georg Brandl8ec7f652007-08-15 14:28:01 +00001424The net result of the 2.6 optimizations is that Python 2.6 runs the pystone
1425benchmark around XX% faster than Python 2.5.
1426
Georg Brandlb19be572007-12-29 10:57:00 +00001427.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00001428
Benjamin Peterson037d8292008-04-13 02:20:05 +00001429.. _new-26-interactive:
Andrew M. Kuchlingc161df62008-04-13 01:05:59 +00001430
1431Interactive Interpreter Changes
1432-------------------------------
1433
1434Two command-line options have been reserved for use by other Python
1435implementations. The :option:`-J` switch has been reserved for use by
1436Jython for Jython-specific options, such as ones that are passed to
1437the underlying JVM. :option:`-X` has been reserved for options
1438specific to a particular implementation of Python such as CPython,
1439Jython, or IronPython. If either option is used with Python 2.6, the
1440interpreter will report that the option isn't currently used.
1441
1442.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00001443
1444New, Improved, and Deprecated Modules
1445=====================================
1446
1447As usual, Python's standard library received a number of enhancements and bug
1448fixes. Here's a partial list of the most notable changes, sorted alphabetically
1449by module name. Consult the :file:`Misc/NEWS` file in the source tree for a more
1450complete list of changes, or look through the CVS logs for all the details.
1451
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001452* The :mod:`bsddb.dbshelve` module now uses the highest pickling protocol
1453 available, instead of restricting itself to protocol 1.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001454 (Contributed by W. Barnes; :issue:`1551443`.)
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001455
Andrew M. Kuchling2cede392008-04-20 16:54:02 +00001456* The :mod:`cmath` module underwent an extensive set of revisions,
1457 thanks to Mark Dickinson and Christian Heimes, that added some new
1458 features and greatly improved the accuracy of the computations.
Mark Dickinson53bd2e12008-04-19 20:31:16 +00001459
Andrew M. Kuchling2cede392008-04-20 16:54:02 +00001460 Five new functions were added:
Mark Dickinson53bd2e12008-04-19 20:31:16 +00001461
Andrew M. Kuchling2cede392008-04-20 16:54:02 +00001462 * :func:`polar` converts a complex number to polar form, returning
1463 the modulus and argument of that complex number.
Mark Dickinson53bd2e12008-04-19 20:31:16 +00001464
Andrew M. Kuchling2cede392008-04-20 16:54:02 +00001465 * :func:`rect` does the opposite, turning a (modulus, argument) pair
1466 back into the corresponding complex number.
1467
1468 * :func:`phase` returns the phase or argument of a complex number.
1469
1470 * :func:`isnan` returns True if either
1471 the real or imaginary part of its argument is a NaN.
1472
1473 * :func:`isinf` returns True if either the real or imaginary part of
1474 its argument is infinite.
1475
1476 The revisions also improved the numerical soundness of the
1477 :mod:`cmath` module. For all functions, the real and imaginary
1478 parts of the results are accurate to within a few units of least
1479 precision (ulps) whenever possible. See :issue:`1381` for the
1480 details. The branch cuts for :func:`asinh`, :func:`atanh`: and
1481 :func:`atan` have also been corrected.
1482
1483 The tests for the module have been greatly expanded; nearly 2000 new
1484 test cases exercise the algebraic functions.
Mark Dickinson53bd2e12008-04-19 20:31:16 +00001485
1486 On IEEE 754 platforms, the :mod:`cmath` module now handles IEEE 754
1487 special values and floating-point exceptions in a manner consistent
1488 with Annex 'G' of the C99 standard.
1489
Andrew M. Kuchling6d57c822007-10-23 20:55:47 +00001490* A new data type in the :mod:`collections` module: :class:`namedtuple(typename,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001491 fieldnames)` is a factory function that creates subclasses of the standard tuple
1492 whose fields are accessible by name as well as index. For example::
1493
Andrew M. Kuchling6d57c822007-10-23 20:55:47 +00001494 >>> var_type = collections.namedtuple('variable',
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001495 ... 'id name type size')
1496 # Names are separated by spaces or commas.
1497 # 'id, name, type, size' would also work.
Raymond Hettinger366523c2007-12-14 18:12:21 +00001498 >>> var_type._fields
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001499 ('id', 'name', 'type', 'size')
Georg Brandl8ec7f652007-08-15 14:28:01 +00001500
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001501 >>> var = var_type(1, 'frequency', 'int', 4)
1502 >>> print var[0], var.id # Equivalent
1503 1 1
1504 >>> print var[2], var.type # Equivalent
1505 int int
Raymond Hettinger366523c2007-12-14 18:12:21 +00001506 >>> var._asdict()
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001507 {'size': 4, 'type': 'int', 'id': 1, 'name': 'frequency'}
Raymond Hettingere9b9b352008-02-15 21:21:25 +00001508 >>> v2 = var._replace(name='amplitude')
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001509 >>> v2
1510 variable(id=1, name='amplitude', type='int', size=4)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001511
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001512 Where the new :class:`namedtuple` type proved suitable, the standard
1513 library has been modified to return them. For example,
1514 the :meth:`Decimal.as_tuple` method now returns a named tuple with
1515 :attr:`sign`, :attr:`digits`, and :attr:`exponent` fields.
1516
Georg Brandl8ec7f652007-08-15 14:28:01 +00001517 (Contributed by Raymond Hettinger.)
1518
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001519* Another change to the :mod:`collections` module is that the
Georg Brandle7d118a2007-12-08 11:05:05 +00001520 :class:`deque` type now supports an optional *maxlen* parameter;
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001521 if supplied, the deque's size will be restricted to no more
Georg Brandle7d118a2007-12-08 11:05:05 +00001522 than *maxlen* items. Adding more items to a full deque causes
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001523 old items to be discarded.
1524
1525 ::
1526
1527 >>> from collections import deque
1528 >>> dq=deque(maxlen=3)
1529 >>> dq
1530 deque([], maxlen=3)
1531 >>> dq.append(1) ; dq.append(2) ; dq.append(3)
1532 >>> dq
1533 deque([1, 2, 3], maxlen=3)
1534 >>> dq.append(4)
1535 >>> dq
1536 deque([2, 3, 4], maxlen=3)
1537
1538 (Contributed by Raymond Hettinger.)
1539
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001540* The :mod:`ctypes` module now supports a :class:`c_bool` datatype
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001541 that represents the C99 ``bool`` type. (Contributed by David Remahl;
1542 :issue:`1649190`.)
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001543
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001544 The :mod:`ctypes` string, buffer and array types also have improved
1545 support for extended slicing syntax,
1546 where various combinations of ``(start, stop, step)`` are supplied.
1547 (Implemented by Thomas Wouters.)
1548
Georg Brandlb19be572007-12-29 10:57:00 +00001549 .. Revision 57769
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001550
Georg Brandl8ec7f652007-08-15 14:28:01 +00001551* A new method in the :mod:`curses` module: for a window, :meth:`chgat` changes
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001552 the display characters for a certain number of characters on a single line.
Andrew M. Kuchling4a2762d2008-01-20 00:00:38 +00001553 (Contributed by Fabian Kreutz.)
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001554 ::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001555
1556 # Boldface text starting at y=0,x=21
1557 # and affecting the rest of the line.
1558 stdscr.chgat(0,21, curses.A_BOLD)
1559
Andrew M. Kuchling4a2762d2008-01-20 00:00:38 +00001560 The :class:`Textbox` class in the :mod:`curses.textpad` module
1561 now supports editing in insert mode as well as overwrite mode.
1562 Insert mode is enabled by supplying a true value for the *insert_mode*
1563 parameter when creating the :class:`Textbox` instance.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001564
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001565* The :mod:`datetime` module's :meth:`strftime` methods now support a
1566 ``%f`` format code that expands to the number of microseconds in the
1567 object, zero-padded on
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001568 the left to six places. (Contributed by Skip Montanaro; :issue:`1158`.)
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001569
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001570* The :mod:`decimal` module was updated to version 1.66 of
1571 `the General Decimal Specification <http://www2.hursley.ibm.com/decimal/decarith.html>`__. New features
1572 include some methods for some basic mathematical functions such as
1573 :meth:`exp` and :meth:`log10`::
1574
1575 >>> Decimal(1).exp()
1576 Decimal("2.718281828459045235360287471")
1577 >>> Decimal("2.7182818").ln()
1578 Decimal("0.9999999895305022877376682436")
1579 >>> Decimal(1000).log10()
1580 Decimal("3")
1581
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001582 The :meth:`as_tuple` method of :class:`Decimal` objects now returns a
1583 named tuple with :attr:`sign`, :attr:`digits`, and :attr:`exponent` fields.
1584
1585 (Implemented by Facundo Batista and Mark Dickinson. Named tuple
1586 support added by Raymond Hettinger.)
1587
1588* The :mod:`difflib` module's :class:`SequenceMatcher` class
1589 now returns named tuples representing matches.
1590 In addition to behaving like tuples, the returned values
1591 also have :attr:`a`, :attr:`b`, and :attr:`size` attributes.
1592 (Contributed by Raymond Hettinger.)
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001593
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001594* An optional ``timeout`` parameter was added to the
1595 :class:`ftplib.FTP` class constructor as well as the :meth:`connect`
1596 method, specifying a timeout measured in seconds. (Added by Facundo
Andrew M. Kuchling0c3f1682008-01-26 13:50:51 +00001597 Batista.) Also, the :class:`FTP` class's
1598 :meth:`storbinary` and :meth:`storlines`
1599 now take an optional *callback* parameter that will be called with
1600 each block of data after the data has been sent.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001601 (Contributed by Phil Schwartz; :issue:`1221598`.)
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001602
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001603* The :func:`reduce` built-in function is also available in the
1604 :mod:`functools` module. In Python 3.0, the built-in is dropped and it's
1605 only available from :mod:`functools`; currently there are no plans
1606 to drop the built-in in the 2.x series. (Patched by
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001607 Christian Heimes; :issue:`1739906`.)
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001608
Georg Brandl8ec7f652007-08-15 14:28:01 +00001609* The :func:`glob.glob` function can now return Unicode filenames if
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001610 a Unicode path was used and Unicode filenames are matched within the
1611 directory. (:issue:`1001604`)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001612
1613* The :mod:`gopherlib` module has been removed.
1614
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001615* A new function in the :mod:`heapq` module: ``merge(iter1, iter2, ...)``
1616 takes any number of iterables that return data *in sorted
1617 order*, and returns a new iterator that returns the contents of all
1618 the iterators, also in sorted order. For example::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001619
1620 heapq.merge([1, 3, 5, 9], [2, 8, 16]) ->
1621 [1, 2, 3, 5, 8, 9, 16]
1622
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001623 Another new function, ``heappushpop(heap, item)``,
1624 pushes *item* onto *heap*, then pops off and returns the smallest item.
1625 This is more efficient than making a call to :func:`heappush` and then
1626 :func:`heappop`.
1627
Georg Brandl8ec7f652007-08-15 14:28:01 +00001628 (Contributed by Raymond Hettinger.)
1629
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001630* An optional ``timeout`` parameter was added to the
1631 :class:`httplib.HTTPConnection` and :class:`HTTPSConnection`
1632 class constructors, specifying a timeout measured in seconds.
1633 (Added by Facundo Batista.)
1634
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001635* Most of the :mod:`inspect` module's functions, such as
1636 :func:`getmoduleinfo` and :func:`getargs`, now return named tuples.
1637 In addition to behaving like tuples, the elements of the return value
1638 can also be accessed as attributes.
1639 (Contributed by Raymond Hettinger.)
1640
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001641 Some new functions in the module include
1642 :func:`isgenerator`, :func:`isgeneratorfunction`,
1643 and :func:`isabstract`.
1644
1645* The :mod:`itertools` module gained several new functions.
1646
1647 ``izip_longest(iter1, iter2, ...[, fillvalue])`` makes tuples from
1648 each of the elements; if some of the iterables are shorter than
1649 others, the missing values are set to *fillvalue*. For example::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001650
1651 itertools.izip_longest([1,2,3], [1,2,3,4,5]) ->
1652 [(1, 1), (2, 2), (3, 3), (None, 4), (None, 5)]
1653
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001654 ``product(iter1, iter2, ..., [repeat=N])`` returns the Cartesian product
1655 of the supplied iterables, a set of tuples containing
1656 every possible combination of the elements returned from each iterable. ::
1657
1658 itertools.product([1,2,3], [4,5,6]) ->
1659 [(1, 4), (1, 5), (1, 6),
1660 (2, 4), (2, 5), (2, 6),
1661 (3, 4), (3, 5), (3, 6)]
1662
1663 The optional *repeat* keyword argument is used for taking the
1664 product of an iterable or a set of iterables with themselves,
1665 repeated *N* times. With a single iterable argument, *N*-tuples
1666 are returned::
1667
1668 itertools.product([1,2], repeat=3)) ->
1669 [(1, 1, 1), (1, 1, 2), (1, 2, 1), (1, 2, 2),
1670 (2, 1, 1), (2, 1, 2), (2, 2, 1), (2, 2, 2)]
1671
1672 With two iterables, *2N*-tuples are returned. ::
1673
1674 itertools(product([1,2], [3,4], repeat=2) ->
1675 [(1, 3, 1, 3), (1, 3, 1, 4), (1, 3, 2, 3), (1, 3, 2, 4),
1676 (1, 4, 1, 3), (1, 4, 1, 4), (1, 4, 2, 3), (1, 4, 2, 4),
1677 (2, 3, 1, 3), (2, 3, 1, 4), (2, 3, 2, 3), (2, 3, 2, 4),
1678 (2, 4, 1, 3), (2, 4, 1, 4), (2, 4, 2, 3), (2, 4, 2, 4)]
1679
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00001680 ``combinations(iterable, r)`` returns sub-sequences of length *r* from
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001681 the elements of *iterable*. ::
1682
1683 itertools.combinations('123', 2) ->
1684 [('1', '2'), ('1', '3'), ('2', '3')]
1685
1686 itertools.combinations('123', 3) ->
1687 [('1', '2', '3')]
1688
1689 itertools.combinations('1234', 3) ->
1690 [('1', '2', '3'), ('1', '2', '4'), ('1', '3', '4'),
1691 ('2', '3', '4')]
1692
Andrew M. Kuchling1d136bb2008-03-06 01:36:27 +00001693 ``permutations(iter[, r])`` returns all the permutations of length *r* of
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001694 the iterable's elements. If *r* is not specified, it will default to the
1695 number of elements produced by the iterable.
1696
Andrew M. Kuchling1d136bb2008-03-06 01:36:27 +00001697 itertools.permutations([1,2,3,4], 2) ->
1698 [(1, 2), (1, 3), (1, 4),
1699 (2, 1), (2, 3), (2, 4),
1700 (3, 1), (3, 2), (3, 4),
1701 (4, 1), (4, 2), (4, 3)]
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001702
Andrew M. Kuchlingabf8e012008-04-08 21:22:53 +00001703 ``itertools.chain(*iterables)`` is an existing function in
Andrew M. Kuchling1d136bb2008-03-06 01:36:27 +00001704 :mod:`itertools` that gained a new constructor in Python 2.6.
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001705 ``itertools.chain.from_iterable(iterable)`` takes a single
1706 iterable that should return other iterables. :func:`chain` will
1707 then return all the elements of the first iterable, then
1708 all the elements of the second, and so on. ::
1709
1710 chain.from_iterable([[1,2,3], [4,5,6]]) ->
1711 [1, 2, 3, 4, 5, 6]
1712
1713 (All contributed by Raymond Hettinger.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001714
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001715* The :mod:`logging` module's :class:`FileHandler` class
1716 and its subclasses :class:`WatchedFileHandler`, :class:`RotatingFileHandler`,
1717 and :class:`TimedRotatingFileHandler` now
1718 have an optional *delay* parameter to its constructor. If *delay*
1719 is true, opening of the log file is deferred until the first
1720 :meth:`emit` call is made. (Contributed by Vinay Sajip.)
1721
Georg Brandl8ec7f652007-08-15 14:28:01 +00001722* The :mod:`macfs` module has been removed. This in turn required the
1723 :func:`macostools.touched` function to be removed because it depended on the
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001724 :mod:`macfs` module. (:issue:`1490190`)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001725
Andrew M. Kuchling2686f4d2008-01-19 19:14:05 +00001726* :class:`mmap` objects now have a :meth:`rfind` method that finds
1727 a substring, beginning at the end of the string and searching
1728 backwards. The :meth:`find` method
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001729 also gained an *end* parameter containing the index at which to stop
Andrew M. Kuchling2686f4d2008-01-19 19:14:05 +00001730 the forward search.
1731 (Contributed by John Lenton.)
1732
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +00001733* (3.0-warning mode) The :mod:`new` module has been removed from
1734 Python 3.0. Importing it therefore triggers a warning message.
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001735
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001736* The :mod:`operator` module gained a
1737 :func:`methodcaller` function that takes a name and an optional
1738 set of arguments, returning a callable that will call
1739 the named function on any arguments passed to it. For example::
1740
1741 >>> # Equivalent to lambda s: s.replace('old', 'new')
1742 >>> replacer = operator.methodcaller('replace', 'old', 'new')
1743 >>> replacer('old wine in old bottles')
1744 'new wine in new bottles'
1745
Georg Brandl27504da2008-03-04 07:25:54 +00001746 (Contributed by Georg Brandl, after a suggestion by Gregory Petrosyan.)
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001747
1748 The :func:`attrgetter` function now accepts dotted names and performs
1749 the corresponding attribute lookups::
1750
1751 >>> inst_name = operator.attrgetter('__class__.__name__')
1752 >>> inst_name('')
1753 'str'
1754 >>> inst_name(help)
1755 '_Helper'
1756
Georg Brandl27504da2008-03-04 07:25:54 +00001757 (Contributed by Georg Brandl, after a suggestion by Barry Warsaw.)
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001758
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001759* New functions in the :mod:`os` module include
1760 ``fchmod(fd, mode)``, ``fchown(fd, uid, gid)``,
1761 and ``lchmod(path, mode)``, on operating systems that support these
1762 functions. :func:`fchmod` and :func:`fchown` let you change the mode
1763 and ownership of an opened file, and :func:`lchmod` changes the mode
1764 of a symlink.
1765
1766 (Contributed by Georg Brandl and Christian Heimes.)
1767
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001768* The :func:`os.walk` function now has a ``followlinks`` parameter. If
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001769 set to True, it will follow symlinks pointing to directories and
1770 visit the directory's contents. For backward compatibility, the
1771 parameter's default value is false. Note that the function can fall
1772 into an infinite recursion if there's a symlink that points to a
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001773 parent directory. (:issue:`1273829`)
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001774
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001775* The ``os.environ`` object's :meth:`clear` method will now unset the
1776 environment variables using :func:`os.unsetenv` in addition to clearing
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001777 the object's keys. (Contributed by Martin Horcicka; :issue:`1181`.)
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00001778
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00001779* In the :mod:`os.path` module, the :func:`splitext` function
1780 has been changed to not split on leading period characters.
1781 This produces better results when operating on Unix's dot-files.
1782 For example, ``os.path.splitext('.ipython')``
1783 now returns ``('.ipython', '')`` instead of ``('', '.ipython')``.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001784 (:issue:`115886`)
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00001785
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001786 A new function, :func:`relpath(path, start)` returns a relative path
1787 from the ``start`` path, if it's supplied, or from the current
1788 working directory to the destination ``path``. (Contributed by
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001789 Richard Barran; :issue:`1339796`.)
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001790
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001791 On Windows, :func:`os.path.expandvars` will now expand environment variables
1792 in the form "%var%", and "~user" will be expanded into the
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001793 user's home directory path. (Contributed by Josiah Carlson;
1794 :issue:`957650`.)
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00001795
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001796* The Python debugger provided by the :mod:`pdb` module
1797 gained a new command: "run" restarts the Python program being debugged,
1798 and can optionally take new command-line arguments for the program.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001799 (Contributed by Rocky Bernstein; :issue:`1393667`.)
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00001800
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001801 The :func:`post_mortem` function, used to enter debugging of a
1802 traceback, will now use the traceback returned by :func:`sys.exc_info`
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001803 if no traceback is supplied. (Contributed by Facundo Batista;
1804 :issue:`1106316`.)
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001805
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001806* The :mod:`pickletools` module now has an :func:`optimize` function
1807 that takes a string containing a pickle and removes some unused
1808 opcodes, returning a shorter pickle that contains the same data structure.
1809 (Contributed by Raymond Hettinger.)
1810
Andrew M. Kuchling57ce0542008-04-21 02:14:24 +00001811* A :func:`get_data` function was added to the :mod:`pkgutil`
1812 module that returns the contents of resource files included
1813 with an installed Python package. For example::
1814
Benjamin Peterson60ffcbe2008-04-21 22:57:00 +00001815 >>> import pkgutil
1816 >>> pkgutil.get_data('test', 'exception_hierarchy.txt')
1817 'BaseException
1818 +-- SystemExit
1819 +-- KeyboardInterrupt
1820 +-- GeneratorExit
1821 +-- Exception
1822 +-- StopIteration
1823 +-- StandardError
1824 ...'
1825 >>>
Andrew M. Kuchling57ce0542008-04-21 02:14:24 +00001826
1827 (Contributed by Paul Moore; :issue:`2439`.)
1828
Georg Brandl8ec7f652007-08-15 14:28:01 +00001829* New functions in the :mod:`posix` module: :func:`chflags` and :func:`lchflags`
1830 are wrappers for the corresponding system calls (where they're available).
1831 Constants for the flag values are defined in the :mod:`stat` module; some
1832 possible values include :const:`UF_IMMUTABLE` to signal the file may not be
1833 changed and :const:`UF_APPEND` to indicate that data can only be appended to the
1834 file. (Contributed by M. Levinson.)
1835
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001836 ``os.closerange(*low*, *high*)`` efficiently closes all file descriptors
1837 from *low* to *high*, ignoring any errors and not including *high* itself.
1838 This function is now used by the :mod:`subprocess` module to make starting
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001839 processes faster. (Contributed by Georg Brandl; :issue:`1663329`.)
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001840
Andrew M. Kuchlinge0a49b62008-01-08 14:30:55 +00001841* The :mod:`pyexpat` module's :class:`Parser` objects now allow setting
1842 their :attr:`buffer_size` attribute to change the size of the buffer
1843 used to hold character data.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001844 (Contributed by Achim Gaedke; :issue:`1137`.)
Andrew M. Kuchlinge0a49b62008-01-08 14:30:55 +00001845
Andrew M. Kuchling0c3f1682008-01-26 13:50:51 +00001846* The :mod:`Queue` module now provides queue classes that retrieve entries
1847 in different orders. The :class:`PriorityQueue` class stores
1848 queued items in a heap and retrieves them in priority order,
1849 and :class:`LifoQueue` retrieves the most recently added entries first,
1850 meaning that it behaves like a stack.
1851 (Contributed by Raymond Hettinger.)
1852
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001853* The :mod:`random` module's :class:`Random` objects can
1854 now be pickled on a 32-bit system and unpickled on a 64-bit
1855 system, and vice versa. Unfortunately, this change also means
1856 that Python 2.6's :class:`Random` objects can't be unpickled correctly
1857 on earlier versions of Python.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001858 (Contributed by Shawn Ligocki; :issue:`1727780`.)
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001859
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +00001860 The new ``triangular(low, high, mode)`` function returns random
1861 numbers following a triangular distribution. The returned values
1862 are between *low* and *high*, not including *high* itself, and
1863 with *mode* as the mode, the most frequently occurring value
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +00001864 in the distribution. (Contributed by Wladmir van der Laan and
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001865 Raymond Hettinger; :issue:`1681432`.)
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +00001866
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001867* Long regular expression searches carried out by the :mod:`re`
1868 module will now check for signals being delivered, so especially
1869 long searches can now be interrupted.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001870 (Contributed by Josh Hoyt and Ralf Schmitt; :issue:`846388`.)
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001871
Georg Brandl8ec7f652007-08-15 14:28:01 +00001872* The :mod:`rgbimg` module has been removed.
1873
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001874* The :mod:`sched` module's :class:`scheduler` instances now
1875 have a read-only :attr:`queue` attribute that returns the
1876 contents of the scheduler's queue, represented as a list of
Georg Brandl225163d2008-03-05 07:10:35 +00001877 named tuples with the fields ``(time, priority, action, argument)``.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001878 (Contributed by Raymond Hettinger; :issue:`1861`.)
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001879
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +00001880* The :mod:`select` module now has wrapper functions
1881 for the Linux :cfunc:`epoll` and BSD :cfunc:`kqueue` system calls.
1882 Also, a :meth:`modify` method was added to the existing :class:`poll`
1883 objects; ``pollobj.modify(fd, eventmask)`` takes a file descriptor
1884 or file object and an event mask,
1885
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001886 (Contributed by Christian Heimes; :issue:`1657`.)
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00001887
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00001888* The :mod:`sets` module has been deprecated; it's better to
1889 use the built-in :class:`set` and :class:`frozenset` types.
1890
Andrew M. Kuchling2d60cf72007-12-22 17:27:02 +00001891* Integrating signal handling with GUI handling event loops
1892 like those used by Tkinter or GTk+ has long been a problem; most
Georg Brandle1b8e9c2008-02-20 19:12:36 +00001893 software ends up polling, waking up every fraction of a second.
Andrew M. Kuchling2d60cf72007-12-22 17:27:02 +00001894 The :mod:`signal` module can now make this more efficient.
1895 Calling ``signal.set_wakeup_fd(fd)`` sets a file descriptor
1896 to be used; when a signal is received, a byte is written to that
1897 file descriptor. There's also a C-level function,
1898 :cfunc:`PySignal_SetWakeupFd`, for setting the descriptor.
1899
1900 Event loops will use this by opening a pipe to create two descriptors,
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +00001901 one for reading and one for writing. The writable descriptor
Andrew M. Kuchling2d60cf72007-12-22 17:27:02 +00001902 will be passed to :func:`set_wakeup_fd`, and the readable descriptor
1903 will be added to the list of descriptors monitored by the event loop via
1904 :cfunc:`select` or :cfunc:`poll`.
1905 On receiving a signal, a byte will be written and the main event loop
1906 will be woken up, without the need to poll.
1907
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001908 (Contributed by Adam Olsen; :issue:`1583`.)
Andrew M. Kuchling2d60cf72007-12-22 17:27:02 +00001909
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00001910 The :func:`siginterrupt` function is now available from Python code,
1911 and allows changing whether signals can interrupt system calls or not.
1912 (Contributed by Ralf Schmitt.)
1913
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +00001914 The :func:`setitimer` and :func:`getitimer` functions have also been
1915 added on systems that support these system calls. :func:`setitimer`
1916 allows setting interval timers that will cause a signal to be
1917 delivered to the process after a specified time, measured in
1918 wall-clock time, consumed process time, or combined process+system
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001919 time. (Contributed by Guilherme Polo; :issue:`2240`.)
Andrew M. Kuchlingb2ff8a72008-04-05 03:38:39 +00001920
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00001921* The :mod:`smtplib` module now supports SMTP over SSL thanks to the
1922 addition of the :class:`SMTP_SSL` class. This class supports an
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001923 interface identical to the existing :class:`SMTP` class. Both
1924 class constructors also have an optional ``timeout`` parameter
1925 that specifies a timeout for the initial connection attempt, measured in
1926 seconds.
1927
1928 An implementation of the LMTP protocol (:rfc:`2033`) was also added to
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00001929 the module. LMTP is used in place of SMTP when transferring e-mail
1930 between agents that don't manage a mail queue.
Andrew M. Kuchlingb4c62952007-09-01 21:18:31 +00001931
1932 (SMTP over SSL contributed by Monty Taylor; timeout parameter
1933 added by Facundo Batista; LMTP implemented by Leif
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001934 Hedstrom; :issue:`957003`.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001935
Gregory P. Smith63bfc1d2008-01-17 07:43:20 +00001936* In the :mod:`smtplib` module, SMTP.starttls() now complies with :rfc:`3207`
1937 and forgets any knowledge obtained from the server not obtained from
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001938 the TLS negotiation itself. (Patch contributed by Bill Fenner;
1939 :issue:`829951`.)
Gregory P. Smith63bfc1d2008-01-17 07:43:20 +00001940
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001941* The :mod:`socket` module now supports TIPC (http://tipc.sf.net),
1942 a high-performance non-IP-based protocol designed for use in clustered
1943 environments. TIPC addresses are 4- or 5-tuples.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001944 (Contributed by Alberto Bertogli; :issue:`1646`.)
Andrew M. Kuchlingf60b6412008-01-19 16:34:09 +00001945
Andrew M. Kuchling04f58762008-04-15 02:24:15 +00001946 A new function, :func:`create_connection`, takes an address
1947 and connects to it using an optional timeout value, returning
1948 the connected socket object.
1949
Andrew M. Kuchlingf60b6412008-01-19 16:34:09 +00001950* The base classes in the :mod:`SocketServer` module now support
1951 calling a :meth:`handle_timeout` method after a span of inactivity
1952 specified by the server's :attr:`timeout` attribute. (Contributed
Andrew M. Kuchlingf68b5532008-04-09 01:08:32 +00001953 by Michael Pomraning.) The :meth:`serve_forever` method
1954 now takes an optional poll interval measured in seconds,
1955 controlling how often the server will check for a shutdown request.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001956 (Contributed by Pedro Werneck and Jeffrey Yasskin;
1957 :issue:`742598`, :issue:`1193577`.)
Andrew M. Kuchling1d136bb2008-03-06 01:36:27 +00001958
1959* The :mod:`struct` module now supports the C99 :ctype:`_Bool` type,
1960 using the format character ``'?'``.
1961 (Contributed by David Remahl.)
Andrew M. Kuchling57ce0542008-04-21 02:14:24 +00001962
1963* The :class:`Popen` objects provided by the :mod:`subprocess` module
1964 now have :meth:`terminate`, :meth:`kill`, and :meth:`send_signal` methods.
1965 On Windows, :meth:`send_signal` only supports the :const:`SIGTERM`
1966 signal, and all these methods are aliases for the Win32 API function
1967 :cfunc:`TerminateProcess`.
1968 (Contributed by Christian Heimes.)
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001969
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001970* A new variable in the :mod:`sys` module,
Andrew M. Kuchling5d8b3792008-01-14 14:48:43 +00001971 :attr:`float_info`, is an object
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001972 containing information about the platform's floating-point support
Andrew M. Kuchling5d8b3792008-01-14 14:48:43 +00001973 derived from the :file:`float.h` file. Attributes of this object
1974 include
1975 :attr:`mant_dig` (number of digits in the mantissa), :attr:`epsilon`
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001976 (smallest difference between 1.0 and the next largest value
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00001977 representable), and several others. (Contributed by Christian Heimes;
1978 :issue:`1534`.)
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00001979
Andrew M. Kuchling7b1e9172008-01-15 14:38:05 +00001980 Another new variable, :attr:`dont_write_bytecode`, controls whether Python
1981 writes any :file:`.pyc` or :file:`.pyo` files on importing a module.
1982 If this variable is true, the compiled files are not written. The
1983 variable is initially set on start-up by supplying the :option:`-B`
1984 switch to the Python interpreter, or by setting the
1985 :envvar:`PYTHONDONTWRITEBYTECODE` environment variable before
1986 running the interpreter. Python code can subsequently
1987 change the value of this variable to control whether bytecode files
1988 are written or not.
1989 (Contributed by Neal Norwitz and Georg Brandl.)
1990
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00001991 Information about the command-line arguments supplied to the Python
1992 interpreter are available as attributes of a ``sys.flags`` named
1993 tuple. For example, the :attr:`verbose` attribute is true if Python
1994 was executed in verbose mode, :attr:`debug` is true in debugging mode, etc.
1995 These attributes are all read-only.
1996 (Contributed by Christian Heimes.)
1997
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00001998 It's now possible to determine the current profiler and tracer functions
1999 by calling :func:`sys.getprofile` and :func:`sys.gettrace`.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002000 (Contributed by Georg Brandl; :issue:`1648`.)
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00002001
Andrew M. Kuchlingde37a8c2007-09-18 01:36:16 +00002002* The :mod:`tarfile` module now supports POSIX.1-2001 (pax) and
2003 POSIX.1-1988 (ustar) format tarfiles, in addition to the GNU tar
2004 format that was already supported. The default format
2005 is GNU tar; specify the ``format`` parameter to open a file
2006 using a different format::
2007
2008 tar = tarfile.open("output.tar", "w", format=tarfile.PAX_FORMAT)
2009
2010 The new ``errors`` parameter lets you specify an error handling
2011 scheme for character conversions: the three standard ways Python can
2012 handle errors ``'strict'``, ``'ignore'``, ``'replace'`` , or the
2013 special value ``'utf-8'``, which replaces bad characters with their
2014 UTF-8 representation. Character conversions occur because the PAX
2015 format supports Unicode filenames, defaulting to UTF-8 encoding.
2016
2017 The :meth:`TarFile.add` method now accepts a ``exclude`` argument that's
2018 a function that can be used to exclude certain filenames from
2019 an archive.
2020 The function must take a filename and return true if the file
2021 should be excluded or false if it should be archived.
2022 The function is applied to both the name initially passed to :meth:`add`
2023 and to the names of files in recursively-added directories.
2024
2025 (All changes contributed by Lars Gustäbel).
2026
2027* An optional ``timeout`` parameter was added to the
2028 :class:`telnetlib.Telnet` class constructor, specifying a timeout
2029 measured in seconds. (Added by Facundo Batista.)
2030
2031* The :class:`tempfile.NamedTemporaryFile` class usually deletes
2032 the temporary file it created when the file is closed. This
2033 behaviour can now be changed by passing ``delete=False`` to the
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002034 constructor. (Contributed by Damien Miller; :issue:`1537850`.)
Andrew M. Kuchlingde37a8c2007-09-18 01:36:16 +00002035
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00002036 A new class, :class:`SpooledTemporaryFile`, behaves like
2037 a temporary file but stores its data in memory until a maximum size is
2038 exceeded. On reaching that limit, the contents will be written to
2039 an on-disk temporary file. (Contributed by Dustin J. Mitchell.)
2040
2041 The :class:`NamedTemporaryFile` and :class:`SpooledTemporaryFile` classes
2042 both work as context managers, so you can write
2043 ``with tempfile.NamedTemporaryFile() as tmp: ...``.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002044 (Contributed by Alexander Belopolsky; :issue:`2021`.)
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00002045
Andrew M. Kuchlingde37a8c2007-09-18 01:36:16 +00002046* The :mod:`test.test_support` module now contains a
2047 :func:`EnvironmentVarGuard`
2048 context manager that supports temporarily changing environment variables and
2049 automatically restores them to their old values.
2050
2051 Another context manager, :class:`TransientResource`, can surround calls
2052 to resources that may or may not be available; it will catch and
2053 ignore a specified list of exceptions. For example,
2054 a network test may ignore certain failures when connecting to an
2055 external web site::
2056
2057 with test_support.TransientResource(IOError, errno=errno.ETIMEDOUT):
2058 f = urllib.urlopen('https://sf.net')
2059 ...
2060
2061 (Contributed by Brett Cannon.)
2062
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00002063* The :mod:`textwrap` module can now preserve existing whitespace
2064 at the beginnings and ends of the newly-created lines
2065 by specifying ``drop_whitespace=False``
2066 as an argument::
2067
2068 >>> S = """This sentence has a bunch of extra whitespace."""
2069 >>> print textwrap.fill(S, width=15)
2070 This sentence
2071 has a bunch
2072 of extra
2073 whitespace.
2074 >>> print textwrap.fill(S, drop_whitespace=False, width=15)
2075 This sentence
2076 has a bunch
2077 of extra
2078 whitespace.
2079 >>>
2080
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002081 (Contributed by Dwayne Bailey; :issue:`1581073`.)
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00002082
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00002083* The :mod:`timeit` module now accepts callables as well as strings
2084 for the statement being timed and for the setup code.
2085 Two convenience functions were added for creating
2086 :class:`Timer` instances:
2087 ``repeat(stmt, setup, time, repeat, number)`` and
2088 ``timeit(stmt, setup, time, number)`` create an instance and call
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002089 the corresponding method. (Contributed by Erik Demaine;
2090 :issue:`1533909`.)
Andrew M. Kuchling6c066dd2007-09-01 20:43:36 +00002091
Andrew M. Kuchlingf10878b2007-09-13 22:49:34 +00002092* An optional ``timeout`` parameter was added to the
2093 :func:`urllib.urlopen` function and the
2094 :class:`urllib.ftpwrapper` class constructor, as well as the
2095 :func:`urllib2.urlopen` function. The parameter specifies a timeout
2096 measured in seconds. For example::
2097
2098 >>> u = urllib2.urlopen("http://slow.example.com", timeout=3)
2099 Traceback (most recent call last):
2100 ...
2101 urllib2.URLError: <urlopen error timed out>
2102 >>>
2103
2104 (Added by Facundo Batista.)
2105
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00002106* The XML-RPC classes :class:`SimpleXMLRPCServer` and :class:`DocXMLRPCServer`
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00002107 classes can now be prevented from immediately opening and binding to
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00002108 their socket by passing True as the ``bind_and_activate``
2109 constructor parameter. This can be used to modify the instance's
2110 :attr:`allow_reuse_address` attribute before calling the
2111 :meth:`server_bind` and :meth:`server_activate` methods to
2112 open the socket and begin listening for connections.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002113 (Contributed by Peter Parente; :issue:`1599845`.)
Andrew M. Kuchling99479eb2007-09-25 00:09:42 +00002114
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00002115 :class:`SimpleXMLRPCServer` also has a :attr:`_send_traceback_header`
2116 attribute; if true, the exception and formatted traceback are returned
2117 as HTTP headers "X-Exception" and "X-Traceback". This feature is
2118 for debugging purposes only and should not be used on production servers
2119 because the tracebacks could possibly reveal passwords or other sensitive
2120 information. (Contributed by Alan McIntyre as part of his
2121 project for Google's Summer of Code 2007.)
2122
Andrew M. Kuchling57ce0542008-04-21 02:14:24 +00002123* The :mod:`xmlrpclib` module no longer automatically converts
2124 :class:`datetime.date` and :class:`datetime.time` to the
2125 :class:`xmlrpclib.DateTime` type; the conversion semantics were
2126 not necessarily correct for all applications. Code using
2127 :mod:`xmlrpclib` should convert :class:`date` and :class:`time`
2128 instances. (:issue:`1330538`) The code can also handle
2129 dates before 1900. (Contributed by Ralf Schmitt; :issue:`2014`.)
2130
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00002131* The :mod:`zipfile` module's :class:`ZipFile` class now has
2132 :meth:`extract` and :meth:`extractall` methods that will unpack
2133 a single file or all the files in the archive to the current directory, or
2134 to a specified directory::
2135
2136 z = zipfile.ZipFile('python-251.zip')
2137
2138 # Unpack a single file, writing it relative to the /tmp directory.
2139 z.extract('Python/sysmodule.c', '/tmp')
2140
2141 # Unpack all the files in the archive.
2142 z.extractall()
2143
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002144 (Contributed by Alan McIntyre; :issue:`467924`.)
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00002145
Georg Brandlb19be572007-12-29 10:57:00 +00002146.. ======================================================================
2147.. whole new modules get described in subsections here
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00002148
2149Improved SSL Support
Andrew M. Kuchling27a44982007-10-20 19:39:35 +00002150--------------------------------------------------
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00002151
2152Bill Janssen made extensive improvements to Python 2.6's support for
Andrew M. Kuchling04f58762008-04-15 02:24:15 +00002153the Secure Sockets Layer by adding a new module, :mod:`ssl`, on top of
2154the `OpenSSL <http://www.openssl.org/>`__ library. This new module
2155provides more control over the protocol negotiated, the X.509
2156certificates used, and has better support for writing SSL servers (as
2157opposed to clients) in Python. The existing SSL support in the
2158:mod:`socket` module hasn't been removed and continues to work,
2159though it will be removed in Python 3.0.
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00002160
Andrew M. Kuchling04f58762008-04-15 02:24:15 +00002161To use the new module, first you must create a TCP connection in the
2162usual way and then pass it to the :func:`ssl.wrap_socket` function.
Andrew M. Kuchling805cdd82008-04-29 02:03:54 +00002163It's possible to specify whether a certificate is required, and to
2164obtain certificate info by calling the :meth:`getpeercert` method.
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00002165
2166.. seealso::
2167
Andrew M. Kuchling805cdd82008-04-29 02:03:54 +00002168 The documentation for the :mod:`ssl` module.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002169
Andrew M. Kuchling0c3f1682008-01-26 13:50:51 +00002170
2171.. ======================================================================
2172
2173plistlib: A Property-List Parser
2174--------------------------------------------------
2175
2176A commonly-used format on MacOS X is the ``.plist`` format,
2177which stores basic data types (numbers, strings, lists,
2178and dictionaries) and serializes them into an XML-based format.
2179(It's a lot like the XML-RPC serialization of data types.)
2180
2181Despite being primarily used on MacOS X, the format
2182has nothing Mac-specific about it and the Python implementation works
2183on any platform that Python supports, so the :mod:`plistlib` module
2184has been promoted to the standard library.
2185
2186Using the module is simple::
2187
2188 import sys
2189 import plistlib
2190 import datetime
2191
2192 # Create data structure
2193 data_struct = dict(lastAccessed=datetime.datetime.now(),
2194 version=1,
2195 categories=('Personal', 'Shared', 'Private'))
2196
2197 # Create string containing XML.
2198 plist_str = plistlib.writePlistToString(data_struct)
2199 new_struct = plistlib.readPlistFromString(plist_str)
2200 print data_struct
2201 print new_struct
2202
2203 # Write data structure to a file and read it back.
2204 plistlib.writePlist(data_struct, '/tmp/customizations.plist')
2205 new_struct = plistlib.readPlist('/tmp/customizations.plist')
2206
2207 # read/writePlist accepts file-like objects as well as paths.
2208 plistlib.writePlist(data_struct, sys.stdout)
2209
2210
Georg Brandlb19be572007-12-29 10:57:00 +00002211.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00002212
2213
2214Build and C API Changes
2215=======================
2216
2217Changes to Python's build process and to the C API include:
2218
Andrew M. Kuchlingf7b462f2007-11-23 13:37:39 +00002219* Python 2.6 can be built with Microsoft Visual Studio 2008.
2220 See the :file:`PCbuild9` directory for the build files.
2221 (Implemented by Christian Heimes.)
2222
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00002223* Python now can only be compiled with C89 compilers (after 19
2224 years!). This means that the Python source tree can now drop its
2225 own implementations of :cfunc:`memmove` and :cfunc:`strerror`, which
2226 are in the C89 standard library.
2227
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00002228* The BerkeleyDB module now has a C API object, available as
2229 ``bsddb.db.api``. This object can be used by other C extensions
2230 that wish to use the :mod:`bsddb` module for their own purposes.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002231 (Contributed by Duncan Grisby; :issue:`1551895`.)
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00002232
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002233* The new buffer interface, previously described in
2234 `the PEP 3118 section <#pep-3118-revised-buffer-protocol>`__,
2235 adds :cfunc:`PyObject_GetBuffer` and :cfunc:`PyObject_ReleaseBuffer`,
2236 as well as a few other functions.
Andrew M. Kuchling6edff592007-10-16 22:58:03 +00002237
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00002238* Python's use of the C stdio library is now thread-safe, or at least
2239 as thread-safe as the underlying library is. A long-standing potential
2240 bug occurred if one thread closed a file object while another thread
2241 was reading from or writing to the object. In 2.6 file objects
2242 have a reference count, manipulated by the
2243 :cfunc:`PyFile_IncUseCount` and :cfunc:`PyFile_DecUseCount`
2244 functions. File objects can't be closed unless the reference count
2245 is zero. :cfunc:`PyFile_IncUseCount` should be called while the GIL
2246 is still held, before carrying out an I/O operation using the
2247 ``FILE *`` pointer, and :cfunc:`PyFile_DecUseCount` should be called
2248 immediately after the GIL is re-acquired.
2249 (Contributed by Antoine Pitrou and Gregory P. Smith.)
2250
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002251* Importing modules simultaneously in two different threads no longer
2252 deadlocks; it will now raise an :exc:`ImportError`. A new API
2253 function, :cfunc:`PyImport_ImportModuleNoBlock`, will look for a
2254 module in ``sys.modules`` first, then try to import it after
2255 acquiring an import lock. If the import lock is held by another
2256 thread, the :exc:`ImportError` is raised.
2257 (Contributed by Christian Heimes.)
2258
Andrew M. Kuchlingd5865592007-12-19 02:02:04 +00002259* Several functions return information about the platform's
2260 floating-point support. :cfunc:`PyFloat_GetMax` returns
2261 the maximum representable floating point value,
2262 and :cfunc:`PyFloat_GetMin` returns the minimum
2263 positive value. :cfunc:`PyFloat_GetInfo` returns a dictionary
2264 containing more information from the :file:`float.h` file, such as
2265 ``"mant_dig"`` (number of digits in the mantissa), ``"epsilon"``
2266 (smallest difference between 1.0 and the next largest value
2267 representable), and several others.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002268 (Contributed by Christian Heimes; :issue:`1534`.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00002269
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002270* Python's C API now includes two functions for case-insensitive string
Georg Brandl907a7202008-02-22 12:31:45 +00002271 comparisons, ``PyOS_stricmp(char*, char*)``
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002272 and ``PyOS_strnicmp(char*, char*, Py_ssize_t)``.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002273 (Contributed by Christian Heimes; :issue:`1635`.)
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002274
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00002275* Many C extensions define their own little macro for adding
2276 integers and strings to the module's dictionary in the
2277 ``init*`` function. Python 2.6 finally defines standard macros
2278 for adding values to a module, :cmacro:`PyModule_AddStringMacro`
2279 and :cmacro:`PyModule_AddIntMacro()`. (Contributed by
2280 Christian Heimes.)
2281
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00002282* Some macros were renamed in both 3.0 and 2.6 to make it clearer that
2283 they are macros,
Andrew M. Kuchling3b554702008-01-04 02:31:40 +00002284 not functions. :cmacro:`Py_Size()` became :cmacro:`Py_SIZE()`,
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002285 :cmacro:`Py_Type()` became :cmacro:`Py_TYPE()`, and
Andrew M. Kuchling3710a132008-03-05 00:44:41 +00002286 :cmacro:`Py_Refcnt()` became :cmacro:`Py_REFCNT()`.
2287 The mixed-case macros are still available
2288 in Python 2.6 for backward compatibility.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002289 (:issue:`1629`)
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002290
Andrew M. Kuchling0c3f1682008-01-26 13:50:51 +00002291* Distutils now places C extensions it builds in a
2292 different directory when running on a debug version of Python.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002293 (Contributed by Collin Winter; :issue:`1530959`.)
Andrew M. Kuchling0c3f1682008-01-26 13:50:51 +00002294
Andrew M. Kuchling378586a2008-03-04 01:50:32 +00002295* Several basic data types, such as integers and strings, maintain
2296 internal free lists of objects that can be re-used. The data
2297 structures for these free lists now follow a naming convention: the
2298 variable is always named ``free_list``, the counter is always named
2299 ``numfree``, and a macro :cmacro:`Py<typename>_MAXFREELIST` is
2300 always defined.
Andrew M. Kuchling0c3f1682008-01-26 13:50:51 +00002301
Andrew M. Kuchlingf68b5532008-04-09 01:08:32 +00002302* A new Makefile target, "make check", prepares the Python source tree
2303 for making a patch: it fixes trailing whitespace in all modified
2304 ``.py`` files, checks whether the documentation has been changed,
2305 and reports whether the :file:`Misc/ACKS` and :file:`Misc/NEWS` files
2306 have been updated.
2307 (Contributed by Brett Cannon.)
2308
Andrew M. Kuchling57ce0542008-04-21 02:14:24 +00002309 Another new target, "make profile-opt", compiles a Python binary
2310 using GCC's profile-guided optimization. It compiles Python with
2311 profiling enabled, runs the test suite to obtain a set of profiling
2312 results, and then compiles using these results for optimization.
2313 (Contributed by Gregory P. Smith.)
2314
2315
Georg Brandlb19be572007-12-29 10:57:00 +00002316.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00002317
2318
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002319Port-Specific Changes: Windows
2320-----------------------------------
2321
Christian Heimes7e3ab452008-05-04 11:50:53 +00002322* The support for Windows 95, 98, ME and NT4 has been dropped.
2323 Python 2.6 requires at least Windows 2000 SP4.
2324
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002325* The :mod:`msvcrt` module now supports
2326 both the normal and wide char variants of the console I/O
2327 API. The :func:`getwch` function reads a keypress and returns a Unicode
2328 value, as does the :func:`getwche` function. The :func:`putwch` function
2329 takes a Unicode character and writes it to the console.
Christian Heimesff6cc6b2008-01-17 23:01:44 +00002330 (Contributed by Christian Heimes.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00002331
Andrew M. Kuchlingd2219562008-01-17 12:00:15 +00002332* :func:`os.path.expandvars` will now expand environment variables
2333 in the form "%var%", and "~user" will be expanded into the
2334 user's home directory path. (Contributed by Josiah Carlson.)
2335
2336* The :mod:`socket` module's socket objects now have an
2337 :meth:`ioctl` method that provides a limited interface to the
2338 :cfunc:`WSAIoctl` system interface.
2339
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00002340* The :mod:`_winreg` module now has a function,
2341 :func:`ExpandEnvironmentStrings`,
2342 that expands environment variable references such as ``%NAME%``
2343 in an input string. The handle objects provided by this
2344 module now support the context protocol, so they can be used
Christian Heimesff6cc6b2008-01-17 23:01:44 +00002345 in :keyword:`with` statements. (Contributed by Christian Heimes.)
2346
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00002347 :mod:`_winreg` also has better support for x64 systems,
2348 exposing the :func:`DisableReflectionKey`, :func:`EnableReflectionKey`,
2349 and :func:`QueryReflectionKey` functions, which enable and disable
2350 registry reflection for 32-bit processes running on 64-bit systems.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002351 (:issue:`1753245`)
Andrew M. Kuchling34be7ce2008-04-07 23:57:07 +00002352
Christian Heimesff6cc6b2008-01-17 23:01:44 +00002353* The new default compiler on Windows is Visual Studio 2008 (VS 9.0). The
2354 build directories for Visual Studio 2003 (VS7.1) and 2005 (VS8.0)
2355 were moved into the PC/ directory. The new PCbuild directory supports
2356 cross compilation for X64, debug builds and Profile Guided Optimization
2357 (PGO). PGO builds are roughly 10% faster than normal builds.
2358 (Contributed by Christian Heimes with help from Amaury Forgeot d'Arc and
2359 Martin von Loewis.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00002360
Georg Brandlb19be572007-12-29 10:57:00 +00002361.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00002362
2363
2364.. _section-other:
2365
2366Other Changes and Fixes
2367=======================
2368
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00002369As usual, there were a bunch of other improvements and bugfixes
2370scattered throughout the source tree. A search through the change
2371logs finds there were XXX patches applied and YYY bugs fixed between
2372Python 2.5 and 2.6. Both figures are likely to be underestimates.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002373
2374Some of the more notable changes are:
2375
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00002376* It's now possible to prevent Python from writing any :file:`.pyc`
2377 or :file:`.pyo` files by either supplying the :option:`-B` switch
2378 or setting the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable
2379 to any non-empty string when running the Python interpreter. These
Georg Brandlca9c6e42008-01-15 06:58:15 +00002380 are also used to set the :data:`sys.dont_write_bytecode` attribute;
2381 Python code can change this variable to control whether bytecode
2382 files are subsequently written.
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00002383 (Contributed by Neal Norwitz and Georg Brandl.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00002384
Georg Brandlb19be572007-12-29 10:57:00 +00002385.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00002386
2387
2388Porting to Python 2.6
2389=====================
2390
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +00002391This section lists previously described changes and other bugfixes
2392that may require changes to your code:
Georg Brandl8ec7f652007-08-15 14:28:01 +00002393
Andrew M. Kuchling73835bd2008-01-04 18:24:41 +00002394* The :meth:`__init__` method of :class:`collections.deque`
Andrew M. Kuchling654ede72008-01-04 01:16:12 +00002395 now clears any existing contents of the deque
2396 before adding elements from the iterable. This change makes the
2397 behavior match that of ``list.__init__()``.
2398
Andrew M. Kuchling2e463552008-01-15 01:47:32 +00002399* The :class:`Decimal` constructor now accepts leading and trailing
2400 whitespace when passed a string. Previously it would raise an
2401 :exc:`InvalidOperation` exception. On the other hand, the
2402 :meth:`create_decimal` method of :class:`Context` objects now
2403 explicitly disallows extra whitespace, raising a
2404 :exc:`ConversionSyntax` exception.
2405
2406* Due to an implementation accident, if you passed a file path to
2407 the built-in :func:`__import__` function, it would actually import
2408 the specified file. This was never intended to work, however, and
2409 the implementation now explicitly checks for this case and raises
2410 an :exc:`ImportError`.
2411
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002412* C API: the :cfunc:`PyImport_Import` and :cfunc:`PyImport_ImportModule`
2413 functions now default to absolute imports, not relative imports.
2414 This will affect C extensions that import other modules.
2415
Andrew M. Kuchlinge34d2892007-10-20 19:35:18 +00002416* The :mod:`socket` module exception :exc:`socket.error` now inherits
2417 from :exc:`IOError`. Previously it wasn't a subclass of
2418 :exc:`StandardError` but now it is, through :exc:`IOError`.
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002419 (Implemented by Gregory P. Smith; :issue:`1706815`.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00002420
Andrew M. Kuchling085f75a2008-02-23 16:23:05 +00002421* The :mod:`xmlrpclib` module no longer automatically converts
2422 :class:`datetime.date` and :class:`datetime.time` to the
2423 :class:`xmlrpclib.DateTime` type; the conversion semantics were
2424 not necessarily correct for all applications. Code using
2425 :mod:`xmlrpclib` should convert :class:`date` and :class:`time`
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002426 instances. (:issue:`1330538`)
Andrew M. Kuchling085f75a2008-02-23 16:23:05 +00002427
Andrew M. Kuchling7c29aae2008-03-26 00:30:02 +00002428* (3.0-warning mode) The :class:`Exception` class now warns
2429 when accessed using slicing or index access; having
2430 :class:`Exception` behave like a tuple is being phased out.
2431
2432* (3.0-warning mode) inequality comparisons between two dictionaries
Andrew M. Kuchling9cf2f5d2008-03-20 22:49:26 +00002433 or two objects that don't implement comparison methods are reported
2434 as warnings. ``dict1 == dict2`` still works, but ``dict1 < dict2``
2435 is being phased out.
2436
2437 Comparisons between cells, which are an implementation detail of Python's
2438 scoping rules, also cause warnings because such comparisons are forbidden
2439 entirely in 3.0.
2440
Georg Brandlb19be572007-12-29 10:57:00 +00002441.. ======================================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00002442
2443
2444.. _acks:
2445
2446Acknowledgements
2447================
2448
2449The author would like to thank the following people for offering suggestions,
Andrew M. Kuchling17f84292008-04-10 21:29:01 +00002450corrections and assistance with various drafts of this article:
2451Georg Brandl, Jim Jewett.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002452