blob: 7e5133dbb7208c6fbd2a4a2faca87e3ab6da324c [file] [log] [blame]
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00001****************************
2 What's New In Python 3.3
3****************************
4
Éric Araujob07b97f2011-10-05 01:03:34 +02005.. Rules for maintenance:
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00006
7 * Anyone can add text to this document. Do not spend very much time
8 on the wording of your changes, because your text will probably
9 get rewritten to some degree.
10
11 * The maintainer will go through Misc/NEWS periodically and add
12 changes; it's therefore more important to add your changes to
13 Misc/NEWS than to this file.
14
15 * This is not a complete list of every single change; completeness
16 is the purpose of Misc/NEWS. Some changes I consider too small
17 or esoteric to include. If such a change is added to the text,
18 I'll just remove it. (This is another reason you shouldn't spend
19 too much time on writing your addition.)
20
21 * If you want to draw your new text to the attention of the
22 maintainer, add 'XXX' to the beginning of the paragraph or
23 section.
24
25 * It's OK to just add a fragmentary note about a change. For
26 example: "XXX Describe the transmogrify() function added to the
27 socket module." The maintainer will research the change and
28 write the necessary text.
29
30 * You can comment out your additions if you like, but it's not
31 necessary (especially when a final release is some months away).
32
33 * Credit the author of a patch or bugfix. Just the name is
34 sufficient; the e-mail address isn't necessary.
35
36 * It's helpful to add the bug/patch number as a comment:
37
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000038 XXX Describe the transmogrify() function added to the socket
39 module.
Éric Araujob07b97f2011-10-05 01:03:34 +020040 (Contributed by P.Y. Developer in :issue:`12345`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000041
Éric Araujob07b97f2011-10-05 01:03:34 +020042 This saves the maintainer the effort of going through the Mercurial log
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000043 when researching a change.
44
45This article explains the new features in Python 3.3, compared to 3.2.
R David Murrayf23e2b62012-09-29 19:41:26 -040046Python 3.3 was released on September 29, 2012. For full details,
Georg Brandle73778c2014-10-29 08:36:35 +010047see the `changelog <https://docs.python.org/3.3/whatsnew/changelog.html>`_.
R David Murrayf23e2b62012-09-29 19:41:26 -040048
49.. seealso::
50
Nick Coghlancfb18182012-09-30 12:08:13 +053051 :pep:`398` - Python 3.3 Release Schedule
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000052
Nick Coghlanb47b5392012-05-26 01:31:25 +100053
Antoine Pitrouc907de92012-08-21 00:53:06 +020054Summary -- Release highlights
55=============================
Victor Stinner636130e2012-08-05 16:37:12 +020056
Antoine Pitrouc907de92012-08-21 00:53:06 +020057.. This section singles out the most important changes in Python 3.3.
58 Brevity is key.
Victor Stinner636130e2012-08-05 16:37:12 +020059
Antoine Pitrouc907de92012-08-21 00:53:06 +020060New syntax features:
Victor Stinner636130e2012-08-05 16:37:12 +020061
Antoine Pitrouc907de92012-08-21 00:53:06 +020062* New ``yield from`` expression for :ref:`generator delegation <pep-380>`.
63* The ``u'unicode'`` syntax is accepted again for :class:`str` objects.
Victor Stinner636130e2012-08-05 16:37:12 +020064
Antoine Pitrouc907de92012-08-21 00:53:06 +020065New library modules:
66
67* :mod:`faulthandler` (helps debugging low-level crashes)
68* :mod:`ipaddress` (high-level objects representing IP addresses and masks)
69* :mod:`lzma` (compress data using the XZ / LZMA algorithm)
Victor Stinner1da769a2012-09-18 22:40:03 +020070* :mod:`unittest.mock` (replace parts of your system under test with mock objects)
Antoine Pitrouc907de92012-08-21 00:53:06 +020071* :mod:`venv` (Python :ref:`virtual environments <pep-405>`, as in the
72 popular ``virtualenv`` package)
73
74New built-in features:
75
76* Reworked :ref:`I/O exception hierarchy <pep-3151>`.
77
78Implementation improvements:
79
80* Rewritten :ref:`import machinery <importlib>` based on :mod:`importlib`.
81* More compact :ref:`unicode strings <pep-393>`.
82* More compact :ref:`attribute dictionaries <pep-412>`.
83
R David Murrayf23e2b62012-09-29 19:41:26 -040084Significantly Improved Library Modules:
85
86* C Accelerator for the :ref:`decimal <new-decimal>` module.
87* Better unicode handling in the :ref:`email <new-email>` module
88 (:term:`provisional <provisional package>`).
89
Antoine Pitrouc907de92012-08-21 00:53:06 +020090Security improvements:
91
92* Hash randomization is switched on by default.
93
94Please read on for a comprehensive list of user-facing changes.
95
96
97.. _pep-405:
Victor Stinner636130e2012-08-05 16:37:12 +020098
Éric Araujo859aad62012-06-24 00:07:41 -040099PEP 405: Virtual Environments
100=============================
Nick Coghlanb47b5392012-05-26 01:31:25 +1000101
Antoine Pitroua5e57972012-08-21 01:08:17 +0200102Virtual environments help create separate Python setups while sharing a
103system-wide base install, for ease of maintenance. Virtual environments
104have their own set of private site packages (i.e. locally-installed
105libraries), and are optionally segregated from the system-wide site
106packages. Their concept and implementation are inspired by the popular
107``virtualenv`` third-party package, but benefit from tighter integration
108with the interpreter core.
Éric Araujo859aad62012-06-24 00:07:41 -0400109
Antoine Pitroua5e57972012-08-21 01:08:17 +0200110This PEP adds the :mod:`venv` module for programmatic access, and the
Ned Deily538f5c42016-07-11 14:21:58 -0400111``pyvenv`` script for command-line access and
Ezio Melottiad626802012-10-16 21:50:33 +0300112administration. The Python interpreter checks for a ``pyvenv.cfg``,
Antoine Pitroua5e57972012-08-21 01:08:17 +0200113file whose existence signals the base of a virtual environment's directory
114tree.
Nick Coghlanb47b5392012-05-26 01:31:25 +1000115
R David Murrayf23e2b62012-09-29 19:41:26 -0400116.. seealso::
117
118 :pep:`405` - Python Virtual Environments
Ezio Melotti36e01df2012-10-20 16:26:18 +0300119 PEP written by Carl Meyer; implementation by Carl Meyer and Vinay Sajip
R David Murrayf23e2b62012-09-29 19:41:26 -0400120
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000121
Ezio Melotti8cd45bd2012-10-21 07:36:58 +0300122PEP 420: Implicit Namespace Packages
123====================================
Éric Araujo859aad62012-06-24 00:07:41 -0400124
125Native support for package directories that don't require ``__init__.py``
126marker files and can automatically span multiple path segments (inspired by
127various third party approaches to namespace packages, as described in
128:pep:`420`)
129
R David Murrayf23e2b62012-09-29 19:41:26 -0400130.. seealso::
131
Ezio Melotti8cd45bd2012-10-21 07:36:58 +0300132 :pep:`420` - Implicit Namespace Packages
R David Murrayf23e2b62012-09-29 19:41:26 -0400133 PEP written by Eric V. Smith; implementation by Eric V. Smith
134 and Barry Warsaw
135
Éric Araujo859aad62012-06-24 00:07:41 -0400136
137.. _pep-3118-update:
Nick Coghlan98e20702012-03-06 21:50:13 +1000138
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100139PEP 3118: New memoryview implementation and buffer protocol documentation
140=========================================================================
141
R David Murrayf23e2b62012-09-29 19:41:26 -0400142The implementation of :pep:`3118` has been significantly improved.
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100143
144The new memoryview implementation comprehensively fixes all ownership and
145lifetime issues of dynamically allocated fields in the Py_buffer struct
146that led to multiple crash reports. Additionally, several functions that
147crashed or returned incorrect results for non-contiguous or multi-dimensional
148input have been fixed.
149
150The memoryview object now has a PEP-3118 compliant getbufferproc()
151that checks the consumer's request type. Many new features have been
152added, most of them work in full generality for non-contiguous arrays
153and arrays with suboffsets.
154
155The documentation has been updated, clearly spelling out responsibilities
156for both exporters and consumers. Buffer request flags are grouped into
157basic and compound flags. The memory layout of non-contiguous and
158multi-dimensional NumPy-style arrays is explained.
159
160Features
161--------
162
163* All native single character format specifiers in struct module syntax
164 (optionally prefixed with '@') are now supported.
165
166* With some restrictions, the cast() method allows changing of format and
167 shape of C-contiguous arrays.
168
169* Multi-dimensional list representations are supported for any array type.
170
171* Multi-dimensional comparisons are supported for any array type.
172
Stefan Krah9e31d362012-09-08 15:35:01 +0200173* One-dimensional memoryviews of hashable (read-only) types with formats B,
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200174 b or c are now hashable. (Contributed by Antoine Pitrou in :issue:`13411`.)
Nick Coghlan98e20702012-03-06 21:50:13 +1000175
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100176* Arbitrary slicing of any 1-D arrays type is supported. For example, it
177 is now possible to reverse a memoryview in O(1) by using a negative step.
178
179API changes
180-----------
181
182* The maximum number of dimensions is officially limited to 64.
183
184* The representation of empty shape, strides and suboffsets is now
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300185 an empty tuple instead of ``None``.
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100186
187* Accessing a memoryview element with format 'B' (unsigned bytes)
188 now returns an integer (in accordance with the struct module syntax).
189 For returning a bytes object the view must be cast to 'c' first.
190
Nick Coghlan06e1ab02012-08-25 17:59:50 +1000191* memoryview comparisons now use the logical structure of the operands
192 and compare all array elements by value. All format strings in struct
193 module syntax are supported. Views with unrecognised format strings
194 are still permitted, but will always compare as unequal, regardless
195 of view contents.
196
Serhiy Storchakaa4d170d2013-12-23 18:20:51 +0200197* For further changes see `Build and C API Changes`_ and `Porting C code`_.
Stefan Krah9a2d99e2012-02-25 12:24:21 +0100198
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200199(Contributed by Stefan Krah in :issue:`10181`.)
R David Murrayf23e2b62012-09-29 19:41:26 -0400200
201.. seealso::
202
203 :pep:`3118` - Revising the Buffer Protocol
204
205
Antoine Pitrou037ffbf2011-10-24 00:25:41 +0200206.. _pep-393:
207
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300208PEP 393: Flexible String Representation
209=======================================
210
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200211The Unicode string type is changed to support multiple internal
212representations, depending on the character with the largest Unicode ordinal
213(1, 2, or 4 bytes) in the represented string. This allows a space-efficient
214representation in common cases, but gives access to full UCS-4 on all
215systems. For compatibility with existing APIs, several representations may
216exist in parallel; over time, this compatibility should be phased out.
Ezio Melotti397546a2011-09-29 08:34:36 +0300217
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200218On the Python side, there should be no downside to this change.
Ezio Melotti397546a2011-09-29 08:34:36 +0300219
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200220On the C API side, PEP 393 is fully backward compatible. The legacy API
221should remain available at least five years. Applications using the legacy
222API will not fully benefit of the memory reduction, or - worse - may use
223a bit more memory, because Python may have to maintain two versions of each
224string (in the legacy format and in the new efficient storage).
225
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100226Functionality
227-------------
228
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200229Changes introduced by :pep:`393` are the following:
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300230
Serhiy Storchakad3faf432015-01-18 11:28:37 +0200231* Python now always supports the full range of Unicode code points, including
Ezio Melotti397546a2011-09-29 08:34:36 +0300232 non-BMP ones (i.e. from ``U+0000`` to ``U+10FFFF``). The distinction between
233 narrow and wide builds no longer exists and Python now behaves like a wide
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200234 build, even under Windows.
Ezio Melotti397546a2011-09-29 08:34:36 +0300235
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200236* With the death of narrow builds, the problems specific to narrow builds have
237 also been fixed, for example:
Ezio Melotti397546a2011-09-29 08:34:36 +0300238
239 * :func:`len` now always returns 1 for non-BMP characters,
240 so ``len('\U0010FFFF') == 1``;
241
242 * surrogate pairs are not recombined in string literals,
243 so ``'\uDBFF\uDFFF' != '\U0010FFFF'``;
244
Antoine Pitroufd9b4162011-10-24 00:14:43 +0200245 * indexing or slicing non-BMP characters returns the expected value,
Ezio Melotti397546a2011-09-29 08:34:36 +0300246 so ``'\U0010FFFF'[0]`` now returns ``'\U0010FFFF'`` and not ``'\uDBFF'``;
247
Antoine Pitroud136aec2011-11-17 01:48:06 +0100248 * all other functions in the standard library now correctly handle
Serhiy Storchakad3faf432015-01-18 11:28:37 +0200249 non-BMP code points.
Ezio Melotti397546a2011-09-29 08:34:36 +0300250
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300251* The value of :data:`sys.maxunicode` is now always ``1114111`` (``0x10FFFF``
252 in hexadecimal). The :c:func:`PyUnicode_GetMax` function still returns
253 either ``0xFFFF`` or ``0x10FFFF`` for backward compatibility, and it should
254 not be used with the new Unicode API (see :issue:`13054`).
255
Ezio Melotti397546a2011-09-29 08:34:36 +0300256* The :file:`./configure` flag ``--with-wide-unicode`` has been removed.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200257
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100258Performance and resource usage
259------------------------------
260
Serhiy Storchakad3faf432015-01-18 11:28:37 +0200261The storage of Unicode strings now depends on the highest code point in the string:
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100262
Serhiy Storchakad3faf432015-01-18 11:28:37 +0200263* pure ASCII and Latin1 strings (``U+0000-U+00FF``) use 1 byte per code point;
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100264
Serhiy Storchakad3faf432015-01-18 11:28:37 +0200265* BMP strings (``U+0000-U+FFFF``) use 2 bytes per code point;
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100266
Serhiy Storchakad3faf432015-01-18 11:28:37 +0200267* non-BMP strings (``U+10000-U+10FFFF``) use 4 bytes per code point.
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100268
Martin v. Löwisde157cc2012-03-06 08:42:17 +0100269The net effect is that for most applications, memory usage of string
270storage should decrease significantly - especially compared to former
271wide unicode builds - as, in many cases, strings will be pure ASCII
272even in international contexts (because many strings store non-human
273language data, such as XML fragments, HTTP headers, JSON-encoded data,
274etc.). We also hope that it will, for the same reasons, increase CPU
275cache efficiency on non-trivial applications. The memory usage of
276Python 3.3 is two to three times smaller than Python 3.2, and a little
277bit better than Python 2.7, on a Django benchmark (see the PEP for
278details).
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100279
R David Murrayf23e2b62012-09-29 19:41:26 -0400280.. seealso::
281
282 :pep:`393` - Flexible String Representation
283 PEP written by Martin von Löwis; implementation by Torsten Becker
284 and Martin von Löwis.
285
Éric Araujob07b97f2011-10-05 01:03:34 +0200286
Nick Coghlan349c8022012-09-30 13:00:43 +0530287.. _pep-397:
288
289PEP 397: Python Launcher for Windows
290====================================
291
292The Python 3.3 Windows installer now includes a ``py`` launcher application
293that can be used to launch Python applications in a version independent
294fashion.
295
296This launcher is invoked implicitly when double-clicking ``*.py`` files.
297If only a single Python version is installed on the system, that version
298will be used to run the file. If multiple versions are installed, the most
299recent version is used by default, but this can be overridden by including
300a Unix-style "shebang line" in the Python script.
301
302The launcher can also be used explicitly from the command line as the ``py``
303application. Running ``py`` follows the same version selection rules as
304implicitly launching scripts, but a more specific version can be selected
305by passing appropriate arguments (such as ``-3`` to request Python 3 when
306Python 2 is also installed, or ``-2.6`` to specifclly request an earlier
307Python version when a more recent version is installed).
308
309In addition to the launcher, the Windows installer now includes an
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200310option to add the newly installed Python to the system PATH. (Contributed
311by Brian Curtin in :issue:`3561`.)
Nick Coghlan349c8022012-09-30 13:00:43 +0530312
313.. seealso::
314
315 :pep:`397` - Python Launcher for Windows
316 PEP written by Mark Hammond and Martin v. Löwis; implementation by
317 Vinay Sajip.
318
319 Launcher documentation: :ref:`launcher`
320
321 Installer PATH modification: :ref:`windows-path-mod`
322
323
Antoine Pitrouc907de92012-08-21 00:53:06 +0200324.. _pep-3151:
325
Victor Stinnera1bf2982011-10-12 20:35:02 +0200326PEP 3151: Reworking the OS and IO exception hierarchy
327=====================================================
328
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200329The hierarchy of exceptions raised by operating system errors is now both
330simplified and finer-grained.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200331
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200332You don't have to worry anymore about choosing the appropriate exception
333type between :exc:`OSError`, :exc:`IOError`, :exc:`EnvironmentError`,
334:exc:`WindowsError`, :exc:`mmap.error`, :exc:`socket.error` or
335:exc:`select.error`. All these exception types are now only one:
336:exc:`OSError`. The other names are kept as aliases for compatibility
337reasons.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200338
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200339Also, it is now easier to catch a specific error condition. Instead of
340inspecting the ``errno`` attribute (or ``args[0]``) for a particular
341constant from the :mod:`errno` module, you can catch the adequate
342:exc:`OSError` subclass. The available subclasses are the following:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200343
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200344* :exc:`BlockingIOError`
345* :exc:`ChildProcessError`
346* :exc:`ConnectionError`
347* :exc:`FileExistsError`
348* :exc:`FileNotFoundError`
349* :exc:`InterruptedError`
350* :exc:`IsADirectoryError`
351* :exc:`NotADirectoryError`
352* :exc:`PermissionError`
353* :exc:`ProcessLookupError`
354* :exc:`TimeoutError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200355
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200356And the :exc:`ConnectionError` itself has finer-grained subclasses:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200357
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200358* :exc:`BrokenPipeError`
359* :exc:`ConnectionAbortedError`
360* :exc:`ConnectionRefusedError`
361* :exc:`ConnectionResetError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200362
363Thanks to the new exceptions, common usages of the :mod:`errno` can now be
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200364avoided. For example, the following code written for Python 3.2::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200365
366 from errno import ENOENT, EACCES, EPERM
367
368 try:
369 with open("document.txt") as f:
370 content = f.read()
371 except IOError as err:
372 if err.errno == ENOENT:
373 print("document.txt file is missing")
374 elif err.errno in (EACCES, EPERM):
375 print("You are not allowed to read document.txt")
376 else:
377 raise
378
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200379can now be written without the :mod:`errno` import and without manual
380inspection of exception attributes::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200381
382 try:
383 with open("document.txt") as f:
384 content = f.read()
385 except FileNotFoundError:
386 print("document.txt file is missing")
387 except PermissionError:
388 print("You are not allowed to read document.txt")
389
R David Murrayf23e2b62012-09-29 19:41:26 -0400390.. seealso::
391
392 :pep:`3151` - Reworking the OS and IO Exception Hierarchy
393 PEP written and implemented by Antoine Pitrou
394
Victor Stinnera1bf2982011-10-12 20:35:02 +0200395
Chris Jerdonek2654b862012-12-23 15:31:57 -0800396.. index::
397 single: yield; yield from (in What's New)
398
Antoine Pitrouc907de92012-08-21 00:53:06 +0200399.. _pep-380:
400
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000401PEP 380: Syntax for Delegating to a Subgenerator
402================================================
403
Chris Jerdonek2654b862012-12-23 15:31:57 -0800404PEP 380 adds the ``yield from`` expression, allowing a :term:`generator` to
405delegate
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000406part of its operations to another generator. This allows a section of code
Chris Jerdonek2654b862012-12-23 15:31:57 -0800407containing :keyword:`yield` to be factored out and placed in another generator.
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000408Additionally, the subgenerator is allowed to return with a value, and the
409value is made available to the delegating generator.
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000410
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000411While designed primarily for use in delegating to a subgenerator, the ``yield
412from`` expression actually allows delegation to arbitrary subiterators.
413
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000414For simple iterators, ``yield from iterable`` is essentially just a shortened
415form of ``for item in iterable: yield item``::
416
417 >>> def g(x):
418 ... yield from range(x, 0, -1)
419 ... yield from range(x)
420 ...
421 >>> list(g(5))
422 [5, 4, 3, 2, 1, 0, 1, 2, 3, 4]
423
424However, unlike an ordinary loop, ``yield from`` allows subgenerators to
425receive sent and thrown values directly from the calling scope, and
426return a final value to the outer generator::
427
Chris Jerdonek2654b862012-12-23 15:31:57 -0800428 >>> def accumulate():
429 ... tally = 0
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000430 ... while 1:
431 ... next = yield
432 ... if next is None:
433 ... return tally
434 ... tally += next
435 ...
Chris Jerdonek2654b862012-12-23 15:31:57 -0800436 >>> def gather_tallies(tallies):
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000437 ... while 1:
438 ... tally = yield from accumulate()
439 ... tallies.append(tally)
440 ...
441 >>> tallies = []
442 >>> acc = gather_tallies(tallies)
Serhiy Storchakadba90392016-05-10 12:01:23 +0300443 >>> next(acc) # Ensure the accumulator is ready to accept values
Chris Jerdonek2654b862012-12-23 15:31:57 -0800444 >>> for i in range(4):
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000445 ... acc.send(i)
446 ...
Serhiy Storchakadba90392016-05-10 12:01:23 +0300447 >>> acc.send(None) # Finish the first tally
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000448 >>> for i in range(5):
449 ... acc.send(i)
450 ...
Serhiy Storchakadba90392016-05-10 12:01:23 +0300451 >>> acc.send(None) # Finish the second tally
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000452 >>> tallies
Chris Jerdonek2654b862012-12-23 15:31:57 -0800453 [6, 10]
Nick Coghlanb9b281b2012-03-06 22:31:12 +1000454
455The main principle driving this change is to allow even generators that are
456designed to be used with the ``send`` and ``throw`` methods to be split into
457multiple subgenerators as easily as a single large function can be split into
458multiple subfunctions.
459
R David Murrayf23e2b62012-09-29 19:41:26 -0400460.. seealso::
461
462 :pep:`380` - Syntax for Delegating to a Subgenerator
463 PEP written by Greg Ewing; implementation by Greg Ewing, integrated into
Ezio Melotti76e7ea52012-10-20 22:53:47 +0300464 3.3 by Renaud Blanch, Ryan Kelly and Nick Coghlan; documentation by
465 Zbigniew Jędrzejewski-Szmek and Nick Coghlan
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000466
467
Nick Coghlanab7bf212012-02-26 17:49:52 +1000468PEP 409: Suppressing exception context
469======================================
470
Nick Coghlanab7bf212012-02-26 17:49:52 +1000471PEP 409 introduces new syntax that allows the display of the chained
472exception context to be disabled. This allows cleaner error messages in
473applications that convert between exception types::
474
475 >>> class D:
476 ... def __init__(self, extra):
477 ... self._extra_attributes = extra
478 ... def __getattr__(self, attr):
479 ... try:
480 ... return self._extra_attributes[attr]
481 ... except KeyError:
482 ... raise AttributeError(attr) from None
483 ...
484 >>> D({}).x
485 Traceback (most recent call last):
486 File "<stdin>", line 1, in <module>
487 File "<stdin>", line 8, in __getattr__
488 AttributeError: x
489
490Without the ``from None`` suffix to suppress the cause, the original
491exception would be displayed by default::
492
493 >>> class C:
494 ... def __init__(self, extra):
495 ... self._extra_attributes = extra
496 ... def __getattr__(self, attr):
497 ... try:
498 ... return self._extra_attributes[attr]
499 ... except KeyError:
500 ... raise AttributeError(attr)
501 ...
502 >>> C({}).x
503 Traceback (most recent call last):
504 File "<stdin>", line 6, in __getattr__
505 KeyError: 'x'
506
507 During handling of the above exception, another exception occurred:
508
509 Traceback (most recent call last):
510 File "<stdin>", line 1, in <module>
511 File "<stdin>", line 8, in __getattr__
512 AttributeError: x
513
514No debugging capability is lost, as the original exception context remains
515available if needed (for example, if an intervening library has incorrectly
516suppressed valuable underlying details)::
517
518 >>> try:
519 ... D({}).x
520 ... except AttributeError as exc:
521 ... print(repr(exc.__context__))
522 ...
523 KeyError('x',)
524
R David Murrayf23e2b62012-09-29 19:41:26 -0400525.. seealso::
526
527 :pep:`409` - Suppressing exception context
528 PEP written by Ethan Furman; implemented by Ethan Furman and Nick
529 Coghlan.
530
Nick Coghlanab7bf212012-02-26 17:49:52 +1000531
Nick Coghlan98e20702012-03-06 21:50:13 +1000532PEP 414: Explicit Unicode literals
533======================================
534
Nick Coghlan98e20702012-03-06 21:50:13 +1000535To ease the transition from Python 2 for Unicode aware Python applications
536that make heavy use of Unicode literals, Python 3.3 once again supports the
537"``u``" prefix for string literals. This prefix has no semantic significance
538in Python 3, it is provided solely to reduce the number of purely mechanical
539changes in migrating to Python 3, making it easier for developers to focus on
540the more significant semantic changes (such as the stricter default
541separation of binary and text data).
542
R David Murrayf23e2b62012-09-29 19:41:26 -0400543.. seealso::
544
545 :pep:`414` - Explicit Unicode literals
546 PEP written by Armin Ronacher.
547
Nick Coghlan98e20702012-03-06 21:50:13 +1000548
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100549PEP 3155: Qualified name for classes and functions
550==================================================
551
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100552Functions and class objects have a new ``__qualname__`` attribute representing
553the "path" from the module top-level to their definition. For global functions
554and classes, this is the same as ``__name__``. For other functions and classes,
555it provides better information about where they were actually defined, and
556how they might be accessible from the global scope.
557
558Example with (non-bound) methods::
Nick Coghlan2dfe6b02012-01-14 14:19:49 +1000559
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100560 >>> class C:
561 ... def meth(self):
562 ... pass
563 >>> C.meth.__name__
564 'meth'
565 >>> C.meth.__qualname__
566 'C.meth'
567
568Example with nested classes::
569
570 >>> class C:
571 ... class D:
572 ... def meth(self):
573 ... pass
574 ...
575 >>> C.D.__name__
576 'D'
577 >>> C.D.__qualname__
578 'C.D'
579 >>> C.D.meth.__name__
580 'meth'
581 >>> C.D.meth.__qualname__
582 'C.D.meth'
583
584Example with nested functions::
585
586 >>> def outer():
587 ... def inner():
588 ... pass
589 ... return inner
590 ...
591 >>> outer().__name__
592 'inner'
593 >>> outer().__qualname__
594 'outer.<locals>.inner'
595
Antoine Pitroue7ede062011-11-25 19:11:26 +0100596The string representation of those objects is also changed to include the
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100597new, more precise information::
598
599 >>> str(C.D)
600 "<class '__main__.C.D'>"
601 >>> str(C.D.meth)
602 '<function C.D.meth at 0x7f46b9fe31e0>'
603
R David Murrayf23e2b62012-09-29 19:41:26 -0400604.. seealso::
605
606 :pep:`3155` - Qualified name for classes and functions
607 PEP written and implemented by Antoine Pitrou.
608
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100609
Antoine Pitrouc907de92012-08-21 00:53:06 +0200610.. _pep-412:
611
Antoine Pitroud94adb72012-07-07 17:33:42 +0200612PEP 412: Key-Sharing Dictionary
613===============================
614
Antoine Pitroud94adb72012-07-07 17:33:42 +0200615Dictionaries used for the storage of objects' attributes are now able to
616share part of their internal storage between each other (namely, the part
617which stores the keys and their respective hashes). This reduces the memory
618consumption of programs creating many instances of non-builtin types.
619
R David Murrayf23e2b62012-09-29 19:41:26 -0400620.. seealso::
621
622 :pep:`412` - Key-Sharing Dictionary
623 PEP written and implemented by Mark Shannon.
624
Antoine Pitroud94adb72012-07-07 17:33:42 +0200625
Andrew Svetlovac23c9e2012-08-13 21:27:56 +0300626PEP 362: Function Signature Object
627==================================
628
Andrew Svetlovac23c9e2012-08-13 21:27:56 +0300629A new function :func:`inspect.signature` makes introspection of python
630callables easy and straightforward. A broad range of callables is supported:
631python functions, decorated or not, classes, and :func:`functools.partial`
632objects. New classes :class:`inspect.Signature`, :class:`inspect.Parameter`
633and :class:`inspect.BoundArguments` hold information about the call signatures,
634such as, annotations, default values, parameters kinds, and bound arguments,
635which considerably simplifies writing decorators and any code that validates
636or amends calling signatures or arguments.
637
R David Murrayf23e2b62012-09-29 19:41:26 -0400638.. seealso::
639
640 :pep:`362`: - Function Signature Object
641 PEP written by Brett Cannon, Yury Selivanov, Larry Hastings, Jiwon Seo;
642 implemented by Yury Selivanov.
643
Andrew Svetlovac23c9e2012-08-13 21:27:56 +0300644
Eric Snowb2a61e12012-09-05 22:19:38 -0700645PEP 421: Adding sys.implementation
646==================================
647
Eric Snowb2a61e12012-09-05 22:19:38 -0700648A new attribute on the :mod:`sys` module exposes details specific to the
649implementation of the currently running interpreter. The initial set of
650attributes on :attr:`sys.implementation` are ``name``, ``version``,
651``hexversion``, and ``cache_tag``.
652
653The intention of ``sys.implementation`` is to consolidate into one namespace
654the implementation-specific data used by the standard library. This allows
655different Python implementations to share a single standard library code base
656much more easily. In its initial state, ``sys.implementation`` holds only a
657small portion of the implementation-specific data. Over time that ratio will
658shift in order to make the standard library more portable.
659
660One example of improved standard library portability is ``cache_tag``. As of
661Python 3.3, ``sys.implementation.cache_tag`` is used by :mod:`importlib` to
662support :pep:`3147` compliance. Any Python implementation that uses
663``importlib`` for its built-in import system may use ``cache_tag`` to control
664the caching behavior for modules.
665
666SimpleNamespace
667---------------
668
669The implementation of ``sys.implementation`` also introduces a new type to
670Python: :class:`types.SimpleNamespace`. In contrast to a mapping-based
671namespace, like :class:`dict`, ``SimpleNamespace`` is attribute-based, like
672:class:`object`. However, unlike ``object``, ``SimpleNamespace`` instances
673are writable. This means that you can add, remove, and modify the namespace
674through normal attribute access.
675
R David Murrayf23e2b62012-09-29 19:41:26 -0400676.. seealso::
677
678 :pep:`421` - Adding sys.implementation
679 PEP written and implemented by Eric Snow.
680
Eric Snowb2a61e12012-09-05 22:19:38 -0700681
Antoine Pitrouc907de92012-08-21 00:53:06 +0200682.. _importlib:
683
Brett Cannonc2043482012-04-29 20:59:41 -0400684Using importlib as the Implementation of Import
685===============================================
686:issue:`2377` - Replace __import__ w/ importlib.__import__
687:issue:`13959` - Re-implement parts of :mod:`imp` in pure Python
688:issue:`14605` - Make import machinery explicit
689:issue:`14646` - Require loaders set __loader__ and __package__
690
Brett Cannonc2043482012-04-29 20:59:41 -0400691The :func:`__import__` function is now powered by :func:`importlib.__import__`.
692This work leads to the completion of "phase 2" of :pep:`302`. There are
693multiple benefits to this change. First, it has allowed for more of the
694machinery powering import to be exposed instead of being implicit and hidden
695within the C code. It also provides a single implementation for all Python VMs
696supporting Python 3.3 to use, helping to end any VM-specific deviations in
697import semantics. And finally it eases the maintenance of import, allowing for
698future growth to occur.
699
R David Murraycff1c6f2012-09-29 14:34:43 -0400700For the common user, there should be no visible change in semantics. For
701those whose code currently manipulates import or calls import
702programmatically, the code changes that might possibly be required are covered
703in the `Porting Python code`_ section of this document.
Brett Cannonc2043482012-04-29 20:59:41 -0400704
705New APIs
706--------
707One of the large benefits of this work is the exposure of what goes into
708making the import statement work. That means the various importers that were
709once implicit are now fully exposed as part of the :mod:`importlib` package.
710
Brett Cannon077ef452012-08-02 17:50:06 -0400711The abstract base classes defined in :mod:`importlib.abc` have been expanded
712to properly delineate between :term:`meta path finders <meta path finder>`
713and :term:`path entry finders <path entry finder>` by introducing
714:class:`importlib.abc.MetaPathFinder` and
715:class:`importlib.abc.PathEntryFinder`, respectively. The old ABC of
716:class:`importlib.abc.Finder` is now only provided for backwards-compatibility
717and does not enforce any method requirements.
718
719In terms of finders, :class:`importlib.machinery.FileFinder` exposes the
Brett Cannonc2043482012-04-29 20:59:41 -0400720mechanism used to search for source and bytecode files of a module. Previously
721this class was an implicit member of :attr:`sys.path_hooks`.
722
723For loaders, the new abstract base class :class:`importlib.abc.FileLoader` helps
724write a loader that uses the file system as the storage mechanism for a module's
725code. The loader for source files
726(:class:`importlib.machinery.SourceFileLoader`), sourceless bytecode files
727(:class:`importlib.machinery.SourcelessFileLoader`), and extension modules
728(:class:`importlib.machinery.ExtensionFileLoader`) are now available for
729direct use.
730
731:exc:`ImportError` now has ``name`` and ``path`` attributes which are set when
732there is relevant data to provide. The message for failed imports will also
733provide the full name of the module now instead of just the tail end of the
734module's name.
735
736The :func:`importlib.invalidate_caches` function will now call the method with
737the same name on all finders cached in :attr:`sys.path_importer_cache` to help
738clean up any stored state as necessary.
739
740Visible Changes
741---------------
R David Murrayf23e2b62012-09-29 19:41:26 -0400742
743For potential required changes to code, see the `Porting Python code`_
744section.
Brett Cannonc2043482012-04-29 20:59:41 -0400745
746Beyond the expanse of what :mod:`importlib` now exposes, there are other
747visible changes to import. The biggest is that :attr:`sys.meta_path` and
Brett Cannon077ef452012-08-02 17:50:06 -0400748:attr:`sys.path_hooks` now store all of the meta path finders and path entry
749hooks used by import. Previously the finders were implicit and hidden within
750the C code of import instead of being directly exposed. This means that one can
751now easily remove or change the order of the various finders to fit one's needs.
Brett Cannonc2043482012-04-29 20:59:41 -0400752
753Another change is that all modules have a ``__loader__`` attribute, storing the
754loader used to create the module. :pep:`302` has been updated to make this
755attribute mandatory for loaders to implement, so in the future once 3rd-party
756loaders have been updated people will be able to rely on the existence of the
757attribute. Until such time, though, import is setting the module post-load.
758
759Loaders are also now expected to set the ``__package__`` attribute from
760:pep:`366`. Once again, import itself is already setting this on all loaders
761from :mod:`importlib` and import itself is setting the attribute post-load.
762
763``None`` is now inserted into :attr:`sys.path_importer_cache` when no finder
764can be found on :attr:`sys.path_hooks`. Since :class:`imp.NullImporter` is not
765directly exposed on :attr:`sys.path_hooks` it could no longer be relied upon to
766always be available to use as a value representing no finder found.
767
768All other changes relate to semantic changes which should be taken into
769consideration when updating code for Python 3.3, and thus should be read about
770in the `Porting Python code`_ section of this document.
771
R David Murrayf23e2b62012-09-29 19:41:26 -0400772(Implementation by Brett Cannon)
773
Brett Cannonc2043482012-04-29 20:59:41 -0400774
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000775Other Language Changes
776======================
777
778Some smaller changes made to the core Python language are:
779
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100780* Added support for Unicode name aliases and named sequences.
781 Both :func:`unicodedata.lookup()` and ``'\N{...}'`` now resolve name aliases,
782 and :func:`unicodedata.lookup()` resolves named sequences too.
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000783
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200784 (Contributed by Ezio Melotti in :issue:`12753`.)
Ezio Melotti931b8aa2011-10-21 21:57:36 +0300785
Nick Coghlanc4bacd32012-09-27 19:58:31 +1000786* Unicode database updated to UCD version 6.1.0
787
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100788* Equality comparisons on :func:`range` objects now return a result reflecting
789 the equality of the underlying sequences generated by those range objects.
Sandro Tosicd899122012-01-22 12:16:04 +0100790 (:issue:`13201`)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000791
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100792* The ``count()``, ``find()``, ``rfind()``, ``index()`` and ``rindex()``
793 methods of :class:`bytes` and :class:`bytearray` objects now accept an
794 integer between 0 and 255 as their first argument.
Mark Dickinson36645682011-10-23 19:53:01 +0100795
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200796 (Contributed by Petri Lehtinen in :issue:`12170`.)
Mark Dickinson36645682011-10-23 19:53:01 +0100797
R David Murraye54c7182012-10-16 21:52:24 -0400798* The ``rjust()``, ``ljust()``, and ``center()`` methods of :class:`bytes`
799 and :class:`bytearray` now accept a :class:`bytearray` for the ``fill``
800 argument. (Contributed by Petri Lehtinen in :issue:`12380`.)
801
Eli Bendersky7add4ea2012-03-17 15:14:35 +0200802* New methods have been added to :class:`list` and :class:`bytearray`:
R David Murrayd2489cf2012-09-30 17:28:54 -0400803 ``copy()`` and ``clear()`` (:issue:`10516`). Consequently,
804 :class:`~collections.abc.MutableSequence` now also defines a
805 :meth:`~collections.abc.MutableSequence.clear` method (:issue:`11388`).
Petri Lehtinen61ea8a02011-11-24 22:00:46 +0200806
Antoine Pitrou9a864472012-05-04 23:15:47 +0200807* Raw bytes literals can now be written ``rb"..."`` as well as ``br"..."``.
R David Murrayf23e2b62012-09-29 19:41:26 -0400808
Antoine Pitrou9a864472012-05-04 23:15:47 +0200809 (Contributed by Antoine Pitrou in :issue:`13748`.)
810
811* :meth:`dict.setdefault` now does only one lookup for the given key, making
812 it atomic when used with built-in types.
R David Murrayf23e2b62012-09-29 19:41:26 -0400813
Antoine Pitrou9a864472012-05-04 23:15:47 +0200814 (Contributed by Filip Gruszczyński in :issue:`13521`.)
815
R David Murrayf23e2b62012-09-29 19:41:26 -0400816* The error messages produced when a function call does not match the function
817 signature have been significantly improved.
Antoine Pitrou9a864472012-05-04 23:15:47 +0200818
R David Murrayf23e2b62012-09-29 19:41:26 -0400819 (Contributed by Benjamin Peterson.)
Benjamin Petersone50d6ab2012-04-03 00:52:18 -0400820
Antoine Pitrou9a864472012-05-04 23:15:47 +0200821
Antoine Pitrou79341e72012-05-17 21:13:45 +0200822A Finer-Grained Import Lock
823===========================
824
825Previous versions of CPython have always relied on a global import lock.
826This led to unexpected annoyances, such as deadlocks when importing a module
827would trigger code execution in a different thread as a side-effect.
828Clumsy workarounds were sometimes employed, such as the
829:c:func:`PyImport_ImportModuleNoBlock` C API function.
830
831In Python 3.3, importing a module takes a per-module lock. This correctly
832serializes importation of a given module from multiple threads (preventing
833the exposure of incompletely initialized modules), while eliminating the
834aforementioned annoyances.
835
R David Murrayf23e2b62012-09-29 19:41:26 -0400836(Contributed by Antoine Pitrou in :issue:`9260`.)
Antoine Pitrou79341e72012-05-17 21:13:45 +0200837
838
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200839Builtin functions and types
840===========================
Victor Stinnerfa0d6282012-08-05 15:56:51 +0200841
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200842* :func:`open` gets a new *opener* parameter: the underlying file descriptor
843 for the file object is then obtained by calling *opener* with (*file*,
844 *flags*). It can be used to use custom flags like :data:`os.O_CLOEXEC` for
845 example. The ``'x'`` mode was added: open for exclusive creation, failing if
846 the file already exists.
847* :func:`print`: added the *flush* keyword argument. If the *flush* keyword
848 argument is true, the stream is forcibly flushed.
849* :func:`hash`: hash randomization is enabled by default, see
850 :meth:`object.__hash__` and :envvar:`PYTHONHASHSEED`.
851* The :class:`str` type gets a new :meth:`~str.casefold` method: return a
852 casefolded copy of the string, casefolded strings may be used for caseless
853 matching. For example, ``'ß'.casefold()`` returns ``'ss'``.
Nick Coghlan273069c2012-08-20 17:14:07 +1000854* The sequence documentation has been substantially rewritten to better
855 explain the binary/text sequence distinction and to provide specific
856 documentation sections for the individual builtin sequence types
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200857 (:issue:`4966`).
Victor Stinnerfa0d6282012-08-05 15:56:51 +0200858
R David Murrayf23e2b62012-09-29 19:41:26 -0400859
Victor Stinner636130e2012-08-05 16:37:12 +0200860New Modules
861===========
862
863faulthandler
864------------
865
Victor Stinner1da769a2012-09-18 22:40:03 +0200866This new debug module :mod:`faulthandler` contains functions to dump Python tracebacks explicitly,
Victor Stinner636130e2012-08-05 16:37:12 +0200867on a fault (a crash like a segmentation fault), after a timeout, or on a user
868signal. Call :func:`faulthandler.enable` to install fault handlers for the
869:const:`SIGSEGV`, :const:`SIGFPE`, :const:`SIGABRT`, :const:`SIGBUS`, and
870:const:`SIGILL` signals. You can also enable them at startup by setting the
871:envvar:`PYTHONFAULTHANDLER` environment variable or by using :option:`-X`
872``faulthandler`` command line option.
873
Martin Panter1050d2d2016-07-26 11:18:21 +0200874Example of a segmentation fault on Linux:
875
876.. code-block:: shell-session
Victor Stinner636130e2012-08-05 16:37:12 +0200877
878 $ python -q -X faulthandler
879 >>> import ctypes
880 >>> ctypes.string_at(0)
881 Fatal Python error: Segmentation fault
882
883 Current thread 0x00007fb899f39700:
884 File "/home/python/cpython/Lib/ctypes/__init__.py", line 486 in string_at
885 File "<stdin>", line 1 in <module>
886 Segmentation fault
887
888
889ipaddress
890---------
891
892The new :mod:`ipaddress` module provides tools for creating and manipulating
893objects representing IPv4 and IPv6 addresses, networks and interfaces (i.e.
894an IP address associated with a specific IP subnet).
895
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200896(Contributed by Google and Peter Moody in :pep:`3144`.)
Victor Stinner636130e2012-08-05 16:37:12 +0200897
898lzma
899----
900
901The newly-added :mod:`lzma` module provides data compression and decompression
902using the LZMA algorithm, including support for the ``.xz`` and ``.lzma``
903file formats.
904
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200905(Contributed by Nadeem Vawda and Per Øyvind Karlsen in :issue:`6715`.)
Victor Stinner636130e2012-08-05 16:37:12 +0200906
907
908Improved Modules
909================
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000910
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100911abc
912---
913
914Improved support for abstract base classes containing descriptors composed with
915abstract methods. The recommended approach to declaring abstract descriptors is
916now to provide :attr:`__isabstractmethod__` as a dynamically updated
917property. The built-in descriptors have been updated accordingly.
918
919 * :class:`abc.abstractproperty` has been deprecated, use :class:`property`
920 with :func:`abc.abstractmethod` instead.
921 * :class:`abc.abstractclassmethod` has been deprecated, use
922 :class:`classmethod` with :func:`abc.abstractmethod` instead.
923 * :class:`abc.abstractstaticmethod` has been deprecated, use
924 :class:`staticmethod` with :func:`abc.abstractmethod` instead.
925
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200926(Contributed by Darren Dale in :issue:`11610`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100927
R David Murrayd2489cf2012-09-30 17:28:54 -0400928:meth:`abc.ABCMeta.register` now returns the registered subclass, which means
929it can now be used as a class decorator (:issue:`10868`).
930
931
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500932array
933-----
934
935The :mod:`array` module supports the :c:type:`long long` type using ``q`` and
936``Q`` type codes.
937
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200938(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`.)
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500939
940
R David Murrayf4c27572012-10-06 23:19:17 -0400941base64
942------
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200943
944ASCII-only Unicode strings are now accepted by the decoding functions of the
R David Murrayf4c27572012-10-06 23:19:17 -0400945:mod:`base64` modern interface. For example, ``base64.b64decode('YWJj')``
946returns ``b'abc'``. (Contributed by Catalin Iacob in :issue:`13641`.)
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200947
948
R David Murrayfd740962012-10-06 22:08:08 -0400949binascii
950--------
951
952In addition to the binary objects they normally accept, the ``a2b_`` functions
953now all also accept ASCII-only strings as input. (Contributed by Antoine
954Pitrou in :issue:`13637`.)
955
956
Nadeem Vawdad7e5c6e2012-02-12 01:34:18 +0200957bz2
958---
959
960The :mod:`bz2` module has been rewritten from scratch. In the process, several
961new features have been added:
962
Victor Stinner8f17c1c2012-08-05 16:31:32 +0200963* New :func:`bz2.open` function: open a bzip2-compressed file in binary or
964 text mode.
965
Nadeem Vawdad7e5c6e2012-02-12 01:34:18 +0200966* :class:`bz2.BZ2File` can now read from and write to arbitrary file-like
967 objects, by means of its constructor's *fileobj* argument.
968
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200969 (Contributed by Nadeem Vawda in :issue:`5863`.)
Nadeem Vawdad7e5c6e2012-02-12 01:34:18 +0200970
971* :class:`bz2.BZ2File` and :func:`bz2.decompress` can now decompress
972 multi-stream inputs (such as those produced by the :program:`pbzip2` tool).
973 :class:`bz2.BZ2File` can now also be used to create this type of file, using
974 the ``'a'`` (append) mode.
975
Serhiy Storchakae5cf4862014-11-02 19:18:52 +0200976 (Contributed by Nir Aides in :issue:`1625`.)
Nadeem Vawdad7e5c6e2012-02-12 01:34:18 +0200977
978* :class:`bz2.BZ2File` now implements all of the :class:`io.BufferedIOBase` API,
979 except for the :meth:`detach` and :meth:`truncate` methods.
980
981
Victor Stinner2cded9c2011-07-08 01:45:13 +0200982codecs
983------
984
Antoine Pitrou4f863432012-02-12 02:12:47 +0100985The :mod:`~encodings.mbcs` codec has been rewritten to handle correctly
Georg Brandlff962c52012-02-04 08:55:56 +0100986``replace`` and ``ignore`` error handlers on all Windows versions. The
987:mod:`~encodings.mbcs` codec now supports all error handlers, instead of only
988``replace`` to encode and ``ignore`` to decode.
Victor Stinner3a50e702011-10-18 21:21:00 +0200989
Georg Brandlff962c52012-02-04 08:55:56 +0100990A new Windows-only codec has been added: ``cp65001`` (:issue:`13216`). It is the
991Windows code page 65001 (Windows UTF-8, ``CP_UTF8``). For example, it is used
992by ``sys.stdout`` if the console output code page is set to cp65001 (e.g., using
993``chcp 65001`` command).
Victor Stinner2f3ca9f2011-10-27 01:38:56 +0200994
Georg Brandlff962c52012-02-04 08:55:56 +0100995Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200996byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
997'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200998
Georg Brandl6c0929b2011-07-09 11:43:33 +0200999(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +02001000
Georg Brandlff962c52012-02-04 08:55:56 +01001001Incremental CJK codec encoders are no longer reset at each call to their
1002encode() methods. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +02001003
Victor Stinner2cded9c2011-07-08 01:45:13 +02001004 >>> 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
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001022: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
Serhiy Storchakae5cf4862014-11-02 19:18:52 +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,
Serhiy Storchakafbc1c262013-11-29 12:17:13 +02001129 the variable :data:`~decimal.HAVE_THREADS` is set to ``False``.
Stefan Krah1919b7e2012-03-21 18:25:23 +01001130
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
Georg Brandl44ea77b2013-03-28 13:28:44 +01001212 .. tabularcolumns:: |l|L|
1213
R David Murray77ac3512012-09-29 15:43:33 -04001214 =============== =======================================================
1215 max_line_length The maximum length, excluding the linesep character(s),
1216 individual lines may have when a ``Message`` is
1217 serialized. Defaults to 78.
1218
1219 linesep The character used to separate individual lines when a
1220 ``Message`` is serialized. Defaults to ``\n``.
1221
1222 cte_type ``7bit`` or ``8bit``. ``8bit`` applies only to a
1223 ``Bytes`` ``generator``, and means that non-ASCII may
1224 be used where allowed by the protocol (or where it
1225 exists in the original input).
1226
1227 raise_on_defect Causes a ``parser`` to raise error when defects are
1228 encountered instead of adding them to the ``Message``
1229 object's ``defects`` list.
1230 =============== =======================================================
1231
1232A new policy instance, with new settings, is created using the
1233:meth:`~email.policy.Policy.clone` method of policy objects. ``clone`` takes
1234any of the above controls as keyword arguments. Any control not specified in
1235the call retains its default value. Thus you can create a policy that uses
1236``\r\n`` linesep characters like this::
1237
1238 mypolicy = compat32.clone(linesep='\r\n')
1239
1240Policies can be used to make the generation of messages in the format needed by
1241your application simpler. Instead of having to remember to specify
1242``linesep='\r\n'`` in all the places you call a ``generator``, you can specify
1243it once, when you set the policy used by the ``parser`` or the ``Message``,
1244whichever your program uses to create ``Message`` objects. On the other hand,
1245if you need to generate messages in multiple forms, you can still specify the
1246parameters in the appropriate ``generator`` call. Or you can have custom
1247policy instances for your different cases, and pass those in when you create
1248the ``generator``.
1249
1250
1251Provisional Policy with New Header API
1252~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1253
1254While the policy framework is worthwhile all by itself, the main motivation for
1255introducing it is to allow the creation of new policies that implement new
1256features for the email package in a way that maintains backward compatibility
1257for those who do not use the new policies. Because the new policies introduce a
1258new API, we are releasing them in Python 3.3 as a :term:`provisional policy
1259<provisional package>`. Backwards incompatible changes (up to and including
1260removal of the code) may occur if deemed necessary by the core developers.
1261
1262The new policies are instances of :class:`~email.policy.EmailPolicy`,
1263and add the following additional controls:
1264
Georg Brandl44ea77b2013-03-28 13:28:44 +01001265 .. tabularcolumns:: |l|L|
1266
R David Murray77ac3512012-09-29 15:43:33 -04001267 =============== =======================================================
1268 refold_source Controls whether or not headers parsed by a
1269 :mod:`~email.parser` are refolded by the
1270 :mod:`~email.generator`. It can be ``none``, ``long``,
1271 or ``all``. The default is ``long``, which means that
1272 source headers with a line longer than
1273 ``max_line_length`` get refolded. ``none`` means no
1274 line get refolded, and ``all`` means that all lines
1275 get refolded.
1276
1277 header_factory A callable that take a ``name`` and ``value`` and
1278 produces a custom header object.
1279 =============== =======================================================
1280
1281The ``header_factory`` is the key to the new features provided by the new
1282policies. When one of the new policies is used, any header retrieved from
1283a ``Message`` object is an object produced by the ``header_factory``, and any
1284time you set a header on a ``Message`` it becomes an object produced by
1285``header_factory``. All such header objects have a ``name`` attribute equal
1286to the header name. Address and Date headers have additional attributes
1287that give you access to the parsed data of the header. This means you can now
1288do things like this::
1289
1290 >>> m = Message(policy=SMTP)
1291 >>> m['To'] = 'Éric <foo@example.com>'
1292 >>> m['to']
1293 'Éric <foo@example.com>'
1294 >>> m['to'].addresses
1295 (Address(display_name='Éric', username='foo', domain='example.com'),)
1296 >>> m['to'].addresses[0].username
1297 'foo'
1298 >>> m['to'].addresses[0].display_name
1299 'Éric'
1300 >>> m['Date'] = email.utils.localtime()
1301 >>> m['Date'].datetime
1302 datetime.datetime(2012, 5, 25, 21, 39, 24, 465484, tzinfo=datetime.timezone(datetime.timedelta(-1, 72000), 'EDT'))
1303 >>> m['Date']
1304 'Fri, 25 May 2012 21:44:27 -0400'
1305 >>> print(m)
1306 To: =?utf-8?q?=C3=89ric?= <foo@example.com>
1307 Date: Fri, 25 May 2012 21:44:27 -0400
1308
1309You will note that the unicode display name is automatically encoded as
1310``utf-8`` when the message is serialized, but that when the header is accessed
1311directly, you get the unicode version. This eliminates any need to deal with
1312the :mod:`email.header` :meth:`~email.header.decode_header` or
1313:meth:`~email.header.make_header` functions.
1314
1315You can also create addresses from parts::
1316
1317 >>> m['cc'] = [Group('pals', [Address('Bob', 'bob', 'example.com'),
1318 ... Address('Sally', 'sally', 'example.com')]),
1319 ... Address('Bonzo', addr_spec='bonz@laugh.com')]
1320 >>> print(m)
1321 To: =?utf-8?q?=C3=89ric?= <foo@example.com>
1322 Date: Fri, 25 May 2012 21:44:27 -0400
1323 cc: pals: Bob <bob@example.com>, Sally <sally@example.com>;, Bonzo <bonz@laugh.com>
1324
1325Decoding to unicode is done automatically::
1326
1327 >>> m2 = message_from_string(str(m))
1328 >>> m2['to']
1329 'Éric <foo@example.com>'
1330
1331When you parse a message, you can use the ``addresses`` and ``groups``
1332attributes of the header objects to access the groups and individual
1333addresses::
1334
1335 >>> m2['cc'].addresses
1336 (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'))
1337 >>> m2['cc'].groups
1338 (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'),))
1339
1340In summary, if you use one of the new policies, header manipulation works the
1341way it ought to: your application works with unicode strings, and the email
1342package transparently encodes and decodes the unicode to and from the RFC
1343standard Content Transfer Encodings.
1344
R David Murray445d69c2012-09-30 21:59:56 -04001345Other API Changes
1346~~~~~~~~~~~~~~~~~
1347
R David Murray3430fb82012-10-02 18:24:56 -04001348New :class:`~email.parser.BytesHeaderParser`, added to the :mod:`~email.parser`
1349module to complement :class:`~email.parser.HeaderParser` and complete the Bytes
1350API.
1351
1352New utility functions:
1353
1354 * :func:`~email.utils.format_datetime`: given a :class:`~datetime.datetime`,
1355 produce a string formatted for use in an email header.
1356
1357 * :func:`~email.utils.parsedate_to_datetime`: given a date string from
1358 an email header, convert it into an aware :class:`~datetime.datetime`,
1359 or a naive :class:`~datetime.datetime` if the offset is ``-0000``.
1360
1361 * :func:`~email.utils.localtime`: With no argument, returns the
1362 current local time as an aware :class:`~datetime.datetime` using the local
1363 :class:`~datetime.timezone`. Given an aware :class:`~datetime.datetime`,
1364 converts it into an aware :class:`~datetime.datetime` using the
1365 local :class:`~datetime.timezone`.
R David Murray445d69c2012-09-30 21:59:56 -04001366
R David Murray77ac3512012-09-29 15:43:33 -04001367
Victor Stinner811db3b2011-09-21 03:20:03 +02001368ftplib
1369------
1370
R David Murrayd2489cf2012-09-30 17:28:54 -04001371* :class:`ftplib.FTP` now accepts a ``source_address`` keyword argument to
1372 specify the ``(host, port)`` to use as the source address in the bind call
1373 when creating the outgoing socket. (Contributed by Giampaolo Rodolà
1374 in :issue:`8594`.)
1375
Giampaolo Rodola'49379c02012-09-25 12:32:46 -07001376* The :class:`~ftplib.FTP_TLS` class now provides a new
1377 :func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
R David Murrayd2489cf2012-09-30 17:28:54 -04001378 plaintext. This can be useful to take advantage of firewalls that know how
1379 to handle NAT with non-secure FTP without opening fixed ports. (Contributed
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001380 by Giampaolo Rodolà in :issue:`12139`.)
Victor Stinner811db3b2011-09-21 03:20:03 +02001381
Giampaolo Rodola'49379c02012-09-25 12:32:46 -07001382* Added :meth:`ftplib.FTP.mlsd` method which provides a parsable directory
1383 listing format and deprecates :meth:`ftplib.FTP.nlst` and
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001384 :meth:`ftplib.FTP.dir`. (Contributed by Giampaolo Rodolà in :issue:`11072`.)
Victor Stinner811db3b2011-09-21 03:20:03 +02001385
R David Murray1e218c92012-10-06 18:18:55 -04001386
1387functools
1388---------
1389
1390The :func:`functools.lru_cache` decorator now accepts a ``typed`` keyword
1391argument (that defaults to ``False`` to ensure that it caches values of
1392different types that compare equal in separate cache slots. (Contributed
1393by Raymond Hettinger in :issue:`13227`.)
1394
1395
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001396gc
1397--
1398
1399It is now possible to register callbacks invoked by the garbage collector
Georg Brandla81b4812012-08-11 08:43:59 +02001400before and after collection using the new :data:`~gc.callbacks` list.
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001401
1402
Christian Heimes31940372012-06-26 10:16:55 +02001403hmac
1404----
1405
R David Murray1e218c92012-10-06 18:18:55 -04001406A new :func:`~hmac.compare_digest` function has been added to prevent side
1407channel attacks on digests through timing analysis. (Contributed by Nick
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001408Coghlan and Christian Heimes in :issue:`15061`.)
Ezio Melotti461f41d2012-09-26 17:43:23 +03001409
1410
R David Murray445d69c2012-09-30 21:59:56 -04001411http
1412----
1413
1414:class:`http.server.BaseHTTPRequestHandler` now buffers the headers and writes
1415them all at once when :meth:`~http.server.BaseHTTPRequestHandler.end_headers` is
1416called. A new method :meth:`~http.server.BaseHTTPRequestHandler.flush_headers`
1417can be used to directly manage when the accumlated headers are sent.
1418(Contributed by Andrew Schaaf in :issue:`3709`.)
1419
R David Murray1e218c92012-10-06 18:18:55 -04001420:class:`http.server` now produces valid ``HTML 4.01 strict`` output.
1421(Contributed by Ezio Melotti in :issue:`13295`.)
R David Murray445d69c2012-09-30 21:59:56 -04001422
R David Murrayfd740962012-10-06 22:08:08 -04001423:class:`http.client.HTTPResponse` now has a
1424:meth:`~http.client.HTTPResponse.readinto` method, which means it can be used
Martin Panter7462b6492015-11-02 03:37:02 +00001425as an :class:`io.RawIOBase` class. (Contributed by John Kuhn in
R David Murrayfd740962012-10-06 22:08:08 -04001426:issue:`13464`.)
1427
Ezio Melotti461f41d2012-09-26 17:43:23 +03001428
R David Murray1e218c92012-10-06 18:18:55 -04001429html
1430----
1431
1432:class:`html.parser.HTMLParser` is now able to parse broken markup without
Ezio Melotti461f41d2012-09-26 17:43:23 +03001433raising errors, therefore the *strict* argument of the constructor and the
1434:exc:`~html.parser.HTMLParseError` exception are now deprecated.
1435The ability to parse broken markup is the result of a number of bug fixes that
1436are also available on the latest bug fix releases of Python 2.7/3.2.
Ezio Melotti461f41d2012-09-26 17:43:23 +03001437(Contributed by Ezio Melotti in :issue:`15114`, and :issue:`14538`,
1438:issue:`13993`, :issue:`13960`, :issue:`13358`, :issue:`1745761`,
1439:issue:`755670`, :issue:`13357`, :issue:`12629`, :issue:`1200313`,
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001440:issue:`670664`, :issue:`13273`, :issue:`12888`, :issue:`7311`.)
Ezio Melotti461f41d2012-09-26 17:43:23 +03001441
R David Murray1e218c92012-10-06 18:18:55 -04001442A new :data:`~html.entities.html5` dictionary that maps HTML5 named character
1443references to the equivalent Unicode character(s) (e.g. ``html5['gt;'] ==
1444'>'``) has been added to the :mod:`html.entities` module. The dictionary is
1445now also used by :class:`~html.parser.HTMLParser`. (Contributed by Ezio
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001446Melotti in :issue:`11113` and :issue:`15156`.)
R David Murray1e218c92012-10-06 18:18:55 -04001447
R David Murray445d69c2012-09-30 21:59:56 -04001448
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01001449imaplib
1450-------
1451
1452The :class:`~imaplib.IMAP4_SSL` constructor now accepts an SSLContext
1453parameter to control parameters of the secure channel.
1454
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001455(Contributed by Sijin Joseph in :issue:`8808`.)
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01001456
1457
Nick Coghlan2f92e542012-06-23 19:39:55 +10001458inspect
1459-------
1460
1461A new :func:`~inspect.getclosurevars` function has been added. This function
1462reports the current binding of all names referenced from the function body and
1463where those names were resolved, making it easier to verify correct internal
1464state when testing code that relies on stateful closures.
1465
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001466(Contributed by Meador Inge and Nick Coghlan in :issue:`13062`.)
Nick Coghlan2f92e542012-06-23 19:39:55 +10001467
Nick Coghlan04e2e3f2012-06-23 19:52:05 +10001468A new :func:`~inspect.getgeneratorlocals` function has been added. This
1469function reports the current binding of local variables in the generator's
1470stack frame, making it easier to verify correct internal state when testing
1471generators.
1472
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001473(Contributed by Meador Inge in :issue:`15153`.)
Nick Coghlan04e2e3f2012-06-23 19:52:05 +10001474
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001475io
1476--
1477
Charles-François Natalid612de12012-01-14 11:51:00 +01001478The :func:`~io.open` function has a new ``'x'`` mode that can be used to
1479exclusively create a new file, and raise a :exc:`FileExistsError` if the file
1480already exists. It is based on the C11 'x' mode to fopen().
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001481
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001482(Contributed by David Townshend in :issue:`12760`.)
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001483
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001484The constructor of the :class:`~io.TextIOWrapper` class has a new
1485*write_through* optional argument. If *write_through* is ``True``, calls to
1486:meth:`~io.TextIOWrapper.write` are guaranteed not to be buffered: any data
1487written on the :class:`~io.TextIOWrapper` object is immediately handled to its
1488underlying binary buffer.
1489
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001490
R David Murray445d69c2012-09-30 21:59:56 -04001491itertools
1492---------
1493
1494:func:`~itertools.accumulate` now takes an optional ``func`` argument for
1495providing a user-supplied binary function.
1496
1497
1498logging
1499-------
1500
R David Murray3430fb82012-10-02 18:24:56 -04001501The :func:`~logging.basicConfig` function now supports an optional ``handlers``
1502argument taking an iterable of handlers to be added to the root logger.
1503
1504A class level attribute :attr:`~logging.handlers.SysLogHandler.append_nul` has
1505been added to :class:`~logging.handlers.SysLogHandler` to allow control of the
1506appending of the ``NUL`` (``\000``) byte to syslog records, since for some
luzpaza5293b42017-11-05 07:37:50 -06001507daemons it is required while for others it is passed through to the log.
R David Murray3430fb82012-10-02 18:24:56 -04001508
R David Murray445d69c2012-09-30 21:59:56 -04001509
1510
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001511math
1512----
1513
R David Murray26d15bf2012-09-29 15:13:35 -04001514The :mod:`math` module has a new function, :func:`~math.log2`, which returns
1515the base-2 logarithm of *x*.
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001516
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001517(Written by Mark Dickinson in :issue:`11888`.)
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001518
1519
R David Murray3430fb82012-10-02 18:24:56 -04001520mmap
1521----
1522
1523The :meth:`~mmap.mmap.read` method is now more compatible with other file-like
1524objects: if the argument is omitted or specified as ``None``, it returns the
1525bytes from the current file position to the end of the mapping. (Contributed
1526by Petri Lehtinen in :issue:`12021`.)
1527
1528
Antoine Pitrou9a864472012-05-04 23:15:47 +02001529multiprocessing
1530---------------
1531
Martin Panterc04fb562016-02-10 05:44:01 +00001532The new :func:`multiprocessing.connection.wait` function allows polling
Antoine Pitrou9a864472012-05-04 23:15:47 +02001533multiple objects (such as connections, sockets and pipes) with a timeout.
1534(Contributed by Richard Oudkerk in :issue:`12328`.)
1535
1536:class:`multiprocessing.Connection` objects can now be transferred over
1537multiprocessing connections.
1538(Contributed by Richard Oudkerk in :issue:`4892`.)
1539
R David Murrayd2489cf2012-09-30 17:28:54 -04001540:class:`multiprocessing.Process` now accepts a ``daemon`` keyword argument
1541to override the default behavior of inheriting the ``daemon`` flag from
1542the parent process (:issue:`6064`).
1543
Serhiy Storchaka56a6d852014-12-01 18:28:43 +02001544New attribute :data:`multiprocessing.Process.sentinel` allows a
R David Murray994ce1a2012-10-02 10:19:08 -04001545program to wait on multiple :class:`~multiprocessing.Process` objects at one
1546time using the appropriate OS primitives (for example, :mod:`select` on
1547posix systems).
1548
R David Murrayace51622012-10-06 22:26:52 -04001549New methods :meth:`multiprocessing.pool.Pool.starmap` and
1550:meth:`~multiprocessing.pool.Pool.starmap_async` provide
1551:func:`itertools.starmap` equivalents to the existing
1552:meth:`multiprocessing.pool.Pool.map` and
1553:meth:`~multiprocessing.pool.Pool.map_async` functions. (Contributed by Hynek
1554Schlawack in :issue:`12708`.)
1555
Antoine Pitrou9a864472012-05-04 23:15:47 +02001556
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001557nntplib
1558-------
1559
Serhiy Storchaka14867992014-09-10 23:43:41 +03001560The :class:`nntplib.NNTP` class now supports the context management protocol to
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001561unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
1562connection when done::
1563
1564 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +03001565 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001566 ... n.group('gmane.comp.python.committers')
1567 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +03001568 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001569 >>>
1570
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001571(Contributed by Giampaolo Rodolà in :issue:`9795`.)
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001572
1573
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00001574os
1575--
1576
Charles-François Natalia003af12011-06-01 20:30:52 +02001577* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
1578 possible to create a pipe with :data:`~os.O_CLOEXEC` or
1579 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
1580 avoid race conditions in multi-threaded programs.
1581
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00001582* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
Senthil Kumaranb4760ef2015-06-14 17:35:37 -07001583 an efficient "zero-copy" way for copying data from one file (or socket)
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00001584 descriptor to another. The phrase "zero-copy" refers to the fact that all of
1585 the copying of data between the two descriptors is done entirely by the
1586 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
1587 can be used to efficiently copy data from a file on disk to a network socket,
1588 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00001589
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00001590 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
1591
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001592* To avoid race conditions like symlink attacks and issues with temporary
1593 files and directories, it is more reliable (and also faster) to manipulate
1594 file descriptors instead of file names. Python 3.3 enhances existing functions
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001595 and introduces new functions to work on file descriptors (:issue:`4761`,
Larry Hastings94717972012-09-21 09:30:19 -07001596 :issue:`10755` and :issue:`14626`).
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001597
1598 - The :mod:`os` module has a new :func:`~os.fwalk` function similar to
1599 :func:`~os.walk` except that it also yields file descriptors referring to the
1600 directories visited. This is especially useful to avoid symlink races.
1601
1602 - The following functions get new optional *dir_fd* (:ref:`paths relative to
1603 directory descriptors <dir_fd>`) and/or *follow_symlinks* (:ref:`not
1604 following symlinks <follow_symlinks>`):
1605 :func:`~os.access`, :func:`~os.chflags`, :func:`~os.chmod`, :func:`~os.chown`,
1606 :func:`~os.link`, :func:`~os.lstat`, :func:`~os.mkdir`, :func:`~os.mkfifo`,
1607 :func:`~os.mknod`, :func:`~os.open`, :func:`~os.readlink`, :func:`~os.remove`,
1608 :func:`~os.rename`, :func:`~os.replace`, :func:`~os.rmdir`, :func:`~os.stat`,
R David Murrayc652ce62012-09-30 20:07:42 -04001609 :func:`~os.symlink`, :func:`~os.unlink`, :func:`~os.utime`. Platform
1610 support for using these parameters can be checked via the sets
1611 :data:`os.supports_dir_fd` and :data:`os.supports_follows_symlinks`.
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001612
1613 - The following functions now support a file descriptor for their path argument:
1614 :func:`~os.chdir`, :func:`~os.chmod`, :func:`~os.chown`,
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001615 :func:`~os.execve`, :func:`~os.listdir`, :func:`~os.pathconf`, :func:`~os.path.exists`,
R David Murrayc652ce62012-09-30 20:07:42 -04001616 :func:`~os.stat`, :func:`~os.statvfs`, :func:`~os.utime`. Platform support
1617 for this can be checked via the :data:`os.supports_fd` set.
1618
1619* :func:`~os.access` accepts an ``effective_ids`` keyword argument to turn on
1620 using the effective uid/gid rather than the real uid/gid in the access check.
1621 Platform support for this can be checked via the
1622 :data:`~os.supports_effective_ids` set.
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001623
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00001624* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
1625 :func:`~os.setpriority`. They can be used to get or set process
1626 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
1627 processes instead of just the current one.
1628
1629 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00001630
Antoine Pitrou9a864472012-05-04 23:15:47 +02001631* The new :func:`os.replace` function allows cross-platform renaming of a
1632 file with overwriting the destination. With :func:`os.rename`, an existing
1633 destination file is overwritten under POSIX, but raises an error under
1634 Windows.
1635 (Contributed by Antoine Pitrou in :issue:`8828`.)
1636
Larry Hastings94717972012-09-21 09:30:19 -07001637* The stat family of functions (:func:`~os.stat`, :func:`~os.fstat`,
1638 and :func:`~os.lstat`) now support reading a file's timestamps
1639 with nanosecond precision. Symmetrically, :func:`~os.utime`
1640 can now write file timestamps with nanosecond precision. (Contributed by
1641 Larry Hastings in :issue:`14127`.)
1642
Antoine Pitrou9a864472012-05-04 23:15:47 +02001643* The new :func:`os.get_terminal_size` function queries the size of the
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001644 terminal attached to a file descriptor. See also
1645 :func:`shutil.get_terminal_size`.
Antoine Pitrou9a864472012-05-04 23:15:47 +02001646 (Contributed by Zbigniew Jędrzejewski-Szmek in :issue:`13609`.)
1647
Georg Brandldba3b5c2012-06-26 09:36:14 +02001648.. XXX sort out this mess after beta1
Victor Stinnere5064372011-10-14 00:08:29 +02001649
Victor Stinner8f17c1c2012-08-05 16:31:32 +02001650* New functions to support Linux extended attributes (:issue:`12720`):
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001651 :func:`~os.getxattr`, :func:`~os.listxattr`, :func:`~os.removexattr`,
1652 :func:`~os.setxattr`.
Victor Stinnere5064372011-10-14 00:08:29 +02001653
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001654* New interface to the scheduler. These functions
1655 control how a process is allocated CPU time by the operating system. New
1656 functions:
1657 :func:`~os.sched_get_priority_max`, :func:`~os.sched_get_priority_min`,
1658 :func:`~os.sched_getaffinity`, :func:`~os.sched_getparam`,
1659 :func:`~os.sched_getscheduler`, :func:`~os.sched_rr_get_interval`,
1660 :func:`~os.sched_setaffinity`, :func:`~os.sched_setparam`,
1661 :func:`~os.sched_setscheduler`, :func:`~os.sched_yield`,
Victor Stinnere5064372011-10-14 00:08:29 +02001662
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001663* New functions to control the file system:
Victor Stinnere5064372011-10-14 00:08:29 +02001664
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001665 * :func:`~os.posix_fadvise`: Announces an intention to access data in a
1666 specific pattern thus allowing the kernel to make optimizations.
1667 * :func:`~os.posix_fallocate`: Ensures that enough disk space is allocated
1668 for a file.
1669 * :func:`~os.sync`: Force write of everything to disk.
Victor Stinnere5064372011-10-14 00:08:29 +02001670
R David Murrayc652ce62012-09-30 20:07:42 -04001671* Additional new posix functions:
Victor Stinnere5064372011-10-14 00:08:29 +02001672
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001673 * :func:`~os.lockf`: Apply, test or remove a POSIX lock on an open file descriptor.
1674 * :func:`~os.pread`: Read from a file descriptor at an offset, the file
1675 offset remains unchanged.
1676 * :func:`~os.pwrite`: Write to a file descriptor from an offset, leaving
1677 the file offset unchanged.
1678 * :func:`~os.readv`: Read from a file descriptor into a number of writable buffers.
1679 * :func:`~os.truncate`: Truncate the file corresponding to *path*, so that
1680 it is at most *length* bytes in size.
1681 * :func:`~os.waitid`: Wait for the completion of one or more child processes.
1682 * :func:`~os.writev`: Write the contents of *buffers* to a file descriptor,
1683 where *buffers* is an arbitrary sequence of buffers.
1684 * :func:`~os.getgrouplist` (:issue:`9344`): Return list of group ids that
1685 specified user belongs to.
Victor Stinnere5064372011-10-14 00:08:29 +02001686
Victor Stinnerfa0d6282012-08-05 15:56:51 +02001687* :func:`~os.times` and :func:`~os.uname`: Return type changed from a tuple to
1688 a tuple-like object with named attributes.
Victor Stinnere5064372011-10-14 00:08:29 +02001689
R David Murrayc652ce62012-09-30 20:07:42 -04001690* Some platforms now support additional constants for the :func:`~os.lseek`
1691 function, such as ``os.SEEK_HOLE`` and ``os.SEEK_DATA``.
1692
R David Murray1e218c92012-10-06 18:18:55 -04001693* New constants :data:`~os.RTLD_LAZY`, :data:`~os.RTLD_NOW`,
1694 :data:`~os.RTLD_GLOBAL`, :data:`~os.RTLD_LOCAL`, :data:`~os.RTLD_NODELETE`,
1695 :data:`~os.RTLD_NOLOAD`, and :data:`~os.RTLD_DEEPBIND` are available on
1696 platforms that support them. These are for use with the
1697 :func:`sys.setdlopenflags` function, and supersede the similar constants
1698 defined in :mod:`ctypes` and :mod:`DLFCN`. (Contributed by Victor Stinner
1699 in :issue:`13226`.)
1700
R David Murrayc652ce62012-09-30 20:07:42 -04001701* :func:`os.symlink` now accepts (and ignores) the ``target_is_directory``
1702 keyword argument on non-Windows platforms, to ease cross-platform support.
1703
Giampaolo Rodolà424298a2011-03-03 18:34:06 +00001704
Georg Brandl4c7c3c52012-03-10 22:36:48 +01001705pdb
1706---
1707
R David Murray26d15bf2012-09-29 15:13:35 -04001708Tab-completion is now available not only for command names, but also their
1709arguments. For example, for the ``break`` command, function and file names
1710are completed.
1711
1712(Contributed by Georg Brandl in :issue:`14210`)
Georg Brandl4c7c3c52012-03-10 22:36:48 +01001713
1714
Antoine Pitrou9a864472012-05-04 23:15:47 +02001715pickle
1716------
1717
1718:class:`pickle.Pickler` objects now have an optional
Martin Panterc04fb562016-02-10 05:44:01 +00001719:attr:`~pickle.Pickler.dispatch_table` attribute allowing per-pickler
1720reduction functions to be set.
R David Murray26d15bf2012-09-29 15:13:35 -04001721
Antoine Pitrou9a864472012-05-04 23:15:47 +02001722(Contributed by Richard Oudkerk in :issue:`14166`.)
1723
1724
Victor Stinner383c3fc2011-05-25 01:35:05 +02001725pydoc
1726-----
1727
Victor Stinner6daa33c2011-05-25 01:41:22 +02001728The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
1729:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
1730in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +02001731
1732
Antoine Pitrouad09b5d2012-06-24 22:41:33 +02001733re
1734--
1735
1736:class:`str` regular expressions now support ``\u`` and ``\U`` escapes.
1737
1738(Contributed by Serhiy Storchaka in :issue:`3665`.)
1739
1740
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001741sched
1742-----
Victor Stinner754851f2011-04-19 23:58:51 +02001743
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001744* :meth:`~sched.scheduler.run` now accepts a *blocking* parameter which when
Serhiy Storchaka4adf01c2016-10-19 18:30:05 +03001745 set to false makes the method execute the scheduled events due to expire
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001746 soonest (if any) and then return immediately.
1747 This is useful in case you want to use the :class:`~sched.scheduler` in
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001748 non-blocking applications. (Contributed by Giampaolo Rodolà in :issue:`13449`.)
Victor Stinner754851f2011-04-19 23:58:51 +02001749
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001750* :class:`~sched.scheduler` class can now be safely used in multi-threaded
1751 environments. (Contributed by Josiah Carlson and Giampaolo Rodolà in
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001752 :issue:`8684`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001753
1754* *timefunc* and *delayfunct* parameters of :class:`~sched.scheduler` class
1755 constructor are now optional and defaults to :func:`time.time` and
1756 :func:`time.sleep` respectively. (Contributed by Chris Clark in
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001757 :issue:`13245`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001758
1759* :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
1760 *argument* parameter is now optional. (Contributed by Chris Clark in
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001761 :issue:`13245`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001762
1763* :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
1764 now accept a *kwargs* parameter. (Contributed by Chris Clark in
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001765 :issue:`13245`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001766
1767
Jesus Ceaaa264882012-10-04 02:51:22 +02001768select
1769------
1770
Eric V. Smithb72e69e2014-01-25 05:11:43 -05001771Solaris and derivative platforms have a new class :class:`select.devpoll`
Jesus Ceab6bb3ad2012-10-04 02:58:48 +02001772for high performance asynchronous sockets via :file:`/dev/poll`.
R David Murray1e218c92012-10-06 18:18:55 -04001773(Contributed by Jesús Cea Avión in :issue:`6397`.)
Jesus Ceaaa264882012-10-04 02:51:22 +02001774
1775
R David Murrayaae25832012-09-29 09:49:05 -04001776shlex
1777-----
1778
R David Murray26d15bf2012-09-29 15:13:35 -04001779The previously undocumented helper function ``quote`` from the
1780:mod:`pipes` modules has been moved to the :mod:`shlex` module and
1781documented. :func:`~shlex.quote` properly escapes all characters in a string
1782that might be otherwise given special meaning by the shell.
R David Murrayaae25832012-09-29 09:49:05 -04001783
1784
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001785shutil
1786------
1787
R David Murrayd2489cf2012-09-30 17:28:54 -04001788* New functions:
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001789
1790 * :func:`~shutil.disk_usage`: provides total, used and free disk space
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001791 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001792 * :func:`~shutil.chown`: allows one to change user and/or group of the given
1793 path also specifying the user/group names and not only their numeric
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001794 ids. (Contributed by Sandro Tosi in :issue:`12191`.)
R David Murrayd2489cf2012-09-30 17:28:54 -04001795 * :func:`shutil.get_terminal_size`: returns the size of the terminal window
1796 to which the interpreter is attached. (Contributed by Zbigniew
1797 Jędrzejewski-Szmek in :issue:`13609`.)
Victor Stinnera9293352011-04-30 15:21:58 +02001798
Larry Hastings94717972012-09-21 09:30:19 -07001799* :func:`~shutil.copy2` and :func:`~shutil.copystat` now preserve file
1800 timestamps with nanosecond precision on platforms that support it.
1801 They also preserve file "extended attributes" on Linux. (Contributed
1802 by Larry Hastings in :issue:`14127` and :issue:`15238`.)
1803
Antoine Pitrou9a864472012-05-04 23:15:47 +02001804* Several functions now take an optional ``symlinks`` argument: when that
1805 parameter is true, symlinks aren't dereferenced and the operation instead
1806 acts on the symlink itself (or creates one, if relevant).
1807 (Contributed by Hynek Schlawack in :issue:`12715`.)
1808
R David Murrayf4c27572012-10-06 23:19:17 -04001809* When copying files to a different file system, :func:`~shutil.move` now
1810 handles symlinks the way the posix ``mv`` command does, recreating the
1811 symlink rather than copying the target file contents. (Contributed by
1812 Jonathan Niehof in :issue:`9993`.) :func:`~shutil.move` now also returns
1813 the ``dst`` argument as its result.
1814
Nick Coghlan5b0eca12012-06-24 16:43:06 +10001815* :func:`~shutil.rmtree` is now resistant to symlink attacks on platforms
1816 which support the new ``dir_fd`` parameter in :func:`os.open` and
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001817 :func:`os.unlink`. (Contributed by Martin von Löwis and Hynek Schlawack
Nick Coghlan5b0eca12012-06-24 16:43:06 +10001818 in :issue:`4489`.)
1819
Antoine Pitrou9a864472012-05-04 23:15:47 +02001820
Victor Stinnera9293352011-04-30 15:21:58 +02001821signal
1822------
1823
Victor Stinnerfa0e3d52011-05-09 01:01:09 +02001824* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +02001825
Victor Stinnerb3e72192011-05-08 01:46:11 +02001826 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
Serhiy Storchakaf47036c2013-12-24 11:04:36 +02001827 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`);
1828 * :func:`~signal.pthread_kill`: send a signal to a thread;
1829 * :func:`~signal.sigpending`: examine pending functions;
1830 * :func:`~signal.sigwait`: wait a signal;
Ross Lagerwallbc808222011-06-25 12:13:40 +02001831 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
Serhiy Storchakaf47036c2013-12-24 11:04:36 +02001832 information about it;
Ross Lagerwallbc808222011-06-25 12:13:40 +02001833 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
1834 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +02001835
Victor Stinnerd49b1f12011-05-08 02:03:15 +02001836* The signal handler writes the signal number as a single byte instead of
1837 a nul byte into the wakeup file descriptor. So it is possible to wait more
1838 than one signal and know which signals were raised.
1839
Victor Stinner388196e2011-05-10 17:13:00 +02001840* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
1841 instead of a RuntimeError: OSError has an errno attribute.
1842
R David Murray1764c802012-09-29 11:42:36 -04001843
1844smtpd
1845-----
1846
R David Murray26d15bf2012-09-29 15:13:35 -04001847The :mod:`smtpd` module now supports :rfc:`5321` (extended SMTP) and :rfc:`1870`
1848(size extension). Per the standard, these extensions are enabled if and only
1849if the client initiates the session with an ``EHLO`` command.
R David Murray1764c802012-09-29 11:42:36 -04001850
R David Murray26d15bf2012-09-29 15:13:35 -04001851(Initial ``ELHO`` support by Alberto Trevino. Size extension by Juhana
1852Jauhiainen. Substantial additional work on the patch contributed by Michele
1853Orrù and Dan Boswell. :issue:`8739`)
R David Murray1764c802012-09-29 11:42:36 -04001854
1855
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001856smtplib
1857-------
1858
R David Murraya21e5152012-10-06 16:29:14 -04001859The :class:`~smtplib.SMTP`, :class:`~smtplib.SMTP_SSL`, and
1860:class:`~smtplib.LMTP` classes now accept a ``source_address`` keyword argument
1861to specify the ``(host, port)`` to use as the source address in the bind call
1862when creating the outgoing socket. (Contributed by Paulo Scardine in
1863:issue:`11281`.)
1864
Serhiy Storchaka14867992014-09-10 23:43:41 +03001865:class:`~smtplib.SMTP` now supports the context management protocol, allowing an
R David Murray3430fb82012-10-02 18:24:56 -04001866``SMTP`` instance to be used in a ``with`` statement. (Contributed
1867by Giampaolo Rodolà in :issue:`11289`.)
1868
R David Murray26d15bf2012-09-29 15:13:35 -04001869The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls`
1870method now accept an SSLContext parameter to control parameters of the secure
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001871channel. (Contributed by Kasun Herath in :issue:`8809`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001872
1873
Nick Coghlan96fe56a2011-08-22 11:55:57 +10001874socket
1875------
1876
Charles-François Natali47413c12011-10-06 19:47:44 +02001877* The :class:`~socket.socket` class now exposes additional methods to process
1878 ancillary data when supported by the underlying platform:
Nick Coghlan96fe56a2011-08-22 11:55:57 +10001879
Charles-François Natali47413c12011-10-06 19:47:44 +02001880 * :func:`~socket.socket.sendmsg`
1881 * :func:`~socket.socket.recvmsg`
1882 * :func:`~socket.socket.recvmsg_into`
Nick Coghlan96fe56a2011-08-22 11:55:57 +10001883
Charles-François Natali47413c12011-10-06 19:47:44 +02001884 (Contributed by David Watson in :issue:`6560`, based on an earlier patch by
1885 Heiko Wundram)
1886
1887* The :class:`~socket.socket` class now supports the PF_CAN protocol family
Georg Brandl5d941342016-02-26 19:37:12 +01001888 (https://en.wikipedia.org/wiki/Socketcan), on Linux
1889 (https://lwn.net/Articles/253425).
Charles-François Natali47413c12011-10-06 19:47:44 +02001890
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001891 (Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:`10141`.)
Charles-François Natali47413c12011-10-06 19:47:44 +02001892
Charles-François Natali10b8cf42011-11-10 19:21:37 +01001893* The :class:`~socket.socket` class now supports the PF_RDS protocol family
Georg Brandl5d941342016-02-26 19:37:12 +01001894 (https://en.wikipedia.org/wiki/Reliable_Datagram_Sockets and
Georg Brandlb7354a62014-10-29 10:57:37 +01001895 https://oss.oracle.com/projects/rds/).
Victor Stinner754851f2011-04-19 23:58:51 +02001896
R David Murrayf4c27572012-10-06 23:19:17 -04001897* The :class:`~socket.socket` class now supports the ``PF_SYSTEM`` protocol
1898 family on OS X. (Contributed by Michael Goderbauer in :issue:`13777`.)
1899
R David Murrayd2489cf2012-09-30 17:28:54 -04001900* New function :func:`~socket.sethostname` allows the hostname to be set
1901 on unix systems if the calling process has sufficient privileges.
1902 (Contributed by Ross Lagerwall in :issue:`10866`.)
1903
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01001904
R David Murray258fabe2012-10-01 21:43:46 -04001905socketserver
1906------------
1907
1908:class:`~socketserver.BaseServer` now has an overridable method
1909:meth:`~socketserver.BaseServer.service_actions` that is called by the
1910:meth:`~socketserver.BaseServer.serve_forever` method in the service loop.
1911:class:`~socketserver.ForkingMixIn` now uses this to clean up zombie
Senthil Kumaranb4760ef2015-06-14 17:35:37 -07001912child processes. (Contributed by Justin Warkentin in :issue:`11109`.)
R David Murray258fabe2012-10-01 21:43:46 -04001913
1914
R David Murray445d69c2012-09-30 21:59:56 -04001915sqlite3
1916-------
1917
1918New :class:`sqlite3.Connection` method
1919:meth:`~sqlite3.Connection.set_trace_callback` can be used to capture a trace of
1920all sql commands processed by sqlite. (Contributed by Torsten Landschoff
1921in :issue:`11688`.)
1922
1923
Victor Stinner99c8b162011-05-24 12:05:19 +02001924ssl
1925---
1926
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001927* The :mod:`ssl` module has two new random generation functions:
Victor Stinner99c8b162011-05-24 12:05:19 +02001928
1929 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
1930 pseudo-random bytes.
1931 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
1932
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001933 (Contributed by Victor Stinner in :issue:`12049`.)
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001934
1935* The :mod:`ssl` module now exposes a finer-grained exception hierarchy
1936 in order to make it easier to inspect the various kinds of errors.
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001937 (Contributed by Antoine Pitrou in :issue:`11183`.)
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001938
1939* :meth:`~ssl.SSLContext.load_cert_chain` now accepts a *password* argument
1940 to be used if the private key is encrypted.
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001941 (Contributed by Adam Simpkins in :issue:`12803`.)
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001942
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001943* Diffie-Hellman key exchange, both regular and Elliptic Curve-based, is
1944 now supported through the :meth:`~ssl.SSLContext.load_dh_params` and
1945 :meth:`~ssl.SSLContext.set_ecdh_curve` methods.
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001946 (Contributed by Antoine Pitrou in :issue:`13626` and :issue:`13627`.)
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001947
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001948* SSL sockets have a new :meth:`~ssl.SSLSocket.get_channel_binding` method
1949 allowing the implementation of certain authentication mechanisms such as
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001950 SCRAM-SHA-1-PLUS. (Contributed by Jacek Konieczny in :issue:`12551`.)
Antoine Pitrou2c0a9672011-11-17 02:09:13 +01001951
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001952* You can query the SSL compression algorithm used by an SSL socket, thanks
R David Murrayfd740962012-10-06 22:08:08 -04001953 to its new :meth:`~ssl.SSLSocket.compression` method. The new attribute
1954 :attr:`~ssl.OP_NO_COMPRESSION` can be used to disable compression.
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001955 (Contributed by Antoine Pitrou in :issue:`13634`.)
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001956
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001957* Support has been added for the Next Protocol Negotiation extension using
Antoine Pitrou9a864472012-05-04 23:15:47 +02001958 the :meth:`ssl.SSLContext.set_npn_protocols` method.
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001959 (Contributed by Colin Marc in :issue:`14204`.)
Antoine Pitrou9a864472012-05-04 23:15:47 +02001960
Antoine Pitrouad09b5d2012-06-24 22:41:33 +02001961* SSL errors can now be introspected more easily thanks to
1962 :attr:`~ssl.SSLError.library` and :attr:`~ssl.SSLError.reason` attributes.
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001963 (Contributed by Antoine Pitrou in :issue:`14837`.)
Antoine Pitrouad09b5d2012-06-24 22:41:33 +02001964
R David Murray445d69c2012-09-30 21:59:56 -04001965* The :func:`~ssl.get_server_certificate` function now supports IPv6.
1966 (Contributed by Charles-François Natali in :issue:`11811`.)
1967
R David Murrayfd740962012-10-06 22:08:08 -04001968* New attribute :attr:`~ssl.OP_CIPHER_SERVER_PREFERENCE` allows setting
1969 SSLv3 server sockets to use the server's cipher ordering preference rather
1970 than the client's (:issue:`13635`).
1971
R David Murray445d69c2012-09-30 21:59:56 -04001972
Giampaolo Rodola'ffa1d0b2012-05-15 15:30:25 +02001973stat
1974----
1975
R David Murray26d15bf2012-09-29 15:13:35 -04001976The undocumented tarfile.filemode function has been moved to
1977:func:`stat.filemode`. It can be used to convert a file's mode to a string of
1978the form '-rwxrwxrwx'.
Giampaolo Rodola'ffa1d0b2012-05-15 15:30:25 +02001979
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02001980(Contributed by Giampaolo Rodolà in :issue:`14807`.)
Antoine Pitrou73fc8142011-12-23 20:58:36 +01001981
R David Murrayc652ce62012-09-30 20:07:42 -04001982
R David Murray1e218c92012-10-06 18:18:55 -04001983struct
1984------
1985
1986The :mod:`struct` module now supports ``ssize_t`` and ``size_t`` via the
1987new codes ``n`` and ``N``, respectively. (Contributed by Antoine Pitrou
1988in :issue:`3163`.)
1989
1990
R David Murrayc652ce62012-09-30 20:07:42 -04001991subprocess
1992----------
1993
1994Command strings can now be bytes objects on posix platforms. (Contributed by
R David Murray445d69c2012-09-30 21:59:56 -04001995Victor Stinner in :issue:`8513`.)
R David Murrayc652ce62012-09-30 20:07:42 -04001996
1997A new constant :data:`~subprocess.DEVNULL` allows suppressing output in a
1998platform-independent fashion. (Contributed by Ross Lagerwall in
1999:issue:`5870`.)
2000
2001
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002002sys
2003---
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +02002004
R David Murray26d15bf2012-09-29 15:13:35 -04002005The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
luzpaza5293b42017-11-05 07:37:50 -06002006sequence` holding information about the thread implementation
R David Murray445d69c2012-09-30 21:59:56 -04002007(:issue:`11223`).
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +02002008
R David Murray1e218c92012-10-06 18:18:55 -04002009
R David Murrayfd740962012-10-06 22:08:08 -04002010tarfile
2011-------
2012
2013:mod:`tarfile` now supports ``lzma`` encoding via the :mod:`lzma` module.
2014(Contributed by Lars Gustäbel in :issue:`5689`.)
2015
2016
R David Murrayca76ea12012-10-06 18:32:39 -04002017tempfile
2018--------
2019
2020:class:`tempfile.SpooledTemporaryFile`\'s
R David Murray03b2a1c2013-04-03 06:16:14 -04002021:meth:`~tempfile.SpooledTemporaryFile.truncate` method now accepts
R David Murrayca76ea12012-10-06 18:32:39 -04002022a ``size`` parameter. (Contributed by Ryan Kelly in :issue:`9957`.)
2023
2024
Nick Coghlan4fae8cd2012-06-11 23:07:51 +10002025textwrap
2026--------
2027
R David Murray26d15bf2012-09-29 15:13:35 -04002028The :mod:`textwrap` module has a new :func:`~textwrap.indent` that makes
2029it straightforward to add a common prefix to selected lines in a block
R David Murray445d69c2012-09-30 21:59:56 -04002030of text (:issue:`13857`).
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01002031
R David Murrayd2489cf2012-09-30 17:28:54 -04002032
2033threading
2034---------
2035
R David Murrayef4d2862012-10-06 14:35:35 -04002036:class:`threading.Condition`, :class:`threading.Semaphore`,
R David Murray344174d2012-10-06 16:06:16 -04002037:class:`threading.BoundedSemaphore`, :class:`threading.Event`, and
R David Murrayef4d2862012-10-06 14:35:35 -04002038:class:`threading.Timer`, all of which used to be factory functions returning a
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02002039class instance, are now classes and may be subclassed. (Contributed by Éric
2040Araujo in :issue:`10968`.)
R David Murrayef4d2862012-10-06 14:35:35 -04002041
R David Murrayd2489cf2012-09-30 17:28:54 -04002042The :class:`threading.Thread` constructor now accepts a ``daemon`` keyword
luzpaza5293b42017-11-05 07:37:50 -06002043argument to override the default behavior of inheriting the ``daemon`` flag
R David Murrayd2489cf2012-09-30 17:28:54 -04002044value from the parent thread (:issue:`6064`).
2045
R David Murray0bbfd6b2012-10-01 22:10:15 -04002046The formerly private function ``_thread.get_ident`` is now available as the
Georg Brandldc704c62012-10-02 10:16:19 +02002047public function :func:`threading.get_ident`. This eliminates several cases of
R David Murray0bbfd6b2012-10-01 22:10:15 -04002048direct access to the ``_thread`` module in the stdlib. Third party code that
2049used ``_thread.get_ident`` should likewise be changed to use the new public
2050interface.
2051
R David Murrayd2489cf2012-09-30 17:28:54 -04002052
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002053time
2054----
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01002055
Victor Stinnerec895392012-04-29 02:41:27 +02002056The :pep:`418` added new functions to the :mod:`time` module:
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002057
Victor Stinnerec895392012-04-29 02:41:27 +02002058* :func:`~time.get_clock_info`: Get information on a clock.
2059* :func:`~time.monotonic`: Monotonic clock (cannot go backward), not affected
2060 by system clock updates.
2061* :func:`~time.perf_counter`: Performance counter with the highest available
2062 resolution to measure a short duration.
2063* :func:`~time.process_time`: Sum of the system and user CPU time of the
2064 current process.
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002065
Victor Stinnerec895392012-04-29 02:41:27 +02002066Other new functions:
2067
2068* :func:`~time.clock_getres`, :func:`~time.clock_gettime` and
2069 :func:`~time.clock_settime` functions with ``CLOCK_xxx`` constants.
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02002070 (Contributed by Victor Stinner in :issue:`10278`.)
Victor Stinnerf4c54ff2012-02-08 01:48:34 +01002071
R David Murray3430fb82012-10-02 18:24:56 -04002072To improve cross platform consistency, :func:`~time.sleep` now raises a
2073:exc:`ValueError` when passed a negative sleep value. Previously this was an
2074error on posix, but produced an infinite sleep on Windows.
2075
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +01002076
Victor Stinner0db176f2012-04-16 00:16:30 +02002077types
2078-----
2079
2080Add a new :class:`types.MappingProxyType` class: Read-only proxy of a mapping.
2081(:issue:`14386`)
2082
2083
Georg Brandl6b4c8472014-10-30 22:26:26 +01002084The new functions :func:`types.new_class` and :func:`types.prepare_class` provide support
Nick Coghlan7fc570a2012-05-20 02:34:13 +10002085for PEP 3115 compliant dynamic type creation. (:issue:`14588`)
2086
2087
Ezio Melotti461f41d2012-09-26 17:43:23 +03002088unittest
2089--------
2090
2091:meth:`.assertRaises`, :meth:`.assertRaisesRegex`, :meth:`.assertWarns`, and
2092:meth:`.assertWarnsRegex` now accept a keyword argument *msg* when used as
R David Murrayc652ce62012-09-30 20:07:42 -04002093context managers. (Contributed by Ezio Melotti and Winston Ewert in
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02002094:issue:`10775`.)
Ezio Melotti461f41d2012-09-26 17:43:23 +03002095
R David Murrayc652ce62012-09-30 20:07:42 -04002096:meth:`unittest.TestCase.run` now returns the :class:`~unittest.TestResult`
2097object.
Ezio Melotti461f41d2012-09-26 17:43:23 +03002098
R David Murray1e218c92012-10-06 18:18:55 -04002099
Senthil Kumarande49d642011-10-16 23:54:44 +08002100urllib
2101------
2102
2103The :class:`~urllib.request.Request` class, now accepts a *method* argument
2104used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
Senthil Kumarana41c9422011-10-20 02:37:08 +08002105should be used. For example, this will send a ``'HEAD'`` request::
Senthil Kumarande49d642011-10-16 23:54:44 +08002106
Georg Brandle73778c2014-10-29 08:36:35 +01002107 >>> urlopen(Request('https://www.python.org', method='HEAD'))
Senthil Kumarande49d642011-10-16 23:54:44 +08002108
2109(:issue:`1673007`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +02002110
Giampaolo Rodola'be55d992011-11-22 13:33:34 +01002111
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002112webbrowser
2113----------
2114
R David Murrayf4c27572012-10-06 23:19:17 -04002115The :mod:`webbrowser` module supports more "browsers": Google Chrome (named
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002116:program:`chrome`, :program:`chromium`, :program:`chrome-browser` or
R David Murrayf4c27572012-10-06 23:19:17 -04002117:program:`chromium-browser` depending on the version and operating system),
2118and the generic launchers :program:`xdg-open`, from the FreeDesktop.org
2119project, and :program:`gvfs-open`, which is the default URI handler for GNOME
21203. (The former contributed by Arnaud Calmettes in :issue:`13620`, the latter
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02002121by Matthias Klose in :issue:`14493`.)
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002122
2123
Eli Benderskyefcaba02012-08-09 08:20:20 +03002124xml.etree.ElementTree
2125---------------------
2126
2127The :mod:`xml.etree.ElementTree` module now imports its C accelerator by
2128default; there is no longer a need to explicitly import
2129:mod:`xml.etree.cElementTree` (this module stays for backwards compatibility,
2130but is now deprecated). In addition, the ``iter`` family of methods of
2131:class:`~xml.etree.ElementTree.Element` has been optimized (rewritten in C).
2132The module's documentation has also been greatly improved with added examples
2133and a more detailed reference.
2134
2135
R David Murray1e218c92012-10-06 18:18:55 -04002136zlib
2137----
2138
2139New attribute :attr:`zlib.Decompress.eof` makes it possible to distinguish
2140between a properly-formed compressed stream and an incomplete or truncated one.
2141(Contributed by Nadeem Vawda in :issue:`12646`.)
2142
2143New attribute :attr:`zlib.ZLIB_RUNTIME_VERSION` reports the version string of
2144the underlying ``zlib`` library that is loaded at runtime. (Contributed by
2145Torsten Landschoff in :issue:`12306`.)
2146
2147
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002148Optimizations
2149=============
2150
2151Major performance enhancements have been added:
2152
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002153* Thanks to :pep:`393`, some operations on Unicode strings have been optimized:
Victor Stinner46606ce2011-11-20 18:27:55 +01002154
2155 * the memory footprint is divided by 2 to 4 depending on the text
Victor Stinnera996f1e2011-11-21 13:14:43 +01002156 * encode an ASCII string to UTF-8 doesn't need to encode characters anymore,
2157 the UTF-8 representation is shared with the ASCII representation
Victor Stinner6099a032011-12-18 14:22:26 +01002158 * the UTF-8 encoder has been optimized
Serhiy Storchakad65c9492015-11-02 14:10:23 +02002159 * repeating a single ASCII letter and getting a substring of an ASCII string
Victor Stinner6099a032011-12-18 14:22:26 +01002160 is 4 times faster
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002161
Antoine Pitrou5d7e1d32012-06-24 22:38:23 +02002162* UTF-8 is now 2x to 4x faster. UTF-16 encoding is now up to 10x faster.
Antoine Pitrou5cec9d22012-05-17 17:37:02 +02002163
Serhiy Storchakae5cf4862014-11-02 19:18:52 +02002164 (Contributed by Serhiy Storchaka, :issue:`14624`, :issue:`14738` and
Antoine Pitrouc9092962012-06-15 22:22:18 +02002165 :issue:`15026`.)
Antoine Pitrou5cec9d22012-05-17 17:37:02 +02002166
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002167
2168Build and C API Changes
2169=======================
2170
2171Changes to Python's build process and to the C API include:
2172
Stefan Krah95b1ba62012-02-29 17:27:21 +01002173* New :pep:`3118` related function:
2174
2175 * :c:func:`PyMemoryView_FromMemory`
2176
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002177* :pep:`393` added new Unicode types, macros and functions:
Victor Stinner46606ce2011-11-20 18:27:55 +01002178
Victor Stinnera996f1e2011-11-21 13:14:43 +01002179 * High-level API:
2180
2181 * :c:func:`PyUnicode_CopyCharacters`
2182 * :c:func:`PyUnicode_FindChar`
2183 * :c:func:`PyUnicode_GetLength`, :c:macro:`PyUnicode_GET_LENGTH`
2184 * :c:func:`PyUnicode_New`
2185 * :c:func:`PyUnicode_Substring`
2186 * :c:func:`PyUnicode_ReadChar`, :c:func:`PyUnicode_WriteChar`
2187
2188 * Low-level API:
2189
2190 * :c:type:`Py_UCS1`, :c:type:`Py_UCS2`, :c:type:`Py_UCS4` types
2191 * :c:type:`PyASCIIObject` and :c:type:`PyCompactUnicodeObject` structures
2192 * :c:macro:`PyUnicode_READY`
2193 * :c:func:`PyUnicode_FromKindAndData`
2194 * :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsUCS4Copy`
2195 * :c:macro:`PyUnicode_DATA`, :c:macro:`PyUnicode_1BYTE_DATA`,
2196 :c:macro:`PyUnicode_2BYTE_DATA`, :c:macro:`PyUnicode_4BYTE_DATA`
2197 * :c:macro:`PyUnicode_KIND` with :c:type:`PyUnicode_Kind` enum:
2198 :c:data:`PyUnicode_WCHAR_KIND`, :c:data:`PyUnicode_1BYTE_KIND`,
2199 :c:data:`PyUnicode_2BYTE_KIND`, :c:data:`PyUnicode_4BYTE_KIND`
2200 * :c:macro:`PyUnicode_READ`, :c:macro:`PyUnicode_READ_CHAR`, :c:macro:`PyUnicode_WRITE`
2201 * :c:macro:`PyUnicode_MAX_CHAR_VALUE`
2202
R David Murraye54c7182012-10-16 21:52:24 -04002203* :c:macro:`PyArg_ParseTuple` now accepts a :class:`bytearray` for the ``c``
2204 format (:issue:`12380`).
2205
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002206
2207
Victor Stinnerd1be8782011-12-09 00:10:41 +01002208Deprecated
2209==========
2210
Georg Brandl0cd25c92011-04-29 13:45:54 +02002211Unsupported Operating Systems
Victor Stinnerd1be8782011-12-09 00:10:41 +01002212-----------------------------
Victor Stinnerb90db4c2011-04-26 22:48:24 +02002213
Brian Curtin49a40cd2011-05-02 22:30:06 -05002214OS/2 and VMS are no longer supported due to the lack of a maintainer.
2215
2216Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
2217are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +02002218
R David Murrayd2489cf2012-09-30 17:28:54 -04002219OSF support, which was deprecated in 3.2, has been completely removed.
2220
Victor Stinnerb90db4c2011-04-26 22:48:24 +02002221
Victor Stinner46606ce2011-11-20 18:27:55 +01002222Deprecated Python modules, functions and methods
Victor Stinnerd1be8782011-12-09 00:10:41 +01002223------------------------------------------------
Victor Stinner19bd0692011-11-16 00:18:57 +01002224
R David Murraye54c7182012-10-16 21:52:24 -04002225* Passing a non-empty string to ``object.__format__()`` is deprecated, and
2226 will produce a :exc:`TypeError` in Python 3.4 (:issue:`9856`).
Victor Stinner19bd0692011-11-16 00:18:57 +01002227* The ``unicode_internal`` codec has been deprecated because of the
Sandro Tosicd899122012-01-22 12:16:04 +01002228 :pep:`393`, use UTF-8, UTF-16 (``utf-16-le`` or ``utf-16-be``), or UTF-32
2229 (``utf-32-le`` or ``utf-32-be``)
Victor Stinner19bd0692011-11-16 00:18:57 +01002230* :meth:`ftplib.FTP.nlst` and :meth:`ftplib.FTP.dir`: use
Victor Stinner46606ce2011-11-20 18:27:55 +01002231 :meth:`ftplib.FTP.mlsd`
Victor Stinner19bd0692011-11-16 00:18:57 +01002232* :func:`platform.popen`: use the :mod:`subprocess` module. Check especially
R David Murrayc652ce62012-09-30 20:07:42 -04002233 the :ref:`subprocess-replacements` section (:issue:`11377`).
Victor Stinner19bd0692011-11-16 00:18:57 +01002234* :issue:`13374`: The Windows bytes API has been deprecated in the :mod:`os`
Victor Stinner46606ce2011-11-20 18:27:55 +01002235 module. Use Unicode filenames, instead of bytes filenames, to not depend on
Victor Stinner19bd0692011-11-16 00:18:57 +01002236 the ANSI code page anymore and to support any filename.
Florent Xiclunaa72a98f2012-02-13 11:03:30 +01002237* :issue:`13988`: The :mod:`xml.etree.cElementTree` module is deprecated. The
2238 accelerator is used automatically whenever available.
Victor Stinner47620a62012-04-29 02:52:39 +02002239* The behaviour of :func:`time.clock` depends on the platform: use the new
2240 :func:`time.perf_counter` or :func:`time.process_time` function instead,
2241 depending on your requirements, to have a well defined behaviour.
Victor Stinnerfa0d6282012-08-05 15:56:51 +02002242* The :func:`os.stat_float_times` function is deprecated.
Victor Stinner8f17c1c2012-08-05 16:31:32 +02002243* :mod:`abc` module:
2244
2245 * :class:`abc.abstractproperty` has been deprecated, use :class:`property`
2246 with :func:`abc.abstractmethod` instead.
2247 * :class:`abc.abstractclassmethod` has been deprecated, use
2248 :class:`classmethod` with :func:`abc.abstractmethod` instead.
2249 * :class:`abc.abstractstaticmethod` has been deprecated, use
2250 :class:`staticmethod` with :func:`abc.abstractmethod` instead.
2251
Georg Brandlfc349212012-09-26 13:11:48 +02002252* :mod:`importlib` package:
Brett Cannon288717a2012-09-25 15:23:07 -04002253
2254 * :meth:`importlib.abc.SourceLoader.path_mtime` is now deprecated in favour of
2255 :meth:`importlib.abc.SourceLoader.path_stats` as bytecode files now store
2256 both the modification time and size of the source file the bytecode file was
2257 compiled from.
2258
2259
2260
Victor Stinner19bd0692011-11-16 00:18:57 +01002261
2262
Victor Stinner46606ce2011-11-20 18:27:55 +01002263Deprecated functions and types of the C API
Victor Stinnerd1be8782011-12-09 00:10:41 +01002264-------------------------------------------
Victor Stinner46606ce2011-11-20 18:27:55 +01002265
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002266The :c:type:`Py_UNICODE` has been deprecated by :pep:`393` and will be
Victor Stinner46606ce2011-11-20 18:27:55 +01002267removed in Python 4. All functions using this type are deprecated:
2268
Victor Stinner46606ce2011-11-20 18:27:55 +01002269Unicode functions and methods using :c:type:`Py_UNICODE` and
2270:c:type:`Py_UNICODE*` types:
2271
R David Murrayf75e65f2012-09-29 15:27:53 -04002272* :c:macro:`PyUnicode_FromUnicode`: use :c:func:`PyUnicode_FromWideChar` or
2273 :c:func:`PyUnicode_FromKindAndData`
2274* :c:macro:`PyUnicode_AS_UNICODE`, :c:func:`PyUnicode_AsUnicode`,
2275 :c:func:`PyUnicode_AsUnicodeAndSize`: use :c:func:`PyUnicode_AsWideCharString`
2276* :c:macro:`PyUnicode_AS_DATA`: use :c:macro:`PyUnicode_DATA` with
2277 :c:macro:`PyUnicode_READ` and :c:macro:`PyUnicode_WRITE`
2278* :c:macro:`PyUnicode_GET_SIZE`, :c:func:`PyUnicode_GetSize`: use
2279 :c:macro:`PyUnicode_GET_LENGTH` or :c:func:`PyUnicode_GetLength`
2280* :c:macro:`PyUnicode_GET_DATA_SIZE`: use
2281 ``PyUnicode_GET_LENGTH(str) * PyUnicode_KIND(str)`` (only work on ready
2282 strings)
2283* :c:func:`PyUnicode_AsUnicodeCopy`: use :c:func:`PyUnicode_AsUCS4Copy` or
2284 :c:func:`PyUnicode_AsWideCharString`
2285* :c:func:`PyUnicode_GetMax`
Victor Stinnerab595942011-12-17 04:59:06 +01002286
Victor Stinner46606ce2011-11-20 18:27:55 +01002287
Victor Stinnera996f1e2011-11-21 13:14:43 +01002288Functions and macros manipulating Py_UNICODE* strings:
2289
R David Murrayf75e65f2012-09-29 15:27:53 -04002290* :c:macro:`Py_UNICODE_strlen`: use :c:func:`PyUnicode_GetLength` or
2291 :c:macro:`PyUnicode_GET_LENGTH`
2292* :c:macro:`Py_UNICODE_strcat`: use :c:func:`PyUnicode_CopyCharacters` or
2293 :c:func:`PyUnicode_FromFormat`
2294* :c:macro:`Py_UNICODE_strcpy`, :c:macro:`Py_UNICODE_strncpy`,
2295 :c:macro:`Py_UNICODE_COPY`: use :c:func:`PyUnicode_CopyCharacters` or
2296 :c:func:`PyUnicode_Substring`
2297* :c:macro:`Py_UNICODE_strcmp`: use :c:func:`PyUnicode_Compare`
2298* :c:macro:`Py_UNICODE_strncmp`: use :c:func:`PyUnicode_Tailmatch`
2299* :c:macro:`Py_UNICODE_strchr`, :c:macro:`Py_UNICODE_strrchr`: use
2300 :c:func:`PyUnicode_FindChar`
2301* :c:macro:`Py_UNICODE_FILL`: use :c:func:`PyUnicode_Fill`
2302* :c:macro:`Py_UNICODE_MATCH`
Victor Stinnera996f1e2011-11-21 13:14:43 +01002303
Victor Stinner46606ce2011-11-20 18:27:55 +01002304Encoders:
2305
R David Murrayf75e65f2012-09-29 15:27:53 -04002306* :c:func:`PyUnicode_Encode`: use :c:func:`PyUnicode_AsEncodedObject`
2307* :c:func:`PyUnicode_EncodeUTF7`
2308* :c:func:`PyUnicode_EncodeUTF8`: use :c:func:`PyUnicode_AsUTF8` or
2309 :c:func:`PyUnicode_AsUTF8String`
2310* :c:func:`PyUnicode_EncodeUTF32`
2311* :c:func:`PyUnicode_EncodeUTF16`
2312* :c:func:`PyUnicode_EncodeUnicodeEscape:` use
2313 :c:func:`PyUnicode_AsUnicodeEscapeString`
2314* :c:func:`PyUnicode_EncodeRawUnicodeEscape:` use
2315 :c:func:`PyUnicode_AsRawUnicodeEscapeString`
2316* :c:func:`PyUnicode_EncodeLatin1`: use :c:func:`PyUnicode_AsLatin1String`
2317* :c:func:`PyUnicode_EncodeASCII`: use :c:func:`PyUnicode_AsASCIIString`
2318* :c:func:`PyUnicode_EncodeCharmap`
2319* :c:func:`PyUnicode_TranslateCharmap`
2320* :c:func:`PyUnicode_EncodeMBCS`: use :c:func:`PyUnicode_AsMBCSString` or
2321 :c:func:`PyUnicode_EncodeCodePage` (with ``CP_ACP`` code_page)
2322* :c:func:`PyUnicode_EncodeDecimal`,
2323 :c:func:`PyUnicode_TransformDecimalToASCII`
Victor Stinner46606ce2011-11-20 18:27:55 +01002324
2325
Stefan Krah029780b2012-08-24 20:14:12 +02002326Deprecated features
2327-------------------
2328
2329The :mod:`array` module's ``'u'`` format code is now deprecated and will be
2330removed in Python 4 together with the rest of the (:c:type:`Py_UNICODE`) API.
2331
2332
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002333Porting to Python 3.3
2334=====================
2335
2336This section lists previously described changes and other bugfixes
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002337that may require changes to your code.
2338
Barry Warsawc1e721b2012-07-30 16:24:12 -04002339.. _portingpythoncode:
2340
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002341Porting Python code
2342-------------------
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00002343
Victor Stinnerfa0d6282012-08-05 15:56:51 +02002344* Hash randomization is enabled by default. Set the :envvar:`PYTHONHASHSEED`
2345 environment variable to ``0`` to disable hash randomization. See also the
2346 :meth:`object.__hash__` method.
Georg Brandld6c43402012-03-07 08:55:52 +01002347
Victor Stinner19bd0692011-11-16 00:18:57 +01002348* :issue:`12326`: On Linux, sys.platform doesn't contain the major version
Victor Stinnerff3d9392011-08-20 23:39:26 +02002349 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
2350 on the Linux version used to build Python. Replace sys.platform == 'linux2'
2351 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
2352 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +01002353
Victor Stinnerecc6e662012-03-14 00:39:29 +01002354* :issue:`13847`, :issue:`14180`: :mod:`time` and :mod:`datetime`:
2355 :exc:`OverflowError` is now raised instead of :exc:`ValueError` if a
2356 timestamp is out of range. :exc:`OSError` is now raised if C functions
2357 :c:func:`gmtime` or :c:func:`localtime` failed.
2358
Brett Cannonc2043482012-04-29 20:59:41 -04002359* The default finders used by import now utilize a cache of what is contained
2360 within a specific directory. If you create a Python source file or sourceless
2361 bytecode file, make sure to call :func:`importlib.invalidate_caches` to clear
2362 out the cache for the finders to notice the new file.
2363
Senthil Kumaranb4760ef2015-06-14 17:35:37 -07002364* :exc:`ImportError` now uses the full name of the module that was attempted to
Brett Cannonc2043482012-04-29 20:59:41 -04002365 be imported. Doctests that check ImportErrors' message will need to be
2366 updated to use the full name of the module instead of just the tail of the
2367 name.
2368
Ezio Melotti7598e182012-09-20 08:33:53 +03002369* The *index* argument to :func:`__import__` now defaults to 0 instead of -1
Brett Cannonc2043482012-04-29 20:59:41 -04002370 and no longer support negative values. It was an oversight when :pep:`328` was
2371 implemented that the default value remained -1. If you need to continue to
2372 perform a relative import followed by an absolute import, then perform the
2373 relative import using an index of 1, followed by another import using an
2374 index of 0. It is preferred, though, that you use
2375 :func:`importlib.import_module` rather than call :func:`__import__` directly.
2376
2377* :func:`__import__` no longer allows one to use an index value other than 0
2378 for top-level modules. E.g. ``__import__('sys', level=1)`` is now an error.
2379
2380* Because :attr:`sys.meta_path` and :attr:`sys.path_hooks` now have finders on
2381 them by default, you will most likely want to use :meth:`list.insert` instead
2382 of :meth:`list.append` to add to those lists.
2383
2384* Because ``None`` is now inserted into :attr:`sys.path_importer_cache`, if you
2385 are clearing out entries in the dictionary of paths that do not have a
2386 finder, you will need to remove keys paired with values of ``None`` **and**
Brett Cannon903c27c2012-07-09 14:15:32 -04002387 :class:`imp.NullImporter` to be backwards-compatible. This will lead to extra
Brett Cannonc2043482012-04-29 20:59:41 -04002388 overhead on older versions of Python that re-insert ``None`` into
2389 :attr:`sys.path_importer_cache` where it repesents the use of implicit
2390 finders, but semantically it should not change anything.
2391
Brett Cannon077ef452012-08-02 17:50:06 -04002392* :class:`importlib.abc.Finder` no longer specifies a `find_module()` abstract
2393 method that must be implemented. If you were relying on subclasses to
2394 implement that method, make sure to check for the method's existence first.
2395 You will probably want to check for `find_loader()` first, though, in the
2396 case of working with :term:`path entry finders <path entry finder>`.
2397
Nick Coghlan60610002012-07-15 22:39:39 +10002398* :mod:`pkgutil` has been converted to use :mod:`importlib` internally. This
2399 eliminates many edge cases where the old behaviour of the PEP 302 import
2400 emulation failed to match the behaviour of the real import system. The
2401 import emulation itself is still present, but is now deprecated. The
2402 :func:`pkgutil.iter_importers` and :func:`pkgutil.walk_packages` functions
2403 special case the standard import hooks so they are still supported even
2404 though they do not provide the non-standard ``iter_modules()`` method.
Brett Cannon903c27c2012-07-09 14:15:32 -04002405
R David Murrayea226852012-09-30 01:27:24 -04002406* A longstanding RFC-compliance bug (:issue:`1079`) in the parsing done by
2407 :func:`email.header.decode_header` has been fixed. Code that uses the
2408 standard idiom to convert encoded headers into unicode
2409 (``str(make_header(decode_header(h))``) will see no change, but code that
2410 looks at the individual tuples returned by decode_header will see that
2411 whitespace that precedes or follows ``ASCII`` sections is now included in the
2412 ``ASCII`` section. Code that builds headers using ``make_header`` should
2413 also continue to work without change, since ``make_header`` continues to add
2414 whitespace between ``ASCII`` and non-``ASCII`` sections if it is not already
2415 present in the input strings.
2416
2417* :func:`email.utils.formataddr` now does the correct content transfer
2418 encoding when passed non-``ASCII`` display names. Any code that depended on
2419 the previous buggy behavior that preserved the non-``ASCII`` unicode in the
R David Murrayd2489cf2012-09-30 17:28:54 -04002420 formatted output string will need to be changed (:issue:`1690608`).
2421
2422* :meth:`poplib.POP3.quit` may now raise protocol errors like all other
2423 ``poplib`` methods. Code that assumes ``quit`` does not raise
2424 :exc:`poplib.error_proto` errors may need to be changed if errors on ``quit``
2425 are encountered by a particular application (:issue:`11291`).
R David Murrayea226852012-09-30 01:27:24 -04002426
R David Murray445d69c2012-09-30 21:59:56 -04002427* The ``strict`` argument to :class:`email.parser.Parser`, deprecated since
2428 Python 2.4, has finally been removed.
2429
2430* The deprecated method ``unittest.TestCase.assertSameElements`` has been
2431 removed.
2432
2433* The deprecated variable ``time.accept2dyear`` has been removed.
2434
R David Murray1e218c92012-10-06 18:18:55 -04002435* The deprecated ``Context._clamp`` attribute has been removed from the
2436 :mod:`decimal` module. It was previously replaced by the public attribute
2437 :attr:`~decimal.Context.clamp`. (See :issue:`8540`.)
2438
R David Murray3430fb82012-10-02 18:24:56 -04002439* The undocumented internal helper class ``SSLFakeFile`` has been removed
2440 from :mod:`smtplib`, since its functionality has long been provided directly
2441 by :meth:`socket.socket.makefile`.
2442
2443* Passing a negative value to :func:`time.sleep` on Windows now raises an
2444 error instead of sleeping forever. It has always raised an error on posix.
2445
2446* The ``ast.__version__`` constant has been removed. If you need to
2447 make decisions affected by the AST version, use :attr:`sys.version_info`
2448 to make the decision.
R David Murray994ce1a2012-10-02 10:19:08 -04002449
R David Murrayef4d2862012-10-06 14:35:35 -04002450* Code that used to work around the fact that the :mod:`threading` module used
2451 factory functions by subclassing the private classes will need to change to
2452 subclass the now-public classes.
2453
R David Murraye54c7182012-10-16 21:52:24 -04002454* The undocumented debugging machinery in the threading module has been
2455 removed, simplifying the code. This should have no effect on production
2456 code, but is mentioned here in case any application debug frameworks were
2457 interacting with it (:issue:`13550`).
2458
Brett Cannonc2043482012-04-29 20:59:41 -04002459
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002460Porting C code
2461--------------
2462
Stefan Krah54c32032012-02-29 17:47:21 +01002463* In the course of changes to the buffer API the undocumented
2464 :c:member:`~Py_buffer.smalltable` member of the
2465 :c:type:`Py_buffer` structure has been removed and the
2466 layout of the :c:type:`PyMemoryViewObject` has changed.
2467
2468 All extensions relying on the relevant parts in ``memoryobject.h``
2469 or ``object.h`` must be rebuilt.
2470
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002471* Due to :ref:`PEP 393 <pep-393>`, the :c:type:`Py_UNICODE` type and all
2472 functions using this type are deprecated (but will stay available for
2473 at least five years). If you were using low-level Unicode APIs to
2474 construct and access unicode objects and you want to benefit of the
Éric Araujo4f61a2d2012-04-04 23:01:01 -04002475 memory footprint reduction provided by PEP 393, you have to convert
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002476 your code to the new :doc:`Unicode API <../c-api/unicode>`.
2477
2478 However, if you only have been using high-level functions such as
2479 :c:func:`PyUnicode_Concat()`, :c:func:`PyUnicode_Join` or
2480 :c:func:`PyUnicode_FromFormat()`, your code will automatically take
2481 advantage of the new unicode representations.
2482
Serhiy Storchaka5bb00052018-02-09 13:31:19 +02002483* :c:func:`PyImport_GetMagicNumber` now returns ``-1`` upon failure.
Brett Cannon77b2abd2012-07-09 16:09:00 -04002484
Ezio Melotti7598e182012-09-20 08:33:53 +03002485* As a negative value for the *level* argument to :func:`__import__` is no
Brett Cannon522267e2012-08-10 18:55:08 -04002486 longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`.
Ezio Melotti7598e182012-09-20 08:33:53 +03002487 This also means that the value of *level* used by
Serhiy Storchaka5bb00052018-02-09 13:31:19 +02002488 :c:func:`PyImport_ImportModuleEx` is now ``0`` instead of ``-1``.
Brett Cannon522267e2012-08-10 18:55:08 -04002489
Brett Cannon77b2abd2012-07-09 16:09:00 -04002490
Antoine Pitrouc229e6e2012-02-20 19:41:11 +01002491Building C extensions
2492---------------------
2493
2494* The range of possible file names for C extensions has been narrowed.
2495 Very rarely used spellings have been suppressed: under POSIX, files
2496 named ``xxxmodule.so``, ``xxxmodule.abi3.so`` and
2497 ``xxxmodule.cpython-*.so`` are no longer recognized as implementing
2498 the ``xxx`` module. If you had been generating such files, you have
2499 to switch to the other spellings (i.e., remove the ``module`` string
2500 from the file names).
2501
2502 (implemented in :issue:`14040`.)
2503
2504
R David Murray1764c802012-09-29 11:42:36 -04002505Command Line Switch Changes
2506---------------------------
Antoine Pitrou037ffbf2011-10-24 00:25:41 +02002507
R David Murray1764c802012-09-29 11:42:36 -04002508* The -Q command-line flag and related artifacts have been removed. Code
2509 checking sys.flags.division_warning will need updating.
Éric Araujobe3bd572011-03-26 01:55:15 +01002510
R David Murray1764c802012-09-29 11:42:36 -04002511 (:issue:`10998`, contributed by Éric Araujo.)
2512
2513* When :program:`python` is started with :option:`-S`, ``import site``
2514 will no longer add site-specific paths to the module search paths. In
2515 previous versions, it did.
2516
2517 (:issue:`11591`, contributed by Carl Meyer with editions by Éric Araujo.)