blob: 280d13bb4bf1807449dc823d31b010d980086242 [file] [log] [blame]
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00001****************************
2 What's New In Python 3.3
3****************************
4
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00005:Release: |release|
6:Date: |today|
7
Éric Araujob07b97f2011-10-05 01:03:34 +02008.. Rules for maintenance:
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00009
10 * Anyone can add text to this document. Do not spend very much time
11 on the wording of your changes, because your text will probably
12 get rewritten to some degree.
13
14 * The maintainer will go through Misc/NEWS periodically and add
15 changes; it's therefore more important to add your changes to
16 Misc/NEWS than to this file.
17
18 * This is not a complete list of every single change; completeness
19 is the purpose of Misc/NEWS. Some changes I consider too small
20 or esoteric to include. If such a change is added to the text,
21 I'll just remove it. (This is another reason you shouldn't spend
22 too much time on writing your addition.)
23
24 * If you want to draw your new text to the attention of the
25 maintainer, add 'XXX' to the beginning of the paragraph or
26 section.
27
28 * It's OK to just add a fragmentary note about a change. For
29 example: "XXX Describe the transmogrify() function added to the
30 socket module." The maintainer will research the change and
31 write the necessary text.
32
33 * You can comment out your additions if you like, but it's not
34 necessary (especially when a final release is some months away).
35
36 * Credit the author of a patch or bugfix. Just the name is
37 sufficient; the e-mail address isn't necessary.
38
39 * It's helpful to add the bug/patch number as a comment:
40
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000041 XXX Describe the transmogrify() function added to the socket
42 module.
Éric Araujob07b97f2011-10-05 01:03:34 +020043 (Contributed by P.Y. Developer in :issue:`12345`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000044
Éric Araujob07b97f2011-10-05 01:03:34 +020045 This saves the maintainer the effort of going through the Mercurial log
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000046 when researching a change.
47
48This article explains the new features in Python 3.3, compared to 3.2.
R David Murrayf23e2b62012-09-29 19:41:26 -040049Python 3.3 was released on September 29, 2012. For full details,
50see the :source:`Misc/NEWS` file.
51
52.. seealso::
53
Nick Coghlancfb18182012-09-30 12:08:13 +053054 :pep:`398` - Python 3.3 Release Schedule
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000055
Nick Coghlanb47b5392012-05-26 01:31:25 +100056
Antoine Pitrouc907de92012-08-21 00:53:06 +020057Summary -- Release highlights
58=============================
Victor Stinner636130e2012-08-05 16:37:12 +020059
Antoine Pitrouc907de92012-08-21 00:53:06 +020060.. This section singles out the most important changes in Python 3.3.
61 Brevity is key.
Victor Stinner636130e2012-08-05 16:37:12 +020062
Antoine Pitrouc907de92012-08-21 00:53:06 +020063New syntax features:
Victor Stinner636130e2012-08-05 16:37:12 +020064
Antoine Pitrouc907de92012-08-21 00:53:06 +020065* New ``yield from`` expression for :ref:`generator delegation <pep-380>`.
66* The ``u'unicode'`` syntax is accepted again for :class:`str` objects.
Victor Stinner636130e2012-08-05 16:37:12 +020067
Antoine Pitrouc907de92012-08-21 00:53:06 +020068New library modules:
69
70* :mod:`faulthandler` (helps debugging low-level crashes)
71* :mod:`ipaddress` (high-level objects representing IP addresses and masks)
72* :mod:`lzma` (compress data using the XZ / LZMA algorithm)
Victor Stinner1da769a2012-09-18 22:40:03 +020073* :mod:`unittest.mock` (replace parts of your system under test with mock objects)
Antoine Pitrouc907de92012-08-21 00:53:06 +020074* :mod:`venv` (Python :ref:`virtual environments <pep-405>`, as in the
75 popular ``virtualenv`` package)
76
77New built-in features:
78
79* Reworked :ref:`I/O exception hierarchy <pep-3151>`.
80
81Implementation improvements:
82
83* Rewritten :ref:`import machinery <importlib>` based on :mod:`importlib`.
84* More compact :ref:`unicode strings <pep-393>`.
85* More compact :ref:`attribute dictionaries <pep-412>`.
86
R David Murrayf23e2b62012-09-29 19:41:26 -040087Significantly Improved Library Modules:
88
89* C Accelerator for the :ref:`decimal <new-decimal>` module.
90* Better unicode handling in the :ref:`email <new-email>` module
91 (:term:`provisional <provisional package>`).
92
Antoine Pitrouc907de92012-08-21 00:53:06 +020093Security improvements:
94
95* Hash randomization is switched on by default.
96
97Please read on for a comprehensive list of user-facing changes.
98
99
100.. _pep-405:
Victor Stinner636130e2012-08-05 16:37:12 +0200101
Éric Araujo859aad62012-06-24 00:07:41 -0400102PEP 405: Virtual Environments
103=============================
Nick Coghlanb47b5392012-05-26 01:31:25 +1000104
Antoine Pitroua5e57972012-08-21 01:08:17 +0200105Virtual environments help create separate Python setups while sharing a
106system-wide base install, for ease of maintenance. Virtual environments
107have their own set of private site packages (i.e. locally-installed
108libraries), and are optionally segregated from the system-wide site
109packages. Their concept and implementation are inspired by the popular
110``virtualenv`` third-party package, but benefit from tighter integration
111with the interpreter core.
Éric Araujo859aad62012-06-24 00:07:41 -0400112
Antoine Pitroua5e57972012-08-21 01:08:17 +0200113This PEP adds the :mod:`venv` module for programmatic access, and the
114:ref:`pyvenv <scripts-pyvenv>` script for command-line access and
Ezio Melottiad626802012-10-16 21:50:33 +0300115administration. The Python interpreter checks for a ``pyvenv.cfg``,
Antoine Pitroua5e57972012-08-21 01:08:17 +0200116file whose existence signals the base of a virtual environment's directory
117tree.
Nick Coghlanb47b5392012-05-26 01:31:25 +1000118
R David Murrayf23e2b62012-09-29 19:41:26 -0400119(Implemented by Carl Meyer and Vinay Sajip.)
120
121.. seealso::
122
123 :pep:`405` - Python Virtual Environments
124 PEP written by Carl Meyer
125
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000126
Éric Araujo859aad62012-06-24 00:07:41 -0400127PEP 420: Namespace Packages
128===========================
129
130Native support for package directories that don't require ``__init__.py``
131marker files and can automatically span multiple path segments (inspired by
132various third party approaches to namespace packages, as described in
133:pep:`420`)
134
R David Murrayf23e2b62012-09-29 19:41:26 -0400135.. seealso::
136
137 :pep:`420` - Namespace packages
138 PEP written by Eric V. Smith; implementation by Eric V. Smith
139 and Barry Warsaw
140
Éric Araujo859aad62012-06-24 00:07:41 -0400141
142.. _pep-3118-update:
Nick Coghlan98e20702012-03-06 21:50:13 +1000143
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100144PEP 3118: New memoryview implementation and buffer protocol documentation
145=========================================================================
146
R David Murrayf23e2b62012-09-29 19:41:26 -0400147The implementation of :pep:`3118` has been significantly improved.
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100148
149The new memoryview implementation comprehensively fixes all ownership and
150lifetime issues of dynamically allocated fields in the Py_buffer struct
151that led to multiple crash reports. Additionally, several functions that
152crashed or returned incorrect results for non-contiguous or multi-dimensional
153input have been fixed.
154
155The memoryview object now has a PEP-3118 compliant getbufferproc()
156that checks the consumer's request type. Many new features have been
157added, most of them work in full generality for non-contiguous arrays
158and arrays with suboffsets.
159
160The documentation has been updated, clearly spelling out responsibilities
161for both exporters and consumers. Buffer request flags are grouped into
162basic and compound flags. The memory layout of non-contiguous and
163multi-dimensional NumPy-style arrays is explained.
164
165Features
166--------
167
168* All native single character format specifiers in struct module syntax
169 (optionally prefixed with '@') are now supported.
170
171* With some restrictions, the cast() method allows changing of format and
172 shape of C-contiguous arrays.
173
174* Multi-dimensional list representations are supported for any array type.
175
176* Multi-dimensional comparisons are supported for any array type.
177
Stefan Krah9e31d362012-09-08 15:35:01 +0200178* One-dimensional memoryviews of hashable (read-only) types with formats B,
179 b or c are now hashable. (Contributed by Antoine Pitrou in :issue:`13411`)
Nick Coghlan98e20702012-03-06 21:50:13 +1000180
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100181* Arbitrary slicing of any 1-D arrays type is supported. For example, it
182 is now possible to reverse a memoryview in O(1) by using a negative step.
183
184API changes
185-----------
186
187* The maximum number of dimensions is officially limited to 64.
188
189* The representation of empty shape, strides and suboffsets is now
190 an empty tuple instead of None.
191
192* Accessing a memoryview element with format 'B' (unsigned bytes)
193 now returns an integer (in accordance with the struct module syntax).
194 For returning a bytes object the view must be cast to 'c' first.
195
Nick Coghlan06e1ab02012-08-25 17:59:50 +1000196* memoryview comparisons now use the logical structure of the operands
197 and compare all array elements by value. All format strings in struct
198 module syntax are supported. Views with unrecognised format strings
199 are still permitted, but will always compare as unequal, regardless
200 of view contents.
201
Stefan Krah54c32032012-02-29 17:47:21 +0100202* For further changes see `Build and C API Changes`_ and `Porting C code`_ .
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100203
R David Murrayf23e2b62012-09-29 19:41:26 -0400204(Contributed by Stefan Krah in :issue:`10181`)
205
206.. seealso::
207
208 :pep:`3118` - Revising the Buffer Protocol
209
210
Antoine Pitrou037ffbf2011-10-24 00:25:41 +0200211.. _pep-393:
212
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300213PEP 393: Flexible String Representation
214=======================================
215
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200216The Unicode string type is changed to support multiple internal
217representations, depending on the character with the largest Unicode ordinal
218(1, 2, or 4 bytes) in the represented string. This allows a space-efficient
219representation in common cases, but gives access to full UCS-4 on all
220systems. For compatibility with existing APIs, several representations may
221exist in parallel; over time, this compatibility should be phased out.
Ezio Melotti397546a2011-09-29 08:34:36 +0300222
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200223On the Python side, there should be no downside to this change.
Ezio Melotti397546a2011-09-29 08:34:36 +0300224
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200225On the C API side, PEP 393 is fully backward compatible. The legacy API
226should remain available at least five years. Applications using the legacy
227API will not fully benefit of the memory reduction, or - worse - may use
228a bit more memory, because Python may have to maintain two versions of each
229string (in the legacy format and in the new efficient storage).
230
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100231Functionality
232-------------
233
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200234Changes introduced by :pep:`393` are the following:
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300235
Ezio Melotti397546a2011-09-29 08:34:36 +0300236* Python now always supports the full range of Unicode codepoints, including
237 non-BMP ones (i.e. from ``U+0000`` to ``U+10FFFF``). The distinction between
238 narrow and wide builds no longer exists and Python now behaves like a wide
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200239 build, even under Windows.
Ezio Melotti397546a2011-09-29 08:34:36 +0300240
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200241* With the death of narrow builds, the problems specific to narrow builds have
242 also been fixed, for example:
Ezio Melotti397546a2011-09-29 08:34:36 +0300243
244 * :func:`len` now always returns 1 for non-BMP characters,
245 so ``len('\U0010FFFF') == 1``;
246
247 * surrogate pairs are not recombined in string literals,
248 so ``'\uDBFF\uDFFF' != '\U0010FFFF'``;
249
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200250 * indexing or slicing non-BMP characters returns the expected value,
Ezio Melotti397546a2011-09-29 08:34:36 +0300251 so ``'\U0010FFFF'[0]`` now returns ``'\U0010FFFF'`` and not ``'\uDBFF'``;
252
Antoine Pitroud136aec2011-11-17 01:48:06 +0100253 * all other functions in the standard library now correctly handle
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200254 non-BMP codepoints.
Ezio Melotti397546a2011-09-29 08:34:36 +0300255
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300256* The value of :data:`sys.maxunicode` is now always ``1114111`` (``0x10FFFF``
257 in hexadecimal). The :c:func:`PyUnicode_GetMax` function still returns
258 either ``0xFFFF`` or ``0x10FFFF`` for backward compatibility, and it should
259 not be used with the new Unicode API (see :issue:`13054`).
260
Ezio Melotti397546a2011-09-29 08:34:36 +0300261* The :file:`./configure` flag ``--with-wide-unicode`` has been removed.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200262
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100263Performance and resource usage
264------------------------------
265
266The storage of Unicode strings now depends on the highest codepoint in the string:
267
268* pure ASCII and Latin1 strings (``U+0000-U+00FF``) use 1 byte per codepoint;
269
270* BMP strings (``U+0000-U+FFFF``) use 2 bytes per codepoint;
271
272* non-BMP strings (``U+10000-U+10FFFF``) use 4 bytes per codepoint.
273
Martin v. Löwisde157cc2012-03-06 08:42:17 +0100274The net effect is that for most applications, memory usage of string
275storage should decrease significantly - especially compared to former
276wide unicode builds - as, in many cases, strings will be pure ASCII
277even in international contexts (because many strings store non-human
278language data, such as XML fragments, HTTP headers, JSON-encoded data,
279etc.). We also hope that it will, for the same reasons, increase CPU
280cache efficiency on non-trivial applications. The memory usage of
281Python 3.3 is two to three times smaller than Python 3.2, and a little
282bit better than Python 2.7, on a Django benchmark (see the PEP for
283details).
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100284
R David Murrayf23e2b62012-09-29 19:41:26 -0400285.. seealso::
286
287 :pep:`393` - Flexible String Representation
288 PEP written by Martin von Löwis; implementation by Torsten Becker
289 and Martin von Löwis.
290
Éric Araujob07b97f2011-10-05 01:03:34 +0200291
Nick Coghlan349c8022012-09-30 13:00:43 +0530292.. _pep-397:
293
294PEP 397: Python Launcher for Windows
295====================================
296
297The Python 3.3 Windows installer now includes a ``py`` launcher application
298that can be used to launch Python applications in a version independent
299fashion.
300
301This launcher is invoked implicitly when double-clicking ``*.py`` files.
302If only a single Python version is installed on the system, that version
303will be used to run the file. If multiple versions are installed, the most
304recent version is used by default, but this can be overridden by including
305a Unix-style "shebang line" in the Python script.
306
307The launcher can also be used explicitly from the command line as the ``py``
308application. Running ``py`` follows the same version selection rules as
309implicitly launching scripts, but a more specific version can be selected
310by passing appropriate arguments (such as ``-3`` to request Python 3 when
311Python 2 is also installed, or ``-2.6`` to specifclly request an earlier
312Python version when a more recent version is installed).
313
314In addition to the launcher, the Windows installer now includes an
315option to add the newly installed Python to the system PATH (contributed
Brian Curtinf41d2022012-10-01 09:29:36 -0500316by Brian Curtin in :issue:`3561`).
Nick Coghlan349c8022012-09-30 13:00:43 +0530317
318.. seealso::
319
320 :pep:`397` - Python Launcher for Windows
321 PEP written by Mark Hammond and Martin v. Löwis; implementation by
322 Vinay Sajip.
323
324 Launcher documentation: :ref:`launcher`
325
326 Installer PATH modification: :ref:`windows-path-mod`
327
328
Antoine Pitrouc907de92012-08-21 00:53:06 +0200329.. _pep-3151:
330
Victor Stinnera1bf2982011-10-12 20:35:02 +0200331PEP 3151: Reworking the OS and IO exception hierarchy
332=====================================================
333
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200334The hierarchy of exceptions raised by operating system errors is now both
335simplified and finer-grained.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200336
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200337You don't have to worry anymore about choosing the appropriate exception
338type between :exc:`OSError`, :exc:`IOError`, :exc:`EnvironmentError`,
339:exc:`WindowsError`, :exc:`mmap.error`, :exc:`socket.error` or
340:exc:`select.error`. All these exception types are now only one:
341:exc:`OSError`. The other names are kept as aliases for compatibility
342reasons.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200343
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200344Also, it is now easier to catch a specific error condition. Instead of
345inspecting the ``errno`` attribute (or ``args[0]``) for a particular
346constant from the :mod:`errno` module, you can catch the adequate
347:exc:`OSError` subclass. The available subclasses are the following:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200348
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200349* :exc:`BlockingIOError`
350* :exc:`ChildProcessError`
351* :exc:`ConnectionError`
352* :exc:`FileExistsError`
353* :exc:`FileNotFoundError`
354* :exc:`InterruptedError`
355* :exc:`IsADirectoryError`
356* :exc:`NotADirectoryError`
357* :exc:`PermissionError`
358* :exc:`ProcessLookupError`
359* :exc:`TimeoutError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200360
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200361And the :exc:`ConnectionError` itself has finer-grained subclasses:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200362
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200363* :exc:`BrokenPipeError`
364* :exc:`ConnectionAbortedError`
365* :exc:`ConnectionRefusedError`
366* :exc:`ConnectionResetError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200367
368Thanks to the new exceptions, common usages of the :mod:`errno` can now be
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200369avoided. For example, the following code written for Python 3.2::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200370
371 from errno import ENOENT, EACCES, EPERM
372
373 try:
374 with open("document.txt") as f:
375 content = f.read()
376 except IOError as err:
377 if err.errno == ENOENT:
378 print("document.txt file is missing")
379 elif err.errno in (EACCES, EPERM):
380 print("You are not allowed to read document.txt")
381 else:
382 raise
383
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200384can now be written without the :mod:`errno` import and without manual
385inspection of exception attributes::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200386
387 try:
388 with open("document.txt") as f:
389 content = f.read()
390 except FileNotFoundError:
391 print("document.txt file is missing")
392 except PermissionError:
393 print("You are not allowed to read document.txt")
394
R David Murrayf23e2b62012-09-29 19:41:26 -0400395.. seealso::
396
397 :pep:`3151` - Reworking the OS and IO Exception Hierarchy
398 PEP written and implemented by Antoine Pitrou
399
Victor Stinnera1bf2982011-10-12 20:35:02 +0200400
Antoine Pitrouc907de92012-08-21 00:53:06 +0200401.. _pep-380:
402
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000403PEP 380: Syntax for Delegating to a Subgenerator
404================================================
405
406PEP 380 adds the ``yield from`` expression, allowing a generator to delegate
407part of its operations to another generator. This allows a section of code
408containing 'yield' to be factored out and placed in another generator.
409Additionally, the subgenerator is allowed to return with a value, and the
410value is made available to the delegating generator.
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000411
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000412While designed primarily for use in delegating to a subgenerator, the ``yield
413from`` expression actually allows delegation to arbitrary subiterators.
414
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000415For simple iterators, ``yield from iterable`` is essentially just a shortened
416form of ``for item in iterable: yield item``::
417
418 >>> def g(x):
419 ... yield from range(x, 0, -1)
420 ... yield from range(x)
421 ...
422 >>> list(g(5))
423 [5, 4, 3, 2, 1, 0, 1, 2, 3, 4]
424
425However, unlike an ordinary loop, ``yield from`` allows subgenerators to
426receive sent and thrown values directly from the calling scope, and
427return a final value to the outer generator::
428
429 >>> def accumulate(start=0):
430 ... tally = start
431 ... while 1:
432 ... next = yield
433 ... if next is None:
434 ... return tally
435 ... tally += next
436 ...
437 >>> def gather_tallies(tallies, start=0):
438 ... while 1:
439 ... tally = yield from accumulate()
440 ... tallies.append(tally)
441 ...
442 >>> tallies = []
443 >>> acc = gather_tallies(tallies)
444 >>> next(acc) # Ensure the accumulator is ready to accept values
445 >>> for i in range(10):
446 ... acc.send(i)
447 ...
448 >>> acc.send(None) # Finish the first tally
449 >>> for i in range(5):
450 ... acc.send(i)
451 ...
452 >>> acc.send(None) # Finish the second tally
453 >>> tallies
454 [45, 10]
455
456The main principle driving this change is to allow even generators that are
457designed to be used with the ``send`` and ``throw`` methods to be split into
458multiple subgenerators as easily as a single large function can be split into
459multiple subfunctions.
460
R David Murrayf23e2b62012-09-29 19:41:26 -0400461.. seealso::
462
463 :pep:`380` - Syntax for Delegating to a Subgenerator
464 PEP written by Greg Ewing; implementation by Greg Ewing, integrated into
465 3.3 by Renaud Blanch, Ryan Kelly and Nick Coghlan, documentation by
466 Zbigniew Jędrzejewski-Szmek and Nick Coghlan)
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000467
468
Nick Coghlanab7bf212012-02-26 17:49:52 +1000469PEP 409: Suppressing exception context
470======================================
471
Nick Coghlanab7bf212012-02-26 17:49:52 +1000472PEP 409 introduces new syntax that allows the display of the chained
473exception context to be disabled. This allows cleaner error messages in
474applications that convert between exception types::
475
476 >>> class D:
477 ... def __init__(self, extra):
478 ... self._extra_attributes = extra
479 ... def __getattr__(self, attr):
480 ... try:
481 ... return self._extra_attributes[attr]
482 ... except KeyError:
483 ... raise AttributeError(attr) from None
484 ...
485 >>> D({}).x
486 Traceback (most recent call last):
487 File "<stdin>", line 1, in <module>
488 File "<stdin>", line 8, in __getattr__
489 AttributeError: x
490
491Without the ``from None`` suffix to suppress the cause, the original
492exception would be displayed by default::
493
494 >>> class C:
495 ... def __init__(self, extra):
496 ... self._extra_attributes = extra
497 ... def __getattr__(self, attr):
498 ... try:
499 ... return self._extra_attributes[attr]
500 ... except KeyError:
501 ... raise AttributeError(attr)
502 ...
503 >>> C({}).x
504 Traceback (most recent call last):
505 File "<stdin>", line 6, in __getattr__
506 KeyError: 'x'
507
508 During handling of the above exception, another exception occurred:
509
510 Traceback (most recent call last):
511 File "<stdin>", line 1, in <module>
512 File "<stdin>", line 8, in __getattr__
513 AttributeError: x
514
515No debugging capability is lost, as the original exception context remains
516available if needed (for example, if an intervening library has incorrectly
517suppressed valuable underlying details)::
518
519 >>> try:
520 ... D({}).x
521 ... except AttributeError as exc:
522 ... print(repr(exc.__context__))
523 ...
524 KeyError('x',)
525
R David Murrayf23e2b62012-09-29 19:41:26 -0400526.. seealso::
527
528 :pep:`409` - Suppressing exception context
529 PEP written by Ethan Furman; implemented by Ethan Furman and Nick
530 Coghlan.
531
Nick Coghlanab7bf212012-02-26 17:49:52 +1000532
Nick Coghlan98e20702012-03-06 21:50:13 +1000533PEP 414: Explicit Unicode literals
534======================================
535
Nick Coghlan98e20702012-03-06 21:50:13 +1000536To ease the transition from Python 2 for Unicode aware Python applications
537that make heavy use of Unicode literals, Python 3.3 once again supports the
538"``u``" prefix for string literals. This prefix has no semantic significance
539in Python 3, it is provided solely to reduce the number of purely mechanical
540changes in migrating to Python 3, making it easier for developers to focus on
541the more significant semantic changes (such as the stricter default
542separation of binary and text data).
543
R David Murrayf23e2b62012-09-29 19:41:26 -0400544.. seealso::
545
546 :pep:`414` - Explicit Unicode literals
547 PEP written by Armin Ronacher.
548
Nick Coghlan98e20702012-03-06 21:50:13 +1000549
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100550PEP 3155: Qualified name for classes and functions
551==================================================
552
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100553Functions and class objects have a new ``__qualname__`` attribute representing
554the "path" from the module top-level to their definition. For global functions
555and classes, this is the same as ``__name__``. For other functions and classes,
556it provides better information about where they were actually defined, and
557how they might be accessible from the global scope.
558
559Example with (non-bound) methods::
Nick Coghlan2dfe6b02012-01-14 14:19:49 +1000560
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100561 >>> class C:
562 ... def meth(self):
563 ... pass
564 >>> C.meth.__name__
565 'meth'
566 >>> C.meth.__qualname__
567 'C.meth'
568
569Example with nested classes::
570
571 >>> class C:
572 ... class D:
573 ... def meth(self):
574 ... pass
575 ...
576 >>> C.D.__name__
577 'D'
578 >>> C.D.__qualname__
579 'C.D'
580 >>> C.D.meth.__name__
581 'meth'
582 >>> C.D.meth.__qualname__
583 'C.D.meth'
584
585Example with nested functions::
586
587 >>> def outer():
588 ... def inner():
589 ... pass
590 ... return inner
591 ...
592 >>> outer().__name__
593 'inner'
594 >>> outer().__qualname__
595 'outer.<locals>.inner'
596
Antoine Pitroue7ede062011-11-25 19:11:26 +0100597The string representation of those objects is also changed to include the
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100598new, more precise information::
599
600 >>> str(C.D)
601 "<class '__main__.C.D'>"
602 >>> str(C.D.meth)
603 '<function C.D.meth at 0x7f46b9fe31e0>'
604
R David Murrayf23e2b62012-09-29 19:41:26 -0400605.. seealso::
606
607 :pep:`3155` - Qualified name for classes and functions
608 PEP written and implemented by Antoine Pitrou.
609
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100610
Antoine Pitrouc907de92012-08-21 00:53:06 +0200611.. _pep-412:
612
Antoine Pitroud94adb72012-07-07 17:33:42 +0200613PEP 412: Key-Sharing Dictionary
614===============================
615
Antoine Pitroud94adb72012-07-07 17:33:42 +0200616Dictionaries used for the storage of objects' attributes are now able to
617share part of their internal storage between each other (namely, the part
618which stores the keys and their respective hashes). This reduces the memory
619consumption of programs creating many instances of non-builtin types.
620
R David Murrayf23e2b62012-09-29 19:41:26 -0400621.. seealso::
622
623 :pep:`412` - Key-Sharing Dictionary
624 PEP written and implemented by Mark Shannon.
625
Antoine Pitroud94adb72012-07-07 17:33:42 +0200626
Andrew Svetlovac23c9e2012-08-13 21:27:56 +0300627PEP 362: Function Signature Object
628==================================
629
Andrew Svetlovac23c9e2012-08-13 21:27:56 +0300630A new function :func:`inspect.signature` makes introspection of python
631callables easy and straightforward. A broad range of callables is supported:
632python functions, decorated or not, classes, and :func:`functools.partial`
633objects. New classes :class:`inspect.Signature`, :class:`inspect.Parameter`
634and :class:`inspect.BoundArguments` hold information about the call signatures,
635such as, annotations, default values, parameters kinds, and bound arguments,
636which considerably simplifies writing decorators and any code that validates
637or amends calling signatures or arguments.
638
R David Murrayf23e2b62012-09-29 19:41:26 -0400639.. seealso::
640
641 :pep:`362`: - Function Signature Object
642 PEP written by Brett Cannon, Yury Selivanov, Larry Hastings, Jiwon Seo;
643 implemented by Yury Selivanov.
644
Andrew Svetlovac23c9e2012-08-13 21:27:56 +0300645
Eric Snowb2a61e12012-09-05 22:19:38 -0700646PEP 421: Adding sys.implementation
647==================================
648
Eric Snowb2a61e12012-09-05 22:19:38 -0700649A new attribute on the :mod:`sys` module exposes details specific to the
650implementation of the currently running interpreter. The initial set of
651attributes on :attr:`sys.implementation` are ``name``, ``version``,
652``hexversion``, and ``cache_tag``.
653
654The intention of ``sys.implementation`` is to consolidate into one namespace
655the implementation-specific data used by the standard library. This allows
656different Python implementations to share a single standard library code base
657much more easily. In its initial state, ``sys.implementation`` holds only a
658small portion of the implementation-specific data. Over time that ratio will
659shift in order to make the standard library more portable.
660
661One example of improved standard library portability is ``cache_tag``. As of
662Python 3.3, ``sys.implementation.cache_tag`` is used by :mod:`importlib` to
663support :pep:`3147` compliance. Any Python implementation that uses
664``importlib`` for its built-in import system may use ``cache_tag`` to control
665the caching behavior for modules.
666
667SimpleNamespace
668---------------
669
670The implementation of ``sys.implementation`` also introduces a new type to
671Python: :class:`types.SimpleNamespace`. In contrast to a mapping-based
672namespace, like :class:`dict`, ``SimpleNamespace`` is attribute-based, like
673:class:`object`. However, unlike ``object``, ``SimpleNamespace`` instances
674are writable. This means that you can add, remove, and modify the namespace
675through normal attribute access.
676
R David Murrayf23e2b62012-09-29 19:41:26 -0400677.. seealso::
678
679 :pep:`421` - Adding sys.implementation
680 PEP written and implemented by Eric Snow.
681
Eric Snowb2a61e12012-09-05 22:19:38 -0700682
Antoine Pitrouc907de92012-08-21 00:53:06 +0200683.. _importlib:
684
Brett Cannonc2043482012-04-29 20:59:41 -0400685Using importlib as the Implementation of Import
686===============================================
687:issue:`2377` - Replace __import__ w/ importlib.__import__
688:issue:`13959` - Re-implement parts of :mod:`imp` in pure Python
689:issue:`14605` - Make import machinery explicit
690:issue:`14646` - Require loaders set __loader__ and __package__
691
Brett Cannonc2043482012-04-29 20:59:41 -0400692The :func:`__import__` function is now powered by :func:`importlib.__import__`.
693This work leads to the completion of "phase 2" of :pep:`302`. There are
694multiple benefits to this change. First, it has allowed for more of the
695machinery powering import to be exposed instead of being implicit and hidden
696within the C code. It also provides a single implementation for all Python VMs
697supporting Python 3.3 to use, helping to end any VM-specific deviations in
698import semantics. And finally it eases the maintenance of import, allowing for
699future growth to occur.
700
R David Murraycff1c6f2012-09-29 14:34:43 -0400701For the common user, there should be no visible change in semantics. For
702those whose code currently manipulates import or calls import
703programmatically, the code changes that might possibly be required are covered
704in the `Porting Python code`_ section of this document.
Brett Cannonc2043482012-04-29 20:59:41 -0400705
706New APIs
707--------
708One of the large benefits of this work is the exposure of what goes into
709making the import statement work. That means the various importers that were
710once implicit are now fully exposed as part of the :mod:`importlib` package.
711
Brett Cannon077ef452012-08-02 17:50:06 -0400712The abstract base classes defined in :mod:`importlib.abc` have been expanded
713to properly delineate between :term:`meta path finders <meta path finder>`
714and :term:`path entry finders <path entry finder>` by introducing
715:class:`importlib.abc.MetaPathFinder` and
716:class:`importlib.abc.PathEntryFinder`, respectively. The old ABC of
717:class:`importlib.abc.Finder` is now only provided for backwards-compatibility
718and does not enforce any method requirements.
719
720In terms of finders, :class:`importlib.machinery.FileFinder` exposes the
Brett Cannonc2043482012-04-29 20:59:41 -0400721mechanism used to search for source and bytecode files of a module. Previously
722this class was an implicit member of :attr:`sys.path_hooks`.
723
724For loaders, the new abstract base class :class:`importlib.abc.FileLoader` helps
725write a loader that uses the file system as the storage mechanism for a module's
726code. The loader for source files
727(:class:`importlib.machinery.SourceFileLoader`), sourceless bytecode files
728(:class:`importlib.machinery.SourcelessFileLoader`), and extension modules
729(:class:`importlib.machinery.ExtensionFileLoader`) are now available for
730direct use.
731
732:exc:`ImportError` now has ``name`` and ``path`` attributes which are set when
733there is relevant data to provide. The message for failed imports will also
734provide the full name of the module now instead of just the tail end of the
735module's name.
736
737The :func:`importlib.invalidate_caches` function will now call the method with
738the same name on all finders cached in :attr:`sys.path_importer_cache` to help
739clean up any stored state as necessary.
740
741Visible Changes
742---------------
R David Murrayf23e2b62012-09-29 19:41:26 -0400743
744For potential required changes to code, see the `Porting Python code`_
745section.
Brett Cannonc2043482012-04-29 20:59:41 -0400746
747Beyond the expanse of what :mod:`importlib` now exposes, there are other
748visible changes to import. The biggest is that :attr:`sys.meta_path` and
Brett Cannon077ef452012-08-02 17:50:06 -0400749:attr:`sys.path_hooks` now store all of the meta path finders and path entry
750hooks used by import. Previously the finders were implicit and hidden within
751the C code of import instead of being directly exposed. This means that one can
752now easily remove or change the order of the various finders to fit one's needs.
Brett Cannonc2043482012-04-29 20:59:41 -0400753
754Another change is that all modules have a ``__loader__`` attribute, storing the
755loader used to create the module. :pep:`302` has been updated to make this
756attribute mandatory for loaders to implement, so in the future once 3rd-party
757loaders have been updated people will be able to rely on the existence of the
758attribute. Until such time, though, import is setting the module post-load.
759
760Loaders are also now expected to set the ``__package__`` attribute from
761:pep:`366`. Once again, import itself is already setting this on all loaders
762from :mod:`importlib` and import itself is setting the attribute post-load.
763
764``None`` is now inserted into :attr:`sys.path_importer_cache` when no finder
765can be found on :attr:`sys.path_hooks`. Since :class:`imp.NullImporter` is not
766directly exposed on :attr:`sys.path_hooks` it could no longer be relied upon to
767always be available to use as a value representing no finder found.
768
769All other changes relate to semantic changes which should be taken into
770consideration when updating code for Python 3.3, and thus should be read about
771in the `Porting Python code`_ section of this document.
772
R David Murrayf23e2b62012-09-29 19:41:26 -0400773(Implementation by Brett Cannon)
774
Brett Cannonc2043482012-04-29 20:59:41 -0400775
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000776Other Language Changes
777======================
778
779Some smaller changes made to the core Python language are:
780
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100781* Added support for Unicode name aliases and named sequences.
782 Both :func:`unicodedata.lookup()` and ``'\N{...}'`` now resolve name aliases,
783 and :func:`unicodedata.lookup()` resolves named sequences too.
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000784
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100785 (Contributed by Ezio Melotti in :issue:`12753`)
Ezio Melotti931b8aa2011-10-21 21:57:36 +0300786
Nick Coghlanc4bacd32012-09-27 19:58:31 +1000787* Unicode database updated to UCD version 6.1.0
788
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100789* Equality comparisons on :func:`range` objects now return a result reflecting
790 the equality of the underlying sequences generated by those range objects.
Sandro Tosicd899122012-01-22 12:16:04 +0100791 (:issue:`13201`)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000792
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100793* The ``count()``, ``find()``, ``rfind()``, ``index()`` and ``rindex()``
794 methods of :class:`bytes` and :class:`bytearray` objects now accept an
795 integer between 0 and 255 as their first argument.
Mark Dickinson36645682011-10-23 19:53:01 +0100796
Petri Lehtinen6c3f1dd2012-06-26 10:23:07 +0300797 (Contributed by Petri Lehtinen in :issue:`12170`)
Mark Dickinson36645682011-10-23 19:53:01 +0100798
R David Murraye54c7182012-10-16 21:52:24 -0400799* The ``rjust()``, ``ljust()``, and ``center()`` methods of :class:`bytes`
800 and :class:`bytearray` now accept a :class:`bytearray` for the ``fill``
801 argument. (Contributed by Petri Lehtinen in :issue:`12380`.)
802
Eli Bendersky7add4ea2012-03-17 15:14:35 +0200803* New methods have been added to :class:`list` and :class:`bytearray`:
R David Murrayd2489cf2012-09-30 17:28:54 -0400804 ``copy()`` and ``clear()`` (:issue:`10516`). Consequently,
805 :class:`~collections.abc.MutableSequence` now also defines a
806 :meth:`~collections.abc.MutableSequence.clear` method (:issue:`11388`).
Petri Lehtinen61ea8a02011-11-24 22:00:46 +0200807
Antoine Pitrou9a864472012-05-04 23:15:47 +0200808* Raw bytes literals can now be written ``rb"..."`` as well as ``br"..."``.
R David Murrayf23e2b62012-09-29 19:41:26 -0400809
Antoine Pitrou9a864472012-05-04 23:15:47 +0200810 (Contributed by Antoine Pitrou in :issue:`13748`.)
811
812* :meth:`dict.setdefault` now does only one lookup for the given key, making
813 it atomic when used with built-in types.
R David Murrayf23e2b62012-09-29 19:41:26 -0400814
Antoine Pitrou9a864472012-05-04 23:15:47 +0200815 (Contributed by Filip Gruszczyński in :issue:`13521`.)
816
R David Murrayf23e2b62012-09-29 19:41:26 -0400817* The error messages produced when a function call does not match the function
818 signature have been significantly improved.
Antoine Pitrou9a864472012-05-04 23:15:47 +0200819
R David Murrayf23e2b62012-09-29 19:41:26 -0400820 (Contributed by Benjamin Peterson.)
Benjamin Petersone50d6ab2012-04-03 00:52:18 -0400821
Antoine Pitrou9a864472012-05-04 23:15:47 +0200822
Antoine Pitrou79341e72012-05-17 21:13:45 +0200823A Finer-Grained Import Lock
824===========================
825
826Previous versions of CPython have always relied on a global import lock.
827This led to unexpected annoyances, such as deadlocks when importing a module
828would trigger code execution in a different thread as a side-effect.
829Clumsy workarounds were sometimes employed, such as the
830:c:func:`PyImport_ImportModuleNoBlock` C API function.
831
832In Python 3.3, importing a module takes a per-module lock. This correctly
833serializes importation of a given module from multiple threads (preventing
834the exposure of incompletely initialized modules), while eliminating the
835aforementioned annoyances.
836
R David Murrayf23e2b62012-09-29 19:41:26 -0400837(Contributed by Antoine Pitrou in :issue:`9260`.)
Antoine Pitrou79341e72012-05-17 21:13:45 +0200838
839
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200840Builtin functions and types
841===========================
Victor Stinnerfa0d6282012-08-05 15:56:51 +0200842
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200843* :func:`open` gets a new *opener* parameter: the underlying file descriptor
844 for the file object is then obtained by calling *opener* with (*file*,
845 *flags*). It can be used to use custom flags like :data:`os.O_CLOEXEC` for
846 example. The ``'x'`` mode was added: open for exclusive creation, failing if
847 the file already exists.
848* :func:`print`: added the *flush* keyword argument. If the *flush* keyword
849 argument is true, the stream is forcibly flushed.
850* :func:`hash`: hash randomization is enabled by default, see
851 :meth:`object.__hash__` and :envvar:`PYTHONHASHSEED`.
852* The :class:`str` type gets a new :meth:`~str.casefold` method: return a
853 casefolded copy of the string, casefolded strings may be used for caseless
854 matching. For example, ``'ß'.casefold()`` returns ``'ss'``.
Nick Coghlan273069c2012-08-20 17:14:07 +1000855* The sequence documentation has been substantially rewritten to better
856 explain the binary/text sequence distinction and to provide specific
857 documentation sections for the individual builtin sequence types
858 (:issue:`4966`)
Victor Stinnerfa0d6282012-08-05 15:56:51 +0200859
R David Murrayf23e2b62012-09-29 19:41:26 -0400860
Victor Stinner636130e2012-08-05 16:37:12 +0200861New Modules
862===========
863
864faulthandler
865------------
866
Victor Stinner1da769a2012-09-18 22:40:03 +0200867This new debug module :mod:`faulthandler` contains functions to dump Python tracebacks explicitly,
Victor Stinner636130e2012-08-05 16:37:12 +0200868on a fault (a crash like a segmentation fault), after a timeout, or on a user
869signal. Call :func:`faulthandler.enable` to install fault handlers for the
870:const:`SIGSEGV`, :const:`SIGFPE`, :const:`SIGABRT`, :const:`SIGBUS`, and
871:const:`SIGILL` signals. You can also enable them at startup by setting the
872:envvar:`PYTHONFAULTHANDLER` environment variable or by using :option:`-X`
873``faulthandler`` command line option.
874
875Example of a segmentation fault on Linux: ::
876
877 $ python -q -X faulthandler
878 >>> import ctypes
879 >>> ctypes.string_at(0)
880 Fatal Python error: Segmentation fault
881
882 Current thread 0x00007fb899f39700:
883 File "/home/python/cpython/Lib/ctypes/__init__.py", line 486 in string_at
884 File "<stdin>", line 1 in <module>
885 Segmentation fault
886
887
888ipaddress
889---------
890
891The new :mod:`ipaddress` module provides tools for creating and manipulating
892objects representing IPv4 and IPv6 addresses, networks and interfaces (i.e.
893an IP address associated with a specific IP subnet).
894
895(Contributed by Google and Peter Moody in :pep:`3144`)
896
897lzma
898----
899
900The newly-added :mod:`lzma` module provides data compression and decompression
901using the LZMA algorithm, including support for the ``.xz`` and ``.lzma``
902file formats.
903
904(Contributed by Nadeem Vawda and Per Øyvind Karlsen in :issue:`6715`)
905
906
907Improved Modules
908================
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000909
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100910abc
911---
912
913Improved support for abstract base classes containing descriptors composed with
914abstract methods. The recommended approach to declaring abstract descriptors is
915now to provide :attr:`__isabstractmethod__` as a dynamically updated
916property. The built-in descriptors have been updated accordingly.
917
918 * :class:`abc.abstractproperty` has been deprecated, use :class:`property`
919 with :func:`abc.abstractmethod` instead.
920 * :class:`abc.abstractclassmethod` has been deprecated, use
921 :class:`classmethod` with :func:`abc.abstractmethod` instead.
922 * :class:`abc.abstractstaticmethod` has been deprecated, use
923 :class:`staticmethod` with :func:`abc.abstractmethod` instead.
924
925(Contributed by Darren Dale in :issue:`11610`)
926
R David Murrayd2489cf2012-09-30 17:28:54 -0400927:meth:`abc.ABCMeta.register` now returns the registered subclass, which means
928it can now be used as a class decorator (:issue:`10868`).
929
930
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500931array
932-----
933
934The :mod:`array` module supports the :c:type:`long long` type using ``q`` and
935``Q`` type codes.
936
937(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`)
938
939
R David Murrayf4c27572012-10-06 23:19:17 -0400940base64
941------
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200942
943ASCII-only Unicode strings are now accepted by the decoding functions of the
R David Murrayf4c27572012-10-06 23:19:17 -0400944:mod:`base64` modern interface. For example, ``base64.b64decode('YWJj')``
945returns ``b'abc'``. (Contributed by Catalin Iacob in :issue:`13641`.)
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200946
947
R David Murrayfd740962012-10-06 22:08:08 -0400948binascii
949--------
950
951In addition to the binary objects they normally accept, the ``a2b_`` functions
952now all also accept ASCII-only strings as input. (Contributed by Antoine
953Pitrou in :issue:`13637`.)
954
955
Nadeem Vawdad7e5c6e2012-02-12 01:34:18 +0200956bz2
957---
958
959The :mod:`bz2` module has been rewritten from scratch. In the process, several
960new features have been added:
961
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200962* New :func:`bz2.open` function: open a bzip2-compressed file in binary or
963 text mode.
964
Nadeem Vawdad7e5c6e2012-02-12 01:34:18 +0200965* :class:`bz2.BZ2File` can now read from and write to arbitrary file-like
966 objects, by means of its constructor's *fileobj* argument.
967
968 (Contributed by Nadeem Vawda in :issue:`5863`)
969
970* :class:`bz2.BZ2File` and :func:`bz2.decompress` can now decompress
971 multi-stream inputs (such as those produced by the :program:`pbzip2` tool).
972 :class:`bz2.BZ2File` can now also be used to create this type of file, using
973 the ``'a'`` (append) mode.
974
975 (Contributed by Nir Aides in :issue:`1625`)
976
977* :class:`bz2.BZ2File` now implements all of the :class:`io.BufferedIOBase` API,
978 except for the :meth:`detach` and :meth:`truncate` methods.
979
980
Victor Stinner2cded9c2011-07-08 01:45:13 +0200981codecs
982------
983
Antoine Pitrou4f863432012-02-12 02:12:47 +0100984The :mod:`~encodings.mbcs` codec has been rewritten to handle correctly
Georg Brandlff962c52012-02-04 08:55:56 +0100985``replace`` and ``ignore`` error handlers on all Windows versions. The
986:mod:`~encodings.mbcs` codec now supports all error handlers, instead of only
987``replace`` to encode and ``ignore`` to decode.
Victor Stinner3a50e702011-10-18 21:21:00 +0200988
Georg Brandlff962c52012-02-04 08:55:56 +0100989A new Windows-only codec has been added: ``cp65001`` (:issue:`13216`). It is the
990Windows code page 65001 (Windows UTF-8, ``CP_UTF8``). For example, it is used
991by ``sys.stdout`` if the console output code page is set to cp65001 (e.g., using
992``chcp 65001`` command).
Victor Stinner2f3ca9f2011-10-27 01:38:56 +0200993
Georg Brandlff962c52012-02-04 08:55:56 +0100994Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200995byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
996'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200997
Georg Brandl6c0929b2011-07-09 11:43:33 +0200998(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200999
Georg Brandlff962c52012-02-04 08:55:56 +01001000Incremental CJK codec encoders are no longer reset at each call to their
1001encode() methods. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +02001002
1003 $ ./python -q
1004 >>> import codecs
1005 >>> encoder = codecs.getincrementalencoder('hz')('strict')
1006 >>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
1007 b'~{NpJ)l6HK!#~} Bye.'
1008
Georg Brandl6c0929b2011-07-09 11:43:33 +02001009This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older Python
Victor Stinner2cded9c2011-07-08 01:45:13 +02001010versions.
1011
Georg Brandl6c0929b2011-07-09 11:43:33 +02001012(:issue:`12100`)
Victor Stinner2cded9c2011-07-08 01:45:13 +02001013
Victor Stinner9f4b1e92011-11-10 20:56:30 +01001014The ``unicode_internal`` codec has been deprecated.
1015
Éric Araujo4f61a2d2012-04-04 23:01:01 -04001016
1017collections
1018-----------
1019
1020Addition of a new :class:`~collections.ChainMap` class to allow treating a
R David Murraya21e5152012-10-06 16:29:14 -04001021number of mappings as a single unit. (Written by Raymond Hettinger for
1022:issue:`11089`, made public in :issue:`11297`)
Éric Araujo4f61a2d2012-04-04 23:01:01 -04001023
1024The abstract base classes have been moved in a new :mod:`collections.abc`
1025module, to better differentiate between the abstract and the concrete
1026collections classes. Aliases for ABCs are still present in the
R David Murraya21e5152012-10-06 16:29:14 -04001027:mod:`collections` module to preserve existing imports. (:issue:`11085`)
Éric Araujo4f61a2d2012-04-04 23:01:01 -04001028
1029.. XXX addition of __slots__ to ABCs not recorded here: internal detail
1030
R David Murraya21e5152012-10-06 16:29:14 -04001031The :class:`~collections.Counter` class now supports the unary ``+`` and ``-``
1032operators, as well as the in-place operators ``+=``, ``-=``, ``|=``, and
1033``&=``. (Contributed by Raymond Hettinger in :issue:`13121`.)
1034
Éric Araujo4f61a2d2012-04-04 23:01:01 -04001035
Nick Coghlan3267a302012-05-21 22:54:43 +10001036contextlib
1037----------
1038
Giampaolo Rodola'15c88492012-09-25 12:00:04 -07001039:class:`~contextlib.ExitStack` now provides a solid foundation for
Nick Coghlan3267a302012-05-21 22:54:43 +10001040programmatic manipulation of context managers and similar cleanup
1041functionality. Unlike the previous ``contextlib.nested`` API (which was
1042deprecated and removed), the new API is designed to work correctly
1043regardless of whether context managers acquire their resources in
Nick Coghlan161ea6a2012-05-22 23:04:42 +10001044their ``__init__`` method (for example, file objects) or in their
Nick Coghlan3267a302012-05-21 22:54:43 +10001045``__enter__`` method (for example, synchronisation objects from the
1046:mod:`threading` module).
1047
1048(:issue:`13585`)
1049
1050
Éric Araujo84b8ed82011-08-29 21:42:47 +02001051crypt
1052-----
1053
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001054Addition of salt and modular crypt format (hashing method) and the :func:`~crypt.mksalt`
Victor Stinnerc78fb332011-09-21 03:35:44 +02001055function to the :mod:`crypt` module.
Éric Araujo84b8ed82011-08-29 21:42:47 +02001056
1057(:issue:`10924`)
1058
Victor Stinnera7878b72011-07-14 23:07:44 +02001059curses
1060------
1061
Victor Stinner0fdfceb2011-11-25 22:10:02 +01001062 * If the :mod:`curses` module is linked to the ncursesw library, use Unicode
1063 functions when Unicode strings or characters are passed (e.g.
1064 :c:func:`waddwstr`), and bytes functions otherwise (e.g. :c:func:`waddstr`).
1065 * Use the locale encoding instead of ``utf-8`` to encode Unicode strings.
1066 * :class:`curses.window` has a new :attr:`curses.window.encoding` attribute.
Victor Stinnerc78fb332011-09-21 03:35:44 +02001067 * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
1068 method to get a wide character
1069 * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
1070 push a wide character so the next :meth:`~curses.window.get_wch` will return
1071 it
Victor Stinnera7878b72011-07-14 23:07:44 +02001072
Victor Stinnerc78fb332011-09-21 03:35:44 +02001073(Contributed by Iñigo Serna in :issue:`6755`)
Victor Stinnera7878b72011-07-14 23:07:44 +02001074
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001075datetime
1076--------
1077
1078 * Equality comparisons between naive and aware :class:`~datetime.datetime`
R David Murrayd2489cf2012-09-30 17:28:54 -04001079 instances now return :const:`False` instead of raising :exc:`TypeError`
1080 (:issue:`15006`).
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001081 * New :meth:`datetime.datetime.timestamp` method: Return POSIX timestamp
1082 corresponding to the :class:`~datetime.datetime` instance.
1083 * The :meth:`datetime.datetime.strftime` method supports formatting years
1084 older than 1000.
R David Murraydefdb162012-09-29 10:53:31 -04001085 * The :meth:`datetime.datetime.astimezone` method can now be
Alexander Belopolsky35d600c2012-08-22 23:14:29 -04001086 called without arguments to convert datetime instance to the system
1087 timezone.
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001088
R David Murrayf23e2b62012-09-29 19:41:26 -04001089
1090.. _new-decimal:
1091
Stefan Krah1919b7e2012-03-21 18:25:23 +01001092decimal
1093-------
1094
1095:issue:`7652` - integrate fast native decimal arithmetic.
1096 C-module and libmpdec written by Stefan Krah.
1097
1098The new C version of the decimal module integrates the high speed libmpdec
Stefan Krahbf803082012-04-01 13:07:24 +02001099library for arbitrary precision correctly-rounded decimal floating point
1100arithmetic. libmpdec conforms to IBM's General Decimal Arithmetic Specification.
Stefan Krah1919b7e2012-03-21 18:25:23 +01001101
Stefan Krah0c0914e2012-04-09 20:31:15 +02001102Performance gains range from 10x for database applications to 100x for
Stefan Krahbf803082012-04-01 13:07:24 +02001103numerically intensive applications. These numbers are expected gains
1104for standard precisions used in decimal floating point arithmetic. Since
1105the precision is user configurable, the exact figures may vary. For example,
1106in integer bignum arithmetic the differences can be significantly higher.
1107
1108The following table is meant as an illustration. Benchmarks are available
Georg Brandl204e7892012-04-01 13:10:58 +02001109at http://www.bytereef.org/mpdecimal/quickstart.html.
Stefan Krah1919b7e2012-03-21 18:25:23 +01001110
1111 +---------+-------------+--------------+-------------+
1112 | | decimal.py | _decimal | speedup |
1113 +=========+=============+==============+=============+
Stefan Kraha3f4a162012-09-01 14:27:51 +02001114 | pi | 42.02s | 0.345s | 120x |
Stefan Krah1919b7e2012-03-21 18:25:23 +01001115 +---------+-------------+--------------+-------------+
1116 | telco | 172.19s | 5.68s | 30x |
1117 +---------+-------------+--------------+-------------+
1118 | psycopg | 3.57s | 0.29s | 12x |
1119 +---------+-------------+--------------+-------------+
1120
1121Features
1122~~~~~~~~
1123
1124* The :exc:`~decimal.FloatOperation` signal optionally enables stricter
1125 semantics for mixing floats and Decimals.
1126
1127* If Python is compiled without threads, the C version automatically
1128 disables the expensive thread local context machinery. In this case,
1129 the variable :data:`~decimal.HAVE_THREADS` is set to False.
1130
1131API changes
1132~~~~~~~~~~~
1133
1134* The C module has the following context limits, depending on the machine
1135 architecture:
1136
1137 +-------------------+---------------------+------------------------------+
1138 | | 32-bit | 64-bit |
1139 +===================+=====================+==============================+
1140 | :const:`MAX_PREC` | :const:`425000000` | :const:`999999999999999999` |
1141 +-------------------+---------------------+------------------------------+
1142 | :const:`MAX_EMAX` | :const:`425000000` | :const:`999999999999999999` |
1143 +-------------------+---------------------+------------------------------+
1144 | :const:`MIN_EMIN` | :const:`-425000000` | :const:`-999999999999999999` |
1145 +-------------------+---------------------+------------------------------+
1146
1147* In the context templates (:class:`~decimal.DefaultContext`,
1148 :class:`~decimal.BasicContext` and :class:`~decimal.ExtendedContext`)
1149 the magnitude of :attr:`~decimal.Context.Emax` and
1150 :attr:`~decimal.Context.Emin` has changed to :const:`999999`.
1151
1152* The :class:`~decimal.Decimal` constructor in decimal.py does not observe
1153 the context limits and converts values with arbitrary exponents or precision
1154 exactly. Since the C version has internal limits, the following scheme is
1155 used: If possible, values are converted exactly, otherwise
1156 :exc:`~decimal.InvalidOperation` is raised and the result is NaN. In the
1157 latter case it is always possible to use :meth:`~decimal.Context.create_decimal`
1158 in order to obtain a rounded or inexact value.
1159
1160
1161* The power function in decimal.py is always correctly-rounded. In the
1162 C version, it is defined in terms of the correctly-rounded
1163 :meth:`~decimal.Decimal.exp` and :meth:`~decimal.Decimal.ln` functions,
1164 but the final result is only "almost always correctly rounded".
1165
1166
1167* In the C version, the context dictionary containing the signals is a
1168 :class:`~collections.abc.MutableMapping`. For speed reasons,
1169 :attr:`~decimal.Context.flags` and :attr:`~decimal.Context.traps` always
1170 refer to the same :class:`~collections.abc.MutableMapping` that the context
1171 was initialized with. If a new signal dictionary is assigned,
1172 :attr:`~decimal.Context.flags` and :attr:`~decimal.Context.traps`
1173 are updated with the new values, but they do not reference the RHS
1174 dictionary.
1175
1176
1177* Pickling a :class:`~decimal.Context` produces a different output in order
1178 to have a common interchange format for the Python and C versions.
1179
1180
1181* The order of arguments in the :class:`~decimal.Context` constructor has been
1182 changed to match the order displayed by :func:`repr`.
1183
1184
Stefan Krahaf3f3a72012-08-30 12:33:55 +02001185* The ``watchexp`` parameter in the :meth:`~decimal.Decimal.quantize` method
1186 is deprecated.
1187
1188
R David Murrayf23e2b62012-09-29 19:41:26 -04001189.. _new-email:
1190
R David Murray77ac3512012-09-29 15:43:33 -04001191email
1192-----
1193
1194Policy Framework
1195~~~~~~~~~~~~~~~~
1196
1197The email package now has a :mod:`~email.policy` framework. A
1198:class:`~email.policy.Policy` is an object with several methods and properties
1199that control how the email package behaves. The primary policy for Python 3.3
1200is the :class:`~email.policy.Compat32` policy, which provides backward
1201compatibility with the email package in Python 3.2. A ``policy`` can be
1202specified when an email message is parsed by a :mod:`~email.parser`, or when a
1203:class:`~email.message.Message` object is created, or when an email is
1204serialized using a :mod:`~email.generator`. Unless overridden, a policy passed
1205to a ``parser`` is inherited by all the ``Message`` object and sub-objects
1206created by the ``parser``. By default a ``generator`` will use the policy of
1207the ``Message`` object it is serializing. The default policy is
1208:data:`~email.policy.compat32`.
1209
1210The minimum set of controls implemented by all ``policy`` objects are:
1211
1212 =============== =======================================================
1213 max_line_length The maximum length, excluding the linesep character(s),
1214 individual lines may have when a ``Message`` is
1215 serialized. Defaults to 78.
1216
1217 linesep The character used to separate individual lines when a
1218 ``Message`` is serialized. Defaults to ``\n``.
1219
1220 cte_type ``7bit`` or ``8bit``. ``8bit`` applies only to a
1221 ``Bytes`` ``generator``, and means that non-ASCII may
1222 be used where allowed by the protocol (or where it
1223 exists in the original input).
1224
1225 raise_on_defect Causes a ``parser`` to raise error when defects are
1226 encountered instead of adding them to the ``Message``
1227 object's ``defects`` list.
1228 =============== =======================================================
1229
1230A new policy instance, with new settings, is created using the
1231:meth:`~email.policy.Policy.clone` method of policy objects. ``clone`` takes
1232any of the above controls as keyword arguments. Any control not specified in
1233the call retains its default value. Thus you can create a policy that uses
1234``\r\n`` linesep characters like this::
1235
1236 mypolicy = compat32.clone(linesep='\r\n')
1237
1238Policies can be used to make the generation of messages in the format needed by
1239your application simpler. Instead of having to remember to specify
1240``linesep='\r\n'`` in all the places you call a ``generator``, you can specify
1241it once, when you set the policy used by the ``parser`` or the ``Message``,
1242whichever your program uses to create ``Message`` objects. On the other hand,
1243if you need to generate messages in multiple forms, you can still specify the
1244parameters in the appropriate ``generator`` call. Or you can have custom
1245policy instances for your different cases, and pass those in when you create
1246the ``generator``.
1247
1248
1249Provisional Policy with New Header API
1250~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1251
1252While the policy framework is worthwhile all by itself, the main motivation for
1253introducing it is to allow the creation of new policies that implement new
1254features for the email package in a way that maintains backward compatibility
1255for those who do not use the new policies. Because the new policies introduce a
1256new API, we are releasing them in Python 3.3 as a :term:`provisional policy
1257<provisional package>`. Backwards incompatible changes (up to and including
1258removal of the code) may occur if deemed necessary by the core developers.
1259
1260The new policies are instances of :class:`~email.policy.EmailPolicy`,
1261and add the following additional controls:
1262
1263 =============== =======================================================
1264 refold_source Controls whether or not headers parsed by a
1265 :mod:`~email.parser` are refolded by the
1266 :mod:`~email.generator`. It can be ``none``, ``long``,
1267 or ``all``. The default is ``long``, which means that
1268 source headers with a line longer than
1269 ``max_line_length`` get refolded. ``none`` means no
1270 line get refolded, and ``all`` means that all lines
1271 get refolded.
1272
1273 header_factory A callable that take a ``name`` and ``value`` and
1274 produces a custom header object.
1275 =============== =======================================================
1276
1277The ``header_factory`` is the key to the new features provided by the new
1278policies. When one of the new policies is used, any header retrieved from
1279a ``Message`` object is an object produced by the ``header_factory``, and any
1280time you set a header on a ``Message`` it becomes an object produced by
1281``header_factory``. All such header objects have a ``name`` attribute equal
1282to the header name. Address and Date headers have additional attributes
1283that give you access to the parsed data of the header. This means you can now
1284do things like this::
1285
1286 >>> m = Message(policy=SMTP)
1287 >>> m['To'] = 'Éric <foo@example.com>'
1288 >>> m['to']
1289 'Éric <foo@example.com>'
1290 >>> m['to'].addresses
1291 (Address(display_name='Éric', username='foo', domain='example.com'),)
1292 >>> m['to'].addresses[0].username
1293 'foo'
1294 >>> m['to'].addresses[0].display_name
1295 'Éric'
1296 >>> m['Date'] = email.utils.localtime()
1297 >>> m['Date'].datetime
1298 datetime.datetime(2012, 5, 25, 21, 39, 24, 465484, tzinfo=datetime.timezone(datetime.timedelta(-1, 72000), 'EDT'))
1299 >>> m['Date']
1300 'Fri, 25 May 2012 21:44:27 -0400'
1301 >>> print(m)
1302 To: =?utf-8?q?=C3=89ric?= <foo@example.com>
1303 Date: Fri, 25 May 2012 21:44:27 -0400
1304
1305You will note that the unicode display name is automatically encoded as
1306``utf-8`` when the message is serialized, but that when the header is accessed
1307directly, you get the unicode version. This eliminates any need to deal with
1308the :mod:`email.header` :meth:`~email.header.decode_header` or
1309:meth:`~email.header.make_header` functions.
1310
1311You can also create addresses from parts::
1312
1313 >>> m['cc'] = [Group('pals', [Address('Bob', 'bob', 'example.com'),
1314 ... Address('Sally', 'sally', 'example.com')]),
1315 ... Address('Bonzo', addr_spec='bonz@laugh.com')]
1316 >>> print(m)
1317 To: =?utf-8?q?=C3=89ric?= <foo@example.com>
1318 Date: Fri, 25 May 2012 21:44:27 -0400
1319 cc: pals: Bob <bob@example.com>, Sally <sally@example.com>;, Bonzo <bonz@laugh.com>
1320
1321Decoding to unicode is done automatically::
1322
1323 >>> m2 = message_from_string(str(m))
1324 >>> m2['to']
1325 'Éric <foo@example.com>'
1326
1327When you parse a message, you can use the ``addresses`` and ``groups``
1328attributes of the header objects to access the groups and individual
1329addresses::
1330
1331 >>> m2['cc'].addresses
1332 (Address(display_name='Bob', username='bob', domain='example.com'), Address(display_name='Sally', username='sally', domain='example.com'), Address(display_name='Bonzo', username='bonz', domain='laugh.com'))
1333 >>> m2['cc'].groups
1334 (Group(display_name='pals', addresses=(Address(display_name='Bob', username='bob', domain='example.com'), Address(display_name='Sally', username='sally', domain='example.com')), Group(display_name=None, addresses=(Address(display_name='Bonzo', username='bonz', domain='laugh.com'),))
1335
1336In summary, if you use one of the new policies, header manipulation works the
1337way it ought to: your application works with unicode strings, and the email
1338package transparently encodes and decodes the unicode to and from the RFC
1339standard Content Transfer Encodings.
1340
R David Murray445d69c2012-09-30 21:59:56 -04001341Other API Changes
1342~~~~~~~~~~~~~~~~~
1343
R David Murray3430fb82012-10-02 18:24:56 -04001344New :class:`~email.parser.BytesHeaderParser`, added to the :mod:`~email.parser`
1345module to complement :class:`~email.parser.HeaderParser` and complete the Bytes
1346API.
1347
1348New utility functions:
1349
1350 * :func:`~email.utils.format_datetime`: given a :class:`~datetime.datetime`,
1351 produce a string formatted for use in an email header.
1352
1353 * :func:`~email.utils.parsedate_to_datetime`: given a date string from
1354 an email header, convert it into an aware :class:`~datetime.datetime`,
1355 or a naive :class:`~datetime.datetime` if the offset is ``-0000``.
1356
1357 * :func:`~email.utils.localtime`: With no argument, returns the
1358 current local time as an aware :class:`~datetime.datetime` using the local
1359 :class:`~datetime.timezone`. Given an aware :class:`~datetime.datetime`,
1360 converts it into an aware :class:`~datetime.datetime` using the
1361 local :class:`~datetime.timezone`.
R David Murray445d69c2012-09-30 21:59:56 -04001362
R David Murray77ac3512012-09-29 15:43:33 -04001363
Victor Stinner811db3b2011-09-21 03:20:03 +02001364ftplib
1365------
1366
R David Murrayd2489cf2012-09-30 17:28:54 -04001367* :class:`ftplib.FTP` now accepts a ``source_address`` keyword argument to
1368 specify the ``(host, port)`` to use as the source address in the bind call
1369 when creating the outgoing socket. (Contributed by Giampaolo Rodolà
1370 in :issue:`8594`.)
1371
Giampaolo Rodola'49379c02012-09-25 12:32:46 -07001372* The :class:`~ftplib.FTP_TLS` class now provides a new
1373 :func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
R David Murrayd2489cf2012-09-30 17:28:54 -04001374 plaintext. This can be useful to take advantage of firewalls that know how
1375 to handle NAT with non-secure FTP without opening fixed ports. (Contributed
1376 by Giampaolo Rodolà in :issue:`12139`)
Victor Stinner811db3b2011-09-21 03:20:03 +02001377
Giampaolo Rodola'49379c02012-09-25 12:32:46 -07001378* Added :meth:`ftplib.FTP.mlsd` method which provides a parsable directory
1379 listing format and deprecates :meth:`ftplib.FTP.nlst` and
R David Murrayd2489cf2012-09-30 17:28:54 -04001380 :meth:`ftplib.FTP.dir`. (Contributed by Giampaolo Rodolà in :issue:`11072`)
Victor Stinner811db3b2011-09-21 03:20:03 +02001381
R David Murray1e218c92012-10-06 18:18:55 -04001382
1383functools
1384---------
1385
1386The :func:`functools.lru_cache` decorator now accepts a ``typed`` keyword
1387argument (that defaults to ``False`` to ensure that it caches values of
1388different types that compare equal in separate cache slots. (Contributed
1389by Raymond Hettinger in :issue:`13227`.)
1390
1391
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001392gc
1393--
1394
1395It is now possible to register callbacks invoked by the garbage collector
Georg Brandla81b4812012-08-11 08:43:59 +02001396before and after collection using the new :data:`~gc.callbacks` list.
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001397
1398
Christian Heimes31940372012-06-26 10:16:55 +02001399hmac
1400----
1401
R David Murray1e218c92012-10-06 18:18:55 -04001402A new :func:`~hmac.compare_digest` function has been added to prevent side
1403channel attacks on digests through timing analysis. (Contributed by Nick
1404Coghlan and Christian Heimes in :issue:`15061`)
Ezio Melotti461f41d2012-09-26 17:43:23 +03001405
1406
R David Murray445d69c2012-09-30 21:59:56 -04001407http
1408----
1409
1410:class:`http.server.BaseHTTPRequestHandler` now buffers the headers and writes
1411them all at once when :meth:`~http.server.BaseHTTPRequestHandler.end_headers` is
1412called. A new method :meth:`~http.server.BaseHTTPRequestHandler.flush_headers`
1413can be used to directly manage when the accumlated headers are sent.
1414(Contributed by Andrew Schaaf in :issue:`3709`.)
1415
R David Murray1e218c92012-10-06 18:18:55 -04001416:class:`http.server` now produces valid ``HTML 4.01 strict`` output.
1417(Contributed by Ezio Melotti in :issue:`13295`.)
R David Murray445d69c2012-09-30 21:59:56 -04001418
R David Murrayfd740962012-10-06 22:08:08 -04001419:class:`http.client.HTTPResponse` now has a
1420:meth:`~http.client.HTTPResponse.readinto` method, which means it can be used
1421as a :class:`io.RawIOBase` class. (Contributed by John Kuhn in
1422:issue:`13464`.)
1423
Ezio Melotti461f41d2012-09-26 17:43:23 +03001424
R David Murray1e218c92012-10-06 18:18:55 -04001425html
1426----
1427
1428:class:`html.parser.HTMLParser` is now able to parse broken markup without
Ezio Melotti461f41d2012-09-26 17:43:23 +03001429raising errors, therefore the *strict* argument of the constructor and the
1430:exc:`~html.parser.HTMLParseError` exception are now deprecated.
1431The ability to parse broken markup is the result of a number of bug fixes that
1432are also available on the latest bug fix releases of Python 2.7/3.2.
Ezio Melotti461f41d2012-09-26 17:43:23 +03001433(Contributed by Ezio Melotti in :issue:`15114`, and :issue:`14538`,
1434:issue:`13993`, :issue:`13960`, :issue:`13358`, :issue:`1745761`,
1435:issue:`755670`, :issue:`13357`, :issue:`12629`, :issue:`1200313`,
1436:issue:`670664`, :issue:`13273`, :issue:`12888`, :issue:`7311`)
1437
R David Murray1e218c92012-10-06 18:18:55 -04001438A new :data:`~html.entities.html5` dictionary that maps HTML5 named character
1439references to the equivalent Unicode character(s) (e.g. ``html5['gt;'] ==
1440'>'``) has been added to the :mod:`html.entities` module. The dictionary is
1441now also used by :class:`~html.parser.HTMLParser`. (Contributed by Ezio
1442Melotti in :issue:`11113` and :issue:`15156`)
1443
R David Murray445d69c2012-09-30 21:59:56 -04001444
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01001445imaplib
1446-------
1447
1448The :class:`~imaplib.IMAP4_SSL` constructor now accepts an SSLContext
1449parameter to control parameters of the secure channel.
1450
1451(Contributed by Sijin Joseph in :issue:`8808`)
1452
1453
Nick Coghlan2f92e542012-06-23 19:39:55 +10001454inspect
1455-------
1456
1457A new :func:`~inspect.getclosurevars` function has been added. This function
1458reports the current binding of all names referenced from the function body and
1459where those names were resolved, making it easier to verify correct internal
1460state when testing code that relies on stateful closures.
1461
1462(Contributed by Meador Inge and Nick Coghlan in :issue:`13062`)
1463
Nick Coghlan04e2e3f2012-06-23 19:52:05 +10001464A new :func:`~inspect.getgeneratorlocals` function has been added. This
1465function reports the current binding of local variables in the generator's
1466stack frame, making it easier to verify correct internal state when testing
1467generators.
1468
1469(Contributed by Meador Inge in :issue:`15153`)
1470
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001471io
1472--
1473
Charles-François Natalid612de12012-01-14 11:51:00 +01001474The :func:`~io.open` function has a new ``'x'`` mode that can be used to
1475exclusively create a new file, and raise a :exc:`FileExistsError` if the file
1476already exists. It is based on the C11 'x' mode to fopen().
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001477
1478(Contributed by David Townshend in :issue:`12760`)
1479
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001480The constructor of the :class:`~io.TextIOWrapper` class has a new
1481*write_through* optional argument. If *write_through* is ``True``, calls to
1482:meth:`~io.TextIOWrapper.write` are guaranteed not to be buffered: any data
1483written on the :class:`~io.TextIOWrapper` object is immediately handled to its
1484underlying binary buffer.
1485
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001486
R David Murray445d69c2012-09-30 21:59:56 -04001487itertools
1488---------
1489
1490:func:`~itertools.accumulate` now takes an optional ``func`` argument for
1491providing a user-supplied binary function.
1492
1493
1494logging
1495-------
1496
R David Murray3430fb82012-10-02 18:24:56 -04001497The :func:`~logging.basicConfig` function now supports an optional ``handlers``
1498argument taking an iterable of handlers to be added to the root logger.
1499
1500A class level attribute :attr:`~logging.handlers.SysLogHandler.append_nul` has
1501been added to :class:`~logging.handlers.SysLogHandler` to allow control of the
1502appending of the ``NUL`` (``\000``) byte to syslog records, since for some
1503deamons it is required while for others it is passed through to the log.
1504
R David Murray445d69c2012-09-30 21:59:56 -04001505
1506
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001507math
1508----
1509
R David Murray26d15bf2012-09-29 15:13:35 -04001510The :mod:`math` module has a new function, :func:`~math.log2`, which returns
1511the base-2 logarithm of *x*.
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001512
R David Murray26d15bf2012-09-29 15:13:35 -04001513(Written by Mark Dickinson in :issue:`11888`).
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001514
1515
R David Murray3430fb82012-10-02 18:24:56 -04001516mmap
1517----
1518
1519The :meth:`~mmap.mmap.read` method is now more compatible with other file-like
1520objects: if the argument is omitted or specified as ``None``, it returns the
1521bytes from the current file position to the end of the mapping. (Contributed
1522by Petri Lehtinen in :issue:`12021`.)
1523
1524
Antoine Pitrou9a864472012-05-04 23:15:47 +02001525multiprocessing
1526---------------
1527
1528The new :func:`multiprocessing.connection.wait` function allows to poll
1529multiple objects (such as connections, sockets and pipes) with a timeout.
1530(Contributed by Richard Oudkerk in :issue:`12328`.)
1531
1532:class:`multiprocessing.Connection` objects can now be transferred over
1533multiprocessing connections.
1534(Contributed by Richard Oudkerk in :issue:`4892`.)
1535
R David Murrayd2489cf2012-09-30 17:28:54 -04001536:class:`multiprocessing.Process` now accepts a ``daemon`` keyword argument
1537to override the default behavior of inheriting the ``daemon`` flag from
1538the parent process (:issue:`6064`).
1539
R David Murray994ce1a2012-10-02 10:19:08 -04001540New attribute attribute :data:`multiprocessing.Process.sentinel` allows a
1541program to wait on multiple :class:`~multiprocessing.Process` objects at one
1542time using the appropriate OS primitives (for example, :mod:`select` on
1543posix systems).
1544
R David Murrayace51622012-10-06 22:26:52 -04001545New methods :meth:`multiprocessing.pool.Pool.starmap` and
1546:meth:`~multiprocessing.pool.Pool.starmap_async` provide
1547:func:`itertools.starmap` equivalents to the existing
1548:meth:`multiprocessing.pool.Pool.map` and
1549:meth:`~multiprocessing.pool.Pool.map_async` functions. (Contributed by Hynek
1550Schlawack in :issue:`12708`.)
1551
Antoine Pitrou9a864472012-05-04 23:15:47 +02001552
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001553nntplib
1554-------
1555
1556The :class:`nntplib.NNTP` class now supports the context manager protocol to
1557unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
1558connection when done::
1559
1560 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +03001561 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001562 ... n.group('gmane.comp.python.committers')
1563 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +03001564 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001565 >>>
1566
1567(Contributed by Giampaolo Rodolà in :issue:`9795`)
1568
1569
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00001570os
1571--
1572
Charles-François Natalia003af12011-06-01 20:30:52 +02001573* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
1574 possible to create a pipe with :data:`~os.O_CLOEXEC` or
1575 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
1576 avoid race conditions in multi-threaded programs.
1577
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00001578* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
1579 an efficent "zero-copy" way for copying data from one file (or socket)
1580 descriptor to another. The phrase "zero-copy" refers to the fact that all of
1581 the copying of data between the two descriptors is done entirely by the
1582 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
1583 can be used to efficiently copy data from a file on disk to a network socket,
1584 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00001585
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00001586 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
1587
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001588* To avoid race conditions like symlink attacks and issues with temporary
1589 files and directories, it is more reliable (and also faster) to manipulate
1590 file descriptors instead of file names. Python 3.3 enhances existing functions
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001591 and introduces new functions to work on file descriptors (:issue:`4761`,
Larry Hastings94717972012-09-21 09:30:19 -07001592 :issue:`10755` and :issue:`14626`).
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001593
1594 - The :mod:`os` module has a new :func:`~os.fwalk` function similar to
1595 :func:`~os.walk` except that it also yields file descriptors referring to the
1596 directories visited. This is especially useful to avoid symlink races.
1597
1598 - The following functions get new optional *dir_fd* (:ref:`paths relative to
1599 directory descriptors <dir_fd>`) and/or *follow_symlinks* (:ref:`not
1600 following symlinks <follow_symlinks>`):
1601 :func:`~os.access`, :func:`~os.chflags`, :func:`~os.chmod`, :func:`~os.chown`,
1602 :func:`~os.link`, :func:`~os.lstat`, :func:`~os.mkdir`, :func:`~os.mkfifo`,
1603 :func:`~os.mknod`, :func:`~os.open`, :func:`~os.readlink`, :func:`~os.remove`,
1604 :func:`~os.rename`, :func:`~os.replace`, :func:`~os.rmdir`, :func:`~os.stat`,
R David Murrayc652ce62012-09-30 20:07:42 -04001605 :func:`~os.symlink`, :func:`~os.unlink`, :func:`~os.utime`. Platform
1606 support for using these parameters can be checked via the sets
1607 :data:`os.supports_dir_fd` and :data:`os.supports_follows_symlinks`.
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001608
1609 - The following functions now support a file descriptor for their path argument:
1610 :func:`~os.chdir`, :func:`~os.chmod`, :func:`~os.chown`,
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001611 :func:`~os.execve`, :func:`~os.listdir`, :func:`~os.pathconf`, :func:`~os.path.exists`,
R David Murrayc652ce62012-09-30 20:07:42 -04001612 :func:`~os.stat`, :func:`~os.statvfs`, :func:`~os.utime`. Platform support
1613 for this can be checked via the :data:`os.supports_fd` set.
1614
1615* :func:`~os.access` accepts an ``effective_ids`` keyword argument to turn on
1616 using the effective uid/gid rather than the real uid/gid in the access check.
1617 Platform support for this can be checked via the
1618 :data:`~os.supports_effective_ids` set.
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001619
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00001620* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
1621 :func:`~os.setpriority`. They can be used to get or set process
1622 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
1623 processes instead of just the current one.
1624
1625 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00001626
Antoine Pitrou9a864472012-05-04 23:15:47 +02001627* The new :func:`os.replace` function allows cross-platform renaming of a
1628 file with overwriting the destination. With :func:`os.rename`, an existing
1629 destination file is overwritten under POSIX, but raises an error under
1630 Windows.
1631 (Contributed by Antoine Pitrou in :issue:`8828`.)
1632
Larry Hastings94717972012-09-21 09:30:19 -07001633* The stat family of functions (:func:`~os.stat`, :func:`~os.fstat`,
1634 and :func:`~os.lstat`) now support reading a file's timestamps
1635 with nanosecond precision. Symmetrically, :func:`~os.utime`
1636 can now write file timestamps with nanosecond precision. (Contributed by
1637 Larry Hastings in :issue:`14127`.)
1638
Antoine Pitrou9a864472012-05-04 23:15:47 +02001639* The new :func:`os.get_terminal_size` function queries the size of the
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001640 terminal attached to a file descriptor. See also
1641 :func:`shutil.get_terminal_size`.
Antoine Pitrou9a864472012-05-04 23:15:47 +02001642 (Contributed by Zbigniew Jędrzejewski-Szmek in :issue:`13609`.)
1643
Georg Brandldba3b5c2012-06-26 09:36:14 +02001644.. XXX sort out this mess after beta1
Victor Stinnere5064372011-10-14 00:08:29 +02001645
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001646* New functions to support Linux extended attributes (:issue:`12720`):
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001647 :func:`~os.getxattr`, :func:`~os.listxattr`, :func:`~os.removexattr`,
1648 :func:`~os.setxattr`.
Victor Stinnere5064372011-10-14 00:08:29 +02001649
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001650* New interface to the scheduler. These functions
1651 control how a process is allocated CPU time by the operating system. New
1652 functions:
1653 :func:`~os.sched_get_priority_max`, :func:`~os.sched_get_priority_min`,
1654 :func:`~os.sched_getaffinity`, :func:`~os.sched_getparam`,
1655 :func:`~os.sched_getscheduler`, :func:`~os.sched_rr_get_interval`,
1656 :func:`~os.sched_setaffinity`, :func:`~os.sched_setparam`,
1657 :func:`~os.sched_setscheduler`, :func:`~os.sched_yield`,
Victor Stinnere5064372011-10-14 00:08:29 +02001658
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001659* New functions to control the file system:
Victor Stinnere5064372011-10-14 00:08:29 +02001660
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001661 * :func:`~os.posix_fadvise`: Announces an intention to access data in a
1662 specific pattern thus allowing the kernel to make optimizations.
1663 * :func:`~os.posix_fallocate`: Ensures that enough disk space is allocated
1664 for a file.
1665 * :func:`~os.sync`: Force write of everything to disk.
Victor Stinnere5064372011-10-14 00:08:29 +02001666
R David Murrayc652ce62012-09-30 20:07:42 -04001667* Additional new posix functions:
Victor Stinnere5064372011-10-14 00:08:29 +02001668
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001669 * :func:`~os.lockf`: Apply, test or remove a POSIX lock on an open file descriptor.
1670 * :func:`~os.pread`: Read from a file descriptor at an offset, the file
1671 offset remains unchanged.
1672 * :func:`~os.pwrite`: Write to a file descriptor from an offset, leaving
1673 the file offset unchanged.
1674 * :func:`~os.readv`: Read from a file descriptor into a number of writable buffers.
1675 * :func:`~os.truncate`: Truncate the file corresponding to *path*, so that
1676 it is at most *length* bytes in size.
1677 * :func:`~os.waitid`: Wait for the completion of one or more child processes.
1678 * :func:`~os.writev`: Write the contents of *buffers* to a file descriptor,
1679 where *buffers* is an arbitrary sequence of buffers.
1680 * :func:`~os.getgrouplist` (:issue:`9344`): Return list of group ids that
1681 specified user belongs to.
Victor Stinnere5064372011-10-14 00:08:29 +02001682
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001683* :func:`~os.times` and :func:`~os.uname`: Return type changed from a tuple to
1684 a tuple-like object with named attributes.
Victor Stinnere5064372011-10-14 00:08:29 +02001685
R David Murrayc652ce62012-09-30 20:07:42 -04001686* Some platforms now support additional constants for the :func:`~os.lseek`
1687 function, such as ``os.SEEK_HOLE`` and ``os.SEEK_DATA``.
1688
R David Murray1e218c92012-10-06 18:18:55 -04001689* New constants :data:`~os.RTLD_LAZY`, :data:`~os.RTLD_NOW`,
1690 :data:`~os.RTLD_GLOBAL`, :data:`~os.RTLD_LOCAL`, :data:`~os.RTLD_NODELETE`,
1691 :data:`~os.RTLD_NOLOAD`, and :data:`~os.RTLD_DEEPBIND` are available on
1692 platforms that support them. These are for use with the
1693 :func:`sys.setdlopenflags` function, and supersede the similar constants
1694 defined in :mod:`ctypes` and :mod:`DLFCN`. (Contributed by Victor Stinner
1695 in :issue:`13226`.)
1696
R David Murrayc652ce62012-09-30 20:07:42 -04001697* :func:`os.symlink` now accepts (and ignores) the ``target_is_directory``
1698 keyword argument on non-Windows platforms, to ease cross-platform support.
1699
Giampaolo Rodolà424298a2011-03-03 18:34:06 +00001700
Georg Brandl4c7c3c52012-03-10 22:36:48 +01001701pdb
1702---
1703
R David Murray26d15bf2012-09-29 15:13:35 -04001704Tab-completion is now available not only for command names, but also their
1705arguments. For example, for the ``break`` command, function and file names
1706are completed.
1707
1708(Contributed by Georg Brandl in :issue:`14210`)
Georg Brandl4c7c3c52012-03-10 22:36:48 +01001709
1710
Antoine Pitrou9a864472012-05-04 23:15:47 +02001711pickle
1712------
1713
1714:class:`pickle.Pickler` objects now have an optional
1715:attr:`~pickle.Pickler.dispatch_table` attribute allowing to set per-pickler
1716reduction functions.
R David Murray26d15bf2012-09-29 15:13:35 -04001717
Antoine Pitrou9a864472012-05-04 23:15:47 +02001718(Contributed by Richard Oudkerk in :issue:`14166`.)
1719
1720
Victor Stinner383c3fc2011-05-25 01:35:05 +02001721pydoc
1722-----
1723
Victor Stinner6daa33c2011-05-25 01:41:22 +02001724The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
1725:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
1726in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +02001727
1728
Antoine Pitrouad09b5d2012-06-24 22:41:33 +02001729re
1730--
1731
1732:class:`str` regular expressions now support ``\u`` and ``\U`` escapes.
1733
1734(Contributed by Serhiy Storchaka in :issue:`3665`.)
1735
1736
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001737sched
1738-----
Victor Stinner754851f2011-04-19 23:58:51 +02001739
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001740* :meth:`~sched.scheduler.run` now accepts a *blocking* parameter which when
1741 set to False makes the method execute the scheduled events due to expire
1742 soonest (if any) and then return immediately.
1743 This is useful in case you want to use the :class:`~sched.scheduler` in
1744 non-blocking applications. (Contributed by Giampaolo Rodolà in :issue:`13449`)
Victor Stinner754851f2011-04-19 23:58:51 +02001745
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001746* :class:`~sched.scheduler` class can now be safely used in multi-threaded
1747 environments. (Contributed by Josiah Carlson and Giampaolo Rodolà in
1748 :issue:`8684`)
1749
1750* *timefunc* and *delayfunct* parameters of :class:`~sched.scheduler` class
1751 constructor are now optional and defaults to :func:`time.time` and
1752 :func:`time.sleep` respectively. (Contributed by Chris Clark in
1753 :issue:`13245`)
1754
1755* :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
1756 *argument* parameter is now optional. (Contributed by Chris Clark in
1757 :issue:`13245`)
1758
1759* :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
1760 now accept a *kwargs* parameter. (Contributed by Chris Clark in
1761 :issue:`13245`)
1762
1763
Jesus Ceaaa264882012-10-04 02:51:22 +02001764select
1765------
1766
Jesus Ceab6bb3ad2012-10-04 02:58:48 +02001767Solaris and derivatives platforms have a new class :class:`select.devpoll`
1768for high performance asynchronous sockets via :file:`/dev/poll`.
R David Murray1e218c92012-10-06 18:18:55 -04001769(Contributed by Jesús Cea Avión in :issue:`6397`.)
Jesus Ceaaa264882012-10-04 02:51:22 +02001770
1771
R David Murrayaae25832012-09-29 09:49:05 -04001772shlex
1773-----
1774
R David Murray26d15bf2012-09-29 15:13:35 -04001775The previously undocumented helper function ``quote`` from the
1776:mod:`pipes` modules has been moved to the :mod:`shlex` module and
1777documented. :func:`~shlex.quote` properly escapes all characters in a string
1778that might be otherwise given special meaning by the shell.
R David Murrayaae25832012-09-29 09:49:05 -04001779
1780
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001781shutil
1782------
1783
R David Murrayd2489cf2012-09-30 17:28:54 -04001784* New functions:
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001785
1786 * :func:`~shutil.disk_usage`: provides total, used and free disk space
1787 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`)
1788 * :func:`~shutil.chown`: allows one to change user and/or group of the given
1789 path also specifying the user/group names and not only their numeric
1790 ids. (Contributed by Sandro Tosi in :issue:`12191`)
R David Murrayd2489cf2012-09-30 17:28:54 -04001791 * :func:`shutil.get_terminal_size`: returns the size of the terminal window
1792 to which the interpreter is attached. (Contributed by Zbigniew
1793 Jędrzejewski-Szmek in :issue:`13609`.)
Victor Stinnera9293352011-04-30 15:21:58 +02001794
Larry Hastings94717972012-09-21 09:30:19 -07001795* :func:`~shutil.copy2` and :func:`~shutil.copystat` now preserve file
1796 timestamps with nanosecond precision on platforms that support it.
1797 They also preserve file "extended attributes" on Linux. (Contributed
1798 by Larry Hastings in :issue:`14127` and :issue:`15238`.)
1799
Antoine Pitrou9a864472012-05-04 23:15:47 +02001800* Several functions now take an optional ``symlinks`` argument: when that
1801 parameter is true, symlinks aren't dereferenced and the operation instead
1802 acts on the symlink itself (or creates one, if relevant).
1803 (Contributed by Hynek Schlawack in :issue:`12715`.)
1804
R David Murrayf4c27572012-10-06 23:19:17 -04001805* When copying files to a different file system, :func:`~shutil.move` now
1806 handles symlinks the way the posix ``mv`` command does, recreating the
1807 symlink rather than copying the target file contents. (Contributed by
1808 Jonathan Niehof in :issue:`9993`.) :func:`~shutil.move` now also returns
1809 the ``dst`` argument as its result.
1810
Nick Coghlan5b0eca12012-06-24 16:43:06 +10001811* :func:`~shutil.rmtree` is now resistant to symlink attacks on platforms
1812 which support the new ``dir_fd`` parameter in :func:`os.open` and
Georg Brandldba3b5c2012-06-26 09:36:14 +02001813 :func:`os.unlink`. (Contributed by Martin von Löwis and Hynek Schlawack
Nick Coghlan5b0eca12012-06-24 16:43:06 +10001814 in :issue:`4489`.)
1815
Antoine Pitrou9a864472012-05-04 23:15:47 +02001816
Victor Stinnera9293352011-04-30 15:21:58 +02001817signal
1818------
1819
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001820* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +02001821
Victor Stinnerb3e72192011-05-08 01:46:11 +02001822 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
1823 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ;
1824 * :func:`~signal.pthread_kill`: send a signal to a thread ;
1825 * :func:`~signal.sigpending`: examine pending functions ;
1826 * :func:`~signal.sigwait`: wait a signal.
Ross Lagerwallbc808222011-06-25 12:13:40 +02001827 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
1828 information about it.
1829 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
1830 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +02001831
Victor Stinnerd49b1f12011-05-08 02:03:15 +02001832* The signal handler writes the signal number as a single byte instead of
1833 a nul byte into the wakeup file descriptor. So it is possible to wait more
1834 than one signal and know which signals were raised.
1835
Victor Stinner388196e2011-05-10 17:13:00 +02001836* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
1837 instead of a RuntimeError: OSError has an errno attribute.
1838
R David Murray1764c802012-09-29 11:42:36 -04001839
1840smtpd
1841-----
1842
R David Murray26d15bf2012-09-29 15:13:35 -04001843The :mod:`smtpd` module now supports :rfc:`5321` (extended SMTP) and :rfc:`1870`
1844(size extension). Per the standard, these extensions are enabled if and only
1845if the client initiates the session with an ``EHLO`` command.
R David Murray1764c802012-09-29 11:42:36 -04001846
R David Murray26d15bf2012-09-29 15:13:35 -04001847(Initial ``ELHO`` support by Alberto Trevino. Size extension by Juhana
1848Jauhiainen. Substantial additional work on the patch contributed by Michele
1849Orrù and Dan Boswell. :issue:`8739`)
R David Murray1764c802012-09-29 11:42:36 -04001850
1851
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001852smtplib
1853-------
1854
R David Murraya21e5152012-10-06 16:29:14 -04001855The :class:`~smtplib.SMTP`, :class:`~smtplib.SMTP_SSL`, and
1856:class:`~smtplib.LMTP` classes now accept a ``source_address`` keyword argument
1857to specify the ``(host, port)`` to use as the source address in the bind call
1858when creating the outgoing socket. (Contributed by Paulo Scardine in
1859:issue:`11281`.)
1860
R David Murray3430fb82012-10-02 18:24:56 -04001861:class:`~smtplib.SMTP` now supports the context manager protocol, allowing an
1862``SMTP`` instance to be used in a ``with`` statement. (Contributed
1863by Giampaolo Rodolà in :issue:`11289`.)
1864
R David Murray26d15bf2012-09-29 15:13:35 -04001865The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls`
1866method now accept an SSLContext parameter to control parameters of the secure
R David Murray3430fb82012-10-02 18:24:56 -04001867channel. (Contributed by Kasun Herath in :issue:`8809`)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001868
1869
Nick Coghlan96fe56a2011-08-22 11:55:57 +10001870socket
1871------
1872
Charles-François Natali47413c12011-10-06 19:47:44 +02001873* The :class:`~socket.socket` class now exposes additional methods to process
1874 ancillary data when supported by the underlying platform:
Nick Coghlan96fe56a2011-08-22 11:55:57 +10001875
Charles-François Natali47413c12011-10-06 19:47:44 +02001876 * :func:`~socket.socket.sendmsg`
1877 * :func:`~socket.socket.recvmsg`
1878 * :func:`~socket.socket.recvmsg_into`
Nick Coghlan96fe56a2011-08-22 11:55:57 +10001879
Charles-François Natali47413c12011-10-06 19:47:44 +02001880 (Contributed by David Watson in :issue:`6560`, based on an earlier patch by
1881 Heiko Wundram)
1882
1883* The :class:`~socket.socket` class now supports the PF_CAN protocol family
1884 (http://en.wikipedia.org/wiki/Socketcan), on Linux
1885 (http://lwn.net/Articles/253425).
1886
1887 (Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:`10141`)
1888
Charles-François Natali10b8cf42011-11-10 19:21:37 +01001889* The :class:`~socket.socket` class now supports the PF_RDS protocol family
1890 (http://en.wikipedia.org/wiki/Reliable_Datagram_Sockets and
1891 http://oss.oracle.com/projects/rds/).
Victor Stinner754851f2011-04-19 23:58:51 +02001892
R David Murrayf4c27572012-10-06 23:19:17 -04001893* The :class:`~socket.socket` class now supports the ``PF_SYSTEM`` protocol
1894 family on OS X. (Contributed by Michael Goderbauer in :issue:`13777`.)
1895
R David Murrayd2489cf2012-09-30 17:28:54 -04001896* New function :func:`~socket.sethostname` allows the hostname to be set
1897 on unix systems if the calling process has sufficient privileges.
1898 (Contributed by Ross Lagerwall in :issue:`10866`.)
1899
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001900
R David Murray258fabe2012-10-01 21:43:46 -04001901socketserver
1902------------
1903
1904:class:`~socketserver.BaseServer` now has an overridable method
1905:meth:`~socketserver.BaseServer.service_actions` that is called by the
1906:meth:`~socketserver.BaseServer.serve_forever` method in the service loop.
1907:class:`~socketserver.ForkingMixIn` now uses this to clean up zombie
1908child proceses. (Contributed by Justin Warkentin in :issue:`11109`.)
1909
1910
R David Murray445d69c2012-09-30 21:59:56 -04001911sqlite3
1912-------
1913
1914New :class:`sqlite3.Connection` method
1915:meth:`~sqlite3.Connection.set_trace_callback` can be used to capture a trace of
1916all sql commands processed by sqlite. (Contributed by Torsten Landschoff
1917in :issue:`11688`.)
1918
1919
Victor Stinner99c8b162011-05-24 12:05:19 +02001920ssl
1921---
1922
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001923* The :mod:`ssl` module has two new random generation functions:
Victor Stinner99c8b162011-05-24 12:05:19 +02001924
1925 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
1926 pseudo-random bytes.
1927 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
1928
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001929 (Contributed by Victor Stinner in :issue:`12049`)
1930
1931* The :mod:`ssl` module now exposes a finer-grained exception hierarchy
1932 in order to make it easier to inspect the various kinds of errors.
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001933 (Contributed by Antoine Pitrou in :issue:`11183`)
1934
1935* :meth:`~ssl.SSLContext.load_cert_chain` now accepts a *password* argument
1936 to be used if the private key is encrypted.
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001937 (Contributed by Adam Simpkins in :issue:`12803`)
1938
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001939* Diffie-Hellman key exchange, both regular and Elliptic Curve-based, is
1940 now supported through the :meth:`~ssl.SSLContext.load_dh_params` and
1941 :meth:`~ssl.SSLContext.set_ecdh_curve` methods.
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001942 (Contributed by Antoine Pitrou in :issue:`13626` and :issue:`13627`)
1943
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001944* SSL sockets have a new :meth:`~ssl.SSLSocket.get_channel_binding` method
1945 allowing the implementation of certain authentication mechanisms such as
R David Murray445d69c2012-09-30 21:59:56 -04001946 SCRAM-SHA-1-PLUS. (Contributed by Jacek Konieczny in :issue:`12551`)
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001947
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001948* You can query the SSL compression algorithm used by an SSL socket, thanks
R David Murrayfd740962012-10-06 22:08:08 -04001949 to its new :meth:`~ssl.SSLSocket.compression` method. The new attribute
1950 :attr:`~ssl.OP_NO_COMPRESSION` can be used to disable compression.
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001951 (Contributed by Antoine Pitrou in :issue:`13634`)
1952
Antoine Pitrou9a864472012-05-04 23:15:47 +02001953* Support has been added for the Next Procotol Negotiation extension using
1954 the :meth:`ssl.SSLContext.set_npn_protocols` method.
Antoine Pitrou9a864472012-05-04 23:15:47 +02001955 (Contributed by Colin Marc in :issue:`14204`)
1956
Antoine Pitrouad09b5d2012-06-24 22:41:33 +02001957* SSL errors can now be introspected more easily thanks to
1958 :attr:`~ssl.SSLError.library` and :attr:`~ssl.SSLError.reason` attributes.
Antoine Pitrouad09b5d2012-06-24 22:41:33 +02001959 (Contributed by Antoine Pitrou in :issue:`14837`)
1960
R David Murray445d69c2012-09-30 21:59:56 -04001961* The :func:`~ssl.get_server_certificate` function now supports IPv6.
1962 (Contributed by Charles-François Natali in :issue:`11811`.)
1963
R David Murrayfd740962012-10-06 22:08:08 -04001964* New attribute :attr:`~ssl.OP_CIPHER_SERVER_PREFERENCE` allows setting
1965 SSLv3 server sockets to use the server's cipher ordering preference rather
1966 than the client's (:issue:`13635`).
1967
R David Murray445d69c2012-09-30 21:59:56 -04001968
Giampaolo Rodola'ffa1d0b2012-05-15 15:30:25 +02001969stat
1970----
1971
R David Murray26d15bf2012-09-29 15:13:35 -04001972The undocumented tarfile.filemode function has been moved to
1973:func:`stat.filemode`. It can be used to convert a file's mode to a string of
1974the form '-rwxrwxrwx'.
Giampaolo Rodola'ffa1d0b2012-05-15 15:30:25 +02001975
R David Murray26d15bf2012-09-29 15:13:35 -04001976(Contributed by Giampaolo Rodolà in :issue:`14807`)
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001977
R David Murrayc652ce62012-09-30 20:07:42 -04001978
R David Murray1e218c92012-10-06 18:18:55 -04001979struct
1980------
1981
1982The :mod:`struct` module now supports ``ssize_t`` and ``size_t`` via the
1983new codes ``n`` and ``N``, respectively. (Contributed by Antoine Pitrou
1984in :issue:`3163`.)
1985
1986
R David Murrayc652ce62012-09-30 20:07:42 -04001987subprocess
1988----------
1989
1990Command strings can now be bytes objects on posix platforms. (Contributed by
R David Murray445d69c2012-09-30 21:59:56 -04001991Victor Stinner in :issue:`8513`.)
R David Murrayc652ce62012-09-30 20:07:42 -04001992
1993A new constant :data:`~subprocess.DEVNULL` allows suppressing output in a
1994platform-independent fashion. (Contributed by Ross Lagerwall in
1995:issue:`5870`.)
1996
1997
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001998sys
1999---
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +02002000
R David Murray26d15bf2012-09-29 15:13:35 -04002001The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
R David Murray445d69c2012-09-30 21:59:56 -04002002sequence` holding informations about the thread implementation
2003(:issue:`11223`).
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +02002004
R David Murray1e218c92012-10-06 18:18:55 -04002005
R David Murrayfd740962012-10-06 22:08:08 -04002006tarfile
2007-------
2008
2009:mod:`tarfile` now supports ``lzma`` encoding via the :mod:`lzma` module.
2010(Contributed by Lars Gustäbel in :issue:`5689`.)
2011
2012
R David Murrayca76ea12012-10-06 18:32:39 -04002013tempfile
2014--------
2015
2016:class:`tempfile.SpooledTemporaryFile`\'s
2017:meth:`~tempfile.SpooledTemporaryFile.trucate` method now accepts
2018a ``size`` parameter. (Contributed by Ryan Kelly in :issue:`9957`.)
2019
2020
Nick Coghlan4fae8cd2012-06-11 23:07:51 +10002021textwrap
2022--------
2023
R David Murray26d15bf2012-09-29 15:13:35 -04002024The :mod:`textwrap` module has a new :func:`~textwrap.indent` that makes
2025it straightforward to add a common prefix to selected lines in a block
R David Murray445d69c2012-09-30 21:59:56 -04002026of text (:issue:`13857`).
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01002027
R David Murrayd2489cf2012-09-30 17:28:54 -04002028
2029threading
2030---------
2031
R David Murrayef4d2862012-10-06 14:35:35 -04002032:class:`threading.Condition`, :class:`threading.Semaphore`,
R David Murray344174d2012-10-06 16:06:16 -04002033:class:`threading.BoundedSemaphore`, :class:`threading.Event`, and
R David Murrayef4d2862012-10-06 14:35:35 -04002034:class:`threading.Timer`, all of which used to be factory functions returning a
2035class instance, are now classes and may be subclassed. (Contributed by Éric
R David Murray344174d2012-10-06 16:06:16 -04002036Araujo in :issue:`10968`).
R David Murrayef4d2862012-10-06 14:35:35 -04002037
R David Murrayd2489cf2012-09-30 17:28:54 -04002038The :class:`threading.Thread` constructor now accepts a ``daemon`` keyword
2039argument to override the default behavior of inheriting the ``deamon`` flag
2040value from the parent thread (:issue:`6064`).
2041
R David Murray0bbfd6b2012-10-01 22:10:15 -04002042The formerly private function ``_thread.get_ident`` is now available as the
Georg Brandldc704c62012-10-02 10:16:19 +02002043public function :func:`threading.get_ident`. This eliminates several cases of
R David Murray0bbfd6b2012-10-01 22:10:15 -04002044direct access to the ``_thread`` module in the stdlib. Third party code that
2045used ``_thread.get_ident`` should likewise be changed to use the new public
2046interface.
2047
R David Murrayd2489cf2012-09-30 17:28:54 -04002048
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002049time
2050----
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01002051
Victor Stinnerec895392012-04-29 02:41:27 +02002052The :pep:`418` added new functions to the :mod:`time` module:
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002053
Victor Stinnerec895392012-04-29 02:41:27 +02002054* :func:`~time.get_clock_info`: Get information on a clock.
2055* :func:`~time.monotonic`: Monotonic clock (cannot go backward), not affected
2056 by system clock updates.
2057* :func:`~time.perf_counter`: Performance counter with the highest available
2058 resolution to measure a short duration.
2059* :func:`~time.process_time`: Sum of the system and user CPU time of the
2060 current process.
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002061
Victor Stinnerec895392012-04-29 02:41:27 +02002062Other new functions:
2063
2064* :func:`~time.clock_getres`, :func:`~time.clock_gettime` and
2065 :func:`~time.clock_settime` functions with ``CLOCK_xxx`` constants.
2066 (Contributed by Victor Stinner in :issue:`10278`)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002067
R David Murray3430fb82012-10-02 18:24:56 -04002068To improve cross platform consistency, :func:`~time.sleep` now raises a
2069:exc:`ValueError` when passed a negative sleep value. Previously this was an
2070error on posix, but produced an infinite sleep on Windows.
2071
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01002072
Victor Stinner0db176f2012-04-16 00:16:30 +02002073types
2074-----
2075
2076Add a new :class:`types.MappingProxyType` class: Read-only proxy of a mapping.
2077(:issue:`14386`)
2078
2079
Nick Coghlan7fc570a2012-05-20 02:34:13 +10002080The new functions `types.new_class` and `types.prepare_class` provide support
2081for PEP 3115 compliant dynamic type creation. (:issue:`14588`)
2082
2083
Ezio Melotti461f41d2012-09-26 17:43:23 +03002084unittest
2085--------
2086
2087:meth:`.assertRaises`, :meth:`.assertRaisesRegex`, :meth:`.assertWarns`, and
2088:meth:`.assertWarnsRegex` now accept a keyword argument *msg* when used as
R David Murrayc652ce62012-09-30 20:07:42 -04002089context managers. (Contributed by Ezio Melotti and Winston Ewert in
2090:issue:`10775`)
Ezio Melotti461f41d2012-09-26 17:43:23 +03002091
R David Murrayc652ce62012-09-30 20:07:42 -04002092:meth:`unittest.TestCase.run` now returns the :class:`~unittest.TestResult`
2093object.
Ezio Melotti461f41d2012-09-26 17:43:23 +03002094
R David Murray1e218c92012-10-06 18:18:55 -04002095
Senthil Kumarande49d642011-10-16 23:54:44 +08002096urllib
2097------
2098
2099The :class:`~urllib.request.Request` class, now accepts a *method* argument
2100used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
Senthil Kumarana41c9422011-10-20 02:37:08 +08002101should be used. For example, this will send a ``'HEAD'`` request::
Senthil Kumarande49d642011-10-16 23:54:44 +08002102
2103 >>> urlopen(Request('http://www.python.org', method='HEAD'))
2104
2105(:issue:`1673007`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +02002106
Giampaolo Rodola'be55d992011-11-22 13:33:34 +01002107
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002108webbrowser
2109----------
2110
R David Murrayf4c27572012-10-06 23:19:17 -04002111The :mod:`webbrowser` module supports more "browsers": Google Chrome (named
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002112:program:`chrome`, :program:`chromium`, :program:`chrome-browser` or
R David Murrayf4c27572012-10-06 23:19:17 -04002113:program:`chromium-browser` depending on the version and operating system),
2114and the generic launchers :program:`xdg-open`, from the FreeDesktop.org
2115project, and :program:`gvfs-open`, which is the default URI handler for GNOME
21163. (The former contributed by Arnaud Calmettes in :issue:`13620`, the latter
2117by Matthias Klose in :issue:`14493`)
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002118
2119
Eli Benderskyefcaba02012-08-09 08:20:20 +03002120xml.etree.ElementTree
2121---------------------
2122
2123The :mod:`xml.etree.ElementTree` module now imports its C accelerator by
2124default; there is no longer a need to explicitly import
2125:mod:`xml.etree.cElementTree` (this module stays for backwards compatibility,
2126but is now deprecated). In addition, the ``iter`` family of methods of
2127:class:`~xml.etree.ElementTree.Element` has been optimized (rewritten in C).
2128The module's documentation has also been greatly improved with added examples
2129and a more detailed reference.
2130
2131
R David Murray1e218c92012-10-06 18:18:55 -04002132zlib
2133----
2134
2135New attribute :attr:`zlib.Decompress.eof` makes it possible to distinguish
2136between a properly-formed compressed stream and an incomplete or truncated one.
2137(Contributed by Nadeem Vawda in :issue:`12646`.)
2138
2139New attribute :attr:`zlib.ZLIB_RUNTIME_VERSION` reports the version string of
2140the underlying ``zlib`` library that is loaded at runtime. (Contributed by
2141Torsten Landschoff in :issue:`12306`.)
2142
2143
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002144Optimizations
2145=============
2146
2147Major performance enhancements have been added:
2148
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002149* Thanks to :pep:`393`, some operations on Unicode strings have been optimized:
Victor Stinner46606ce2011-11-20 18:27:55 +01002150
2151 * the memory footprint is divided by 2 to 4 depending on the text
Victor Stinnera996f1e2011-11-21 13:14:43 +01002152 * encode an ASCII string to UTF-8 doesn't need to encode characters anymore,
2153 the UTF-8 representation is shared with the ASCII representation
Victor Stinner6099a032011-12-18 14:22:26 +01002154 * the UTF-8 encoder has been optimized
2155 * repeating a single ASCII letter and getting a substring of a ASCII strings
2156 is 4 times faster
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002157
Antoine Pitrou5d7e1d32012-06-24 22:38:23 +02002158* UTF-8 is now 2x to 4x faster. UTF-16 encoding is now up to 10x faster.
Antoine Pitrou5cec9d22012-05-17 17:37:02 +02002159
Antoine Pitrouc9092962012-06-15 22:22:18 +02002160 (contributed by Serhiy Storchaka, :issue:`14624`, :issue:`14738` and
2161 :issue:`15026`.)
Antoine Pitrou5cec9d22012-05-17 17:37:02 +02002162
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002163
2164Build and C API Changes
2165=======================
2166
2167Changes to Python's build process and to the C API include:
2168
Stefan Krah95b1ba62012-02-29 17:27:21 +01002169* New :pep:`3118` related function:
2170
2171 * :c:func:`PyMemoryView_FromMemory`
2172
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002173* :pep:`393` added new Unicode types, macros and functions:
Victor Stinner46606ce2011-11-20 18:27:55 +01002174
Victor Stinnera996f1e2011-11-21 13:14:43 +01002175 * High-level API:
2176
2177 * :c:func:`PyUnicode_CopyCharacters`
2178 * :c:func:`PyUnicode_FindChar`
2179 * :c:func:`PyUnicode_GetLength`, :c:macro:`PyUnicode_GET_LENGTH`
2180 * :c:func:`PyUnicode_New`
2181 * :c:func:`PyUnicode_Substring`
2182 * :c:func:`PyUnicode_ReadChar`, :c:func:`PyUnicode_WriteChar`
2183
2184 * Low-level API:
2185
2186 * :c:type:`Py_UCS1`, :c:type:`Py_UCS2`, :c:type:`Py_UCS4` types
2187 * :c:type:`PyASCIIObject` and :c:type:`PyCompactUnicodeObject` structures
2188 * :c:macro:`PyUnicode_READY`
2189 * :c:func:`PyUnicode_FromKindAndData`
2190 * :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsUCS4Copy`
2191 * :c:macro:`PyUnicode_DATA`, :c:macro:`PyUnicode_1BYTE_DATA`,
2192 :c:macro:`PyUnicode_2BYTE_DATA`, :c:macro:`PyUnicode_4BYTE_DATA`
2193 * :c:macro:`PyUnicode_KIND` with :c:type:`PyUnicode_Kind` enum:
2194 :c:data:`PyUnicode_WCHAR_KIND`, :c:data:`PyUnicode_1BYTE_KIND`,
2195 :c:data:`PyUnicode_2BYTE_KIND`, :c:data:`PyUnicode_4BYTE_KIND`
2196 * :c:macro:`PyUnicode_READ`, :c:macro:`PyUnicode_READ_CHAR`, :c:macro:`PyUnicode_WRITE`
2197 * :c:macro:`PyUnicode_MAX_CHAR_VALUE`
2198
R David Murraye54c7182012-10-16 21:52:24 -04002199* :c:macro:`PyArg_ParseTuple` now accepts a :class:`bytearray` for the ``c``
2200 format (:issue:`12380`).
2201
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002202
2203
Victor Stinnerd1be8782011-12-09 00:10:41 +01002204Deprecated
2205==========
2206
Georg Brandl0cd25c92011-04-29 13:45:54 +02002207Unsupported Operating Systems
Victor Stinnerd1be8782011-12-09 00:10:41 +01002208-----------------------------
Victor Stinnerb90db4c2011-04-26 22:48:24 +02002209
Brian Curtin49a40cd2011-05-02 22:30:06 -05002210OS/2 and VMS are no longer supported due to the lack of a maintainer.
2211
2212Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
2213are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +02002214
R David Murrayd2489cf2012-09-30 17:28:54 -04002215OSF support, which was deprecated in 3.2, has been completely removed.
2216
Victor Stinnerb90db4c2011-04-26 22:48:24 +02002217
Victor Stinner46606ce2011-11-20 18:27:55 +01002218Deprecated Python modules, functions and methods
Victor Stinnerd1be8782011-12-09 00:10:41 +01002219------------------------------------------------
Victor Stinner19bd0692011-11-16 00:18:57 +01002220
R David Murraye54c7182012-10-16 21:52:24 -04002221* Passing a non-empty string to ``object.__format__()`` is deprecated, and
2222 will produce a :exc:`TypeError` in Python 3.4 (:issue:`9856`).
Victor Stinner19bd0692011-11-16 00:18:57 +01002223* The ``unicode_internal`` codec has been deprecated because of the
Sandro Tosicd899122012-01-22 12:16:04 +01002224 :pep:`393`, use UTF-8, UTF-16 (``utf-16-le`` or ``utf-16-be``), or UTF-32
2225 (``utf-32-le`` or ``utf-32-be``)
Victor Stinner19bd0692011-11-16 00:18:57 +01002226* :meth:`ftplib.FTP.nlst` and :meth:`ftplib.FTP.dir`: use
Victor Stinner46606ce2011-11-20 18:27:55 +01002227 :meth:`ftplib.FTP.mlsd`
Victor Stinner19bd0692011-11-16 00:18:57 +01002228* :func:`platform.popen`: use the :mod:`subprocess` module. Check especially
R David Murrayc652ce62012-09-30 20:07:42 -04002229 the :ref:`subprocess-replacements` section (:issue:`11377`).
Victor Stinner19bd0692011-11-16 00:18:57 +01002230* :issue:`13374`: The Windows bytes API has been deprecated in the :mod:`os`
Victor Stinner46606ce2011-11-20 18:27:55 +01002231 module. Use Unicode filenames, instead of bytes filenames, to not depend on
Victor Stinner19bd0692011-11-16 00:18:57 +01002232 the ANSI code page anymore and to support any filename.
Florent Xiclunaa72a98f2012-02-13 11:03:30 +01002233* :issue:`13988`: The :mod:`xml.etree.cElementTree` module is deprecated. The
2234 accelerator is used automatically whenever available.
Victor Stinner47620a62012-04-29 02:52:39 +02002235* The behaviour of :func:`time.clock` depends on the platform: use the new
2236 :func:`time.perf_counter` or :func:`time.process_time` function instead,
2237 depending on your requirements, to have a well defined behaviour.
Victor Stinnerfa0d6282012-08-05 15:56:51 +02002238* The :func:`os.stat_float_times` function is deprecated.
Victor Stinner8f17c1c2012-08-05 16:31:32 +02002239* :mod:`abc` module:
2240
2241 * :class:`abc.abstractproperty` has been deprecated, use :class:`property`
2242 with :func:`abc.abstractmethod` instead.
2243 * :class:`abc.abstractclassmethod` has been deprecated, use
2244 :class:`classmethod` with :func:`abc.abstractmethod` instead.
2245 * :class:`abc.abstractstaticmethod` has been deprecated, use
2246 :class:`staticmethod` with :func:`abc.abstractmethod` instead.
2247
Georg Brandlfc349212012-09-26 13:11:48 +02002248* :mod:`importlib` package:
Brett Cannon288717a2012-09-25 15:23:07 -04002249
2250 * :meth:`importlib.abc.SourceLoader.path_mtime` is now deprecated in favour of
2251 :meth:`importlib.abc.SourceLoader.path_stats` as bytecode files now store
2252 both the modification time and size of the source file the bytecode file was
2253 compiled from.
2254
2255
2256
Victor Stinner19bd0692011-11-16 00:18:57 +01002257
2258
Victor Stinner46606ce2011-11-20 18:27:55 +01002259Deprecated functions and types of the C API
Victor Stinnerd1be8782011-12-09 00:10:41 +01002260-------------------------------------------
Victor Stinner46606ce2011-11-20 18:27:55 +01002261
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002262The :c:type:`Py_UNICODE` has been deprecated by :pep:`393` and will be
Victor Stinner46606ce2011-11-20 18:27:55 +01002263removed in Python 4. All functions using this type are deprecated:
2264
Victor Stinner46606ce2011-11-20 18:27:55 +01002265Unicode functions and methods using :c:type:`Py_UNICODE` and
2266:c:type:`Py_UNICODE*` types:
2267
R David Murrayf75e65f2012-09-29 15:27:53 -04002268* :c:macro:`PyUnicode_FromUnicode`: use :c:func:`PyUnicode_FromWideChar` or
2269 :c:func:`PyUnicode_FromKindAndData`
2270* :c:macro:`PyUnicode_AS_UNICODE`, :c:func:`PyUnicode_AsUnicode`,
2271 :c:func:`PyUnicode_AsUnicodeAndSize`: use :c:func:`PyUnicode_AsWideCharString`
2272* :c:macro:`PyUnicode_AS_DATA`: use :c:macro:`PyUnicode_DATA` with
2273 :c:macro:`PyUnicode_READ` and :c:macro:`PyUnicode_WRITE`
2274* :c:macro:`PyUnicode_GET_SIZE`, :c:func:`PyUnicode_GetSize`: use
2275 :c:macro:`PyUnicode_GET_LENGTH` or :c:func:`PyUnicode_GetLength`
2276* :c:macro:`PyUnicode_GET_DATA_SIZE`: use
2277 ``PyUnicode_GET_LENGTH(str) * PyUnicode_KIND(str)`` (only work on ready
2278 strings)
2279* :c:func:`PyUnicode_AsUnicodeCopy`: use :c:func:`PyUnicode_AsUCS4Copy` or
2280 :c:func:`PyUnicode_AsWideCharString`
2281* :c:func:`PyUnicode_GetMax`
Victor Stinnerab595942011-12-17 04:59:06 +01002282
Victor Stinner46606ce2011-11-20 18:27:55 +01002283
Victor Stinnera996f1e2011-11-21 13:14:43 +01002284Functions and macros manipulating Py_UNICODE* strings:
2285
R David Murrayf75e65f2012-09-29 15:27:53 -04002286* :c:macro:`Py_UNICODE_strlen`: use :c:func:`PyUnicode_GetLength` or
2287 :c:macro:`PyUnicode_GET_LENGTH`
2288* :c:macro:`Py_UNICODE_strcat`: use :c:func:`PyUnicode_CopyCharacters` or
2289 :c:func:`PyUnicode_FromFormat`
2290* :c:macro:`Py_UNICODE_strcpy`, :c:macro:`Py_UNICODE_strncpy`,
2291 :c:macro:`Py_UNICODE_COPY`: use :c:func:`PyUnicode_CopyCharacters` or
2292 :c:func:`PyUnicode_Substring`
2293* :c:macro:`Py_UNICODE_strcmp`: use :c:func:`PyUnicode_Compare`
2294* :c:macro:`Py_UNICODE_strncmp`: use :c:func:`PyUnicode_Tailmatch`
2295* :c:macro:`Py_UNICODE_strchr`, :c:macro:`Py_UNICODE_strrchr`: use
2296 :c:func:`PyUnicode_FindChar`
2297* :c:macro:`Py_UNICODE_FILL`: use :c:func:`PyUnicode_Fill`
2298* :c:macro:`Py_UNICODE_MATCH`
Victor Stinnera996f1e2011-11-21 13:14:43 +01002299
Victor Stinner46606ce2011-11-20 18:27:55 +01002300Encoders:
2301
R David Murrayf75e65f2012-09-29 15:27:53 -04002302* :c:func:`PyUnicode_Encode`: use :c:func:`PyUnicode_AsEncodedObject`
2303* :c:func:`PyUnicode_EncodeUTF7`
2304* :c:func:`PyUnicode_EncodeUTF8`: use :c:func:`PyUnicode_AsUTF8` or
2305 :c:func:`PyUnicode_AsUTF8String`
2306* :c:func:`PyUnicode_EncodeUTF32`
2307* :c:func:`PyUnicode_EncodeUTF16`
2308* :c:func:`PyUnicode_EncodeUnicodeEscape:` use
2309 :c:func:`PyUnicode_AsUnicodeEscapeString`
2310* :c:func:`PyUnicode_EncodeRawUnicodeEscape:` use
2311 :c:func:`PyUnicode_AsRawUnicodeEscapeString`
2312* :c:func:`PyUnicode_EncodeLatin1`: use :c:func:`PyUnicode_AsLatin1String`
2313* :c:func:`PyUnicode_EncodeASCII`: use :c:func:`PyUnicode_AsASCIIString`
2314* :c:func:`PyUnicode_EncodeCharmap`
2315* :c:func:`PyUnicode_TranslateCharmap`
2316* :c:func:`PyUnicode_EncodeMBCS`: use :c:func:`PyUnicode_AsMBCSString` or
2317 :c:func:`PyUnicode_EncodeCodePage` (with ``CP_ACP`` code_page)
2318* :c:func:`PyUnicode_EncodeDecimal`,
2319 :c:func:`PyUnicode_TransformDecimalToASCII`
Victor Stinner46606ce2011-11-20 18:27:55 +01002320
2321
Stefan Krah029780b2012-08-24 20:14:12 +02002322Deprecated features
2323-------------------
2324
2325The :mod:`array` module's ``'u'`` format code is now deprecated and will be
2326removed in Python 4 together with the rest of the (:c:type:`Py_UNICODE`) API.
2327
2328
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002329Porting to Python 3.3
2330=====================
2331
2332This section lists previously described changes and other bugfixes
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002333that may require changes to your code.
2334
Barry Warsawc1e721b2012-07-30 16:24:12 -04002335.. _portingpythoncode:
2336
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002337Porting Python code
2338-------------------
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002339
Victor Stinnerfa0d6282012-08-05 15:56:51 +02002340* Hash randomization is enabled by default. Set the :envvar:`PYTHONHASHSEED`
2341 environment variable to ``0`` to disable hash randomization. See also the
2342 :meth:`object.__hash__` method.
Georg Brandld6c43402012-03-07 08:55:52 +01002343
Victor Stinner19bd0692011-11-16 00:18:57 +01002344* :issue:`12326`: On Linux, sys.platform doesn't contain the major version
Victor Stinnerff3d9392011-08-20 23:39:26 +02002345 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
2346 on the Linux version used to build Python. Replace sys.platform == 'linux2'
2347 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
2348 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +01002349
Victor Stinnerecc6e662012-03-14 00:39:29 +01002350* :issue:`13847`, :issue:`14180`: :mod:`time` and :mod:`datetime`:
2351 :exc:`OverflowError` is now raised instead of :exc:`ValueError` if a
2352 timestamp is out of range. :exc:`OSError` is now raised if C functions
2353 :c:func:`gmtime` or :c:func:`localtime` failed.
2354
Brett Cannonc2043482012-04-29 20:59:41 -04002355* The default finders used by import now utilize a cache of what is contained
2356 within a specific directory. If you create a Python source file or sourceless
2357 bytecode file, make sure to call :func:`importlib.invalidate_caches` to clear
2358 out the cache for the finders to notice the new file.
2359
2360* :exc:`ImportError` now uses the full name of the module that was attemped to
2361 be imported. Doctests that check ImportErrors' message will need to be
2362 updated to use the full name of the module instead of just the tail of the
2363 name.
2364
Ezio Melotti7598e182012-09-20 08:33:53 +03002365* The *index* argument to :func:`__import__` now defaults to 0 instead of -1
Brett Cannonc2043482012-04-29 20:59:41 -04002366 and no longer support negative values. It was an oversight when :pep:`328` was
2367 implemented that the default value remained -1. If you need to continue to
2368 perform a relative import followed by an absolute import, then perform the
2369 relative import using an index of 1, followed by another import using an
2370 index of 0. It is preferred, though, that you use
2371 :func:`importlib.import_module` rather than call :func:`__import__` directly.
2372
2373* :func:`__import__` no longer allows one to use an index value other than 0
2374 for top-level modules. E.g. ``__import__('sys', level=1)`` is now an error.
2375
2376* Because :attr:`sys.meta_path` and :attr:`sys.path_hooks` now have finders on
2377 them by default, you will most likely want to use :meth:`list.insert` instead
2378 of :meth:`list.append` to add to those lists.
2379
2380* Because ``None`` is now inserted into :attr:`sys.path_importer_cache`, if you
2381 are clearing out entries in the dictionary of paths that do not have a
2382 finder, you will need to remove keys paired with values of ``None`` **and**
Brett Cannon903c27c2012-07-09 14:15:32 -04002383 :class:`imp.NullImporter` to be backwards-compatible. This will lead to extra
Brett Cannonc2043482012-04-29 20:59:41 -04002384 overhead on older versions of Python that re-insert ``None`` into
2385 :attr:`sys.path_importer_cache` where it repesents the use of implicit
2386 finders, but semantically it should not change anything.
2387
Brett Cannon077ef452012-08-02 17:50:06 -04002388* :class:`importlib.abc.Finder` no longer specifies a `find_module()` abstract
2389 method that must be implemented. If you were relying on subclasses to
2390 implement that method, make sure to check for the method's existence first.
2391 You will probably want to check for `find_loader()` first, though, in the
2392 case of working with :term:`path entry finders <path entry finder>`.
2393
Nick Coghlan60610002012-07-15 22:39:39 +10002394* :mod:`pkgutil` has been converted to use :mod:`importlib` internally. This
2395 eliminates many edge cases where the old behaviour of the PEP 302 import
2396 emulation failed to match the behaviour of the real import system. The
2397 import emulation itself is still present, but is now deprecated. The
2398 :func:`pkgutil.iter_importers` and :func:`pkgutil.walk_packages` functions
2399 special case the standard import hooks so they are still supported even
2400 though they do not provide the non-standard ``iter_modules()`` method.
Brett Cannon903c27c2012-07-09 14:15:32 -04002401
R David Murrayea226852012-09-30 01:27:24 -04002402* A longstanding RFC-compliance bug (:issue:`1079`) in the parsing done by
2403 :func:`email.header.decode_header` has been fixed. Code that uses the
2404 standard idiom to convert encoded headers into unicode
2405 (``str(make_header(decode_header(h))``) will see no change, but code that
2406 looks at the individual tuples returned by decode_header will see that
2407 whitespace that precedes or follows ``ASCII`` sections is now included in the
2408 ``ASCII`` section. Code that builds headers using ``make_header`` should
2409 also continue to work without change, since ``make_header`` continues to add
2410 whitespace between ``ASCII`` and non-``ASCII`` sections if it is not already
2411 present in the input strings.
2412
2413* :func:`email.utils.formataddr` now does the correct content transfer
2414 encoding when passed non-``ASCII`` display names. Any code that depended on
2415 the previous buggy behavior that preserved the non-``ASCII`` unicode in the
R David Murrayd2489cf2012-09-30 17:28:54 -04002416 formatted output string will need to be changed (:issue:`1690608`).
2417
2418* :meth:`poplib.POP3.quit` may now raise protocol errors like all other
2419 ``poplib`` methods. Code that assumes ``quit`` does not raise
2420 :exc:`poplib.error_proto` errors may need to be changed if errors on ``quit``
2421 are encountered by a particular application (:issue:`11291`).
R David Murrayea226852012-09-30 01:27:24 -04002422
R David Murray445d69c2012-09-30 21:59:56 -04002423* The ``strict`` argument to :class:`email.parser.Parser`, deprecated since
2424 Python 2.4, has finally been removed.
2425
2426* The deprecated method ``unittest.TestCase.assertSameElements`` has been
2427 removed.
2428
2429* The deprecated variable ``time.accept2dyear`` has been removed.
2430
R David Murray1e218c92012-10-06 18:18:55 -04002431* The deprecated ``Context._clamp`` attribute has been removed from the
2432 :mod:`decimal` module. It was previously replaced by the public attribute
2433 :attr:`~decimal.Context.clamp`. (See :issue:`8540`.)
2434
R David Murray3430fb82012-10-02 18:24:56 -04002435* The undocumented internal helper class ``SSLFakeFile`` has been removed
2436 from :mod:`smtplib`, since its functionality has long been provided directly
2437 by :meth:`socket.socket.makefile`.
2438
2439* Passing a negative value to :func:`time.sleep` on Windows now raises an
2440 error instead of sleeping forever. It has always raised an error on posix.
2441
2442* The ``ast.__version__`` constant has been removed. If you need to
2443 make decisions affected by the AST version, use :attr:`sys.version_info`
2444 to make the decision.
R David Murray994ce1a2012-10-02 10:19:08 -04002445
R David Murrayef4d2862012-10-06 14:35:35 -04002446* Code that used to work around the fact that the :mod:`threading` module used
2447 factory functions by subclassing the private classes will need to change to
2448 subclass the now-public classes.
2449
R David Murraye54c7182012-10-16 21:52:24 -04002450* The undocumented debugging machinery in the threading module has been
2451 removed, simplifying the code. This should have no effect on production
2452 code, but is mentioned here in case any application debug frameworks were
2453 interacting with it (:issue:`13550`).
2454
Brett Cannonc2043482012-04-29 20:59:41 -04002455
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002456Porting C code
2457--------------
2458
Stefan Krah54c32032012-02-29 17:47:21 +01002459* In the course of changes to the buffer API the undocumented
2460 :c:member:`~Py_buffer.smalltable` member of the
2461 :c:type:`Py_buffer` structure has been removed and the
2462 layout of the :c:type:`PyMemoryViewObject` has changed.
2463
2464 All extensions relying on the relevant parts in ``memoryobject.h``
2465 or ``object.h`` must be rebuilt.
2466
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002467* Due to :ref:`PEP 393 <pep-393>`, the :c:type:`Py_UNICODE` type and all
2468 functions using this type are deprecated (but will stay available for
2469 at least five years). If you were using low-level Unicode APIs to
2470 construct and access unicode objects and you want to benefit of the
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002471 memory footprint reduction provided by PEP 393, you have to convert
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002472 your code to the new :doc:`Unicode API <../c-api/unicode>`.
2473
2474 However, if you only have been using high-level functions such as
2475 :c:func:`PyUnicode_Concat()`, :c:func:`PyUnicode_Join` or
2476 :c:func:`PyUnicode_FromFormat()`, your code will automatically take
2477 advantage of the new unicode representations.
2478
Brett Cannon77b2abd2012-07-09 16:09:00 -04002479* :c:func:`PyImport_GetMagicNumber` now returns -1 upon failure.
2480
Ezio Melotti7598e182012-09-20 08:33:53 +03002481* As a negative value for the *level* argument to :func:`__import__` is no
Brett Cannon522267e2012-08-10 18:55:08 -04002482 longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`.
Ezio Melotti7598e182012-09-20 08:33:53 +03002483 This also means that the value of *level* used by
Brett Cannon522267e2012-08-10 18:55:08 -04002484 :c:func:`PyImport_ImportModuleEx` is now 0 instead of -1.
2485
Brett Cannon77b2abd2012-07-09 16:09:00 -04002486
Antoine Pitrouc229e6e2012-02-20 19:41:11 +01002487Building C extensions
2488---------------------
2489
2490* The range of possible file names for C extensions has been narrowed.
2491 Very rarely used spellings have been suppressed: under POSIX, files
2492 named ``xxxmodule.so``, ``xxxmodule.abi3.so`` and
2493 ``xxxmodule.cpython-*.so`` are no longer recognized as implementing
2494 the ``xxx`` module. If you had been generating such files, you have
2495 to switch to the other spellings (i.e., remove the ``module`` string
2496 from the file names).
2497
2498 (implemented in :issue:`14040`.)
2499
2500
R David Murray1764c802012-09-29 11:42:36 -04002501Command Line Switch Changes
2502---------------------------
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002503
R David Murray1764c802012-09-29 11:42:36 -04002504* The -Q command-line flag and related artifacts have been removed. Code
2505 checking sys.flags.division_warning will need updating.
Éric Araujobe3bd572011-03-26 01:55:15 +01002506
R David Murray1764c802012-09-29 11:42:36 -04002507 (:issue:`10998`, contributed by Éric Araujo.)
2508
2509* When :program:`python` is started with :option:`-S`, ``import site``
2510 will no longer add site-specific paths to the module search paths. In
2511 previous versions, it did.
2512
2513 (:issue:`11591`, contributed by Carl Meyer with editions by Éric Araujo.)