blob: e2f810cc7574a41eda9e1deff279c97294abd64d [file] [log] [blame]
Georg Brandlb80f5112012-09-30 09:11:58 +02001****************************
2 What's New In Python 3.4
3****************************
4
Georg Brandl3b80d342012-10-28 13:37:54 +01005.. :Author: Someone <email>
6 (uncomment if there is a principal author)
Georg Brandlb80f5112012-09-30 09:11:58 +02007
8.. Rules for maintenance:
9
Nick Coghlan03074fd2012-09-30 18:51:53 +053010 * Anyone can add text to this document, but the maintainer reserves the
11 right to rewrite any additions. In particular, for obscure or esoteric
12 features, the maintainer may reduce any addition to a simple reference to
13 the new documentation rather than explaining the feature inline.
Georg Brandlb80f5112012-09-30 09:11:58 +020014
Nick Coghlan03074fd2012-09-30 18:51:53 +053015 * While the maintainer will periodically go through Misc/NEWS
16 and add changes, it's best not to rely on this. We know from experience
17 that any changes that aren't in the What's New documentation around the
18 time of the original release will remain largely unknown to the community
19 for years, even if they're added later. We also know from experience that
20 other priorities can arise, and the maintainer will run out of time to do
R David Murray061efb12013-12-24 12:35:59 -050021 updates -- in such cases, end users will be much better served by partial
Nick Coghlan03074fd2012-09-30 18:51:53 +053022 notifications that at least give a hint about new features to
23 investigate.
Georg Brandlb80f5112012-09-30 09:11:58 +020024
25 * This is not a complete list of every single change; completeness
Nick Coghlan03074fd2012-09-30 18:51:53 +053026 is the purpose of Misc/NEWS. The What's New should focus on changes that
27 are visible to Python *users* and that *require* a feature release (i.e.
28 most bug fixes should only be recorded in Misc/NEWS)
29
30 * PEPs should not be marked Final until they have an entry in What's New.
31 A placeholder entry that is just a section header and a link to the PEP
32 (e.g ":pep:`397` has been implemented") is acceptable. If a PEP has been
33 implemented and noted in What's New, don't forget to mark it as Final!
Georg Brandlb80f5112012-09-30 09:11:58 +020034
35 * If you want to draw your new text to the attention of the
36 maintainer, add 'XXX' to the beginning of the paragraph or
37 section.
38
Nick Coghlan03074fd2012-09-30 18:51:53 +053039 * It's OK to add just a very brief note about a change. For
40 example: "The :ref:`~socket.transmogrify()` function was added to the
41 :mod:`socket` module." The maintainer will research the change and
42 write the necessary text (if appropriate). The advantage of doing this
43 is that even if no more descriptive text is ever added, readers will at
44 least have a notification that the new feature exists and a link to the
45 relevant documentation.
Georg Brandlb80f5112012-09-30 09:11:58 +020046
47 * You can comment out your additions if you like, but it's not
48 necessary (especially when a final release is some months away).
49
50 * Credit the author of a patch or bugfix. Just the name is
51 sufficient; the e-mail address isn't necessary.
52
53 * It's helpful to add the bug/patch number as a comment:
54
Nick Coghlan03074fd2012-09-30 18:51:53 +053055 The :ref:`~socket.transmogrify()` function was added to the
56 :mod:`socket` module. (Contributed by P.Y. Developer in :issue:`12345`.)
Georg Brandlb80f5112012-09-30 09:11:58 +020057
58 This saves the maintainer the effort of going through the Mercurial log
59 when researching a change.
60
Nick Coghlan03074fd2012-09-30 18:51:53 +053061 * Cross referencing tip: :ref:`mod.attr` will display as ``mod.attr``,
62 while :ref:`~mod.attr` will display as ``attr``.
63
Georg Brandlb80f5112012-09-30 09:11:58 +020064This article explains the new features in Python 3.4, compared to 3.3.
65
Nick Coghlan03074fd2012-09-30 18:51:53 +053066.. Python 3.4 was released on TBD.
Georg Brandlb80f5112012-09-30 09:11:58 +020067
Ezio Melotti25bbe5e2012-11-17 19:30:48 +020068For full details, see the
69`changelog <http://docs.python.org/3.4/whatsnew/changelog.html>`_.
Georg Brandlb80f5112012-09-30 09:11:58 +020070
71.. note:: Prerelease users should be aware that this document is currently in
72 draft form. It will be updated substantially as Python 3.4 moves towards
73 release, so it's worth checking back even after reading earlier versions.
74
75
76.. seealso::
77
R David Murray061efb12013-12-24 12:35:59 -050078 :pep:`429` -- Python 3.4 Release Schedule
Georg Brandlb80f5112012-09-30 09:11:58 +020079
80
R David Murraye7cf6782013-12-24 14:51:25 -050081Summary -- Release Highlights
Georg Brandlb80f5112012-09-30 09:11:58 +020082=============================
83
Kristjan Valur Jonssona1e82442013-03-26 13:56:14 +000084.. This section singles out the most important changes in Python 3.4.
Georg Brandlb80f5112012-09-30 09:11:58 +020085 Brevity is key.
86
87New syntax features:
88
R David Murraye0f7a782013-12-20 16:04:29 -050089* No new syntax features were added in Python 3.4.
Georg Brandlb80f5112012-09-30 09:11:58 +020090
R David Murray809487e2013-12-22 20:49:40 -050091New expected features for Python implementations:
92
R David Murray68790662013-12-23 11:17:51 -050093* :ref:`pip should always be "available" <whatsnew-pep-453>` (:pep:`453`).
R David Murray809487e2013-12-22 20:49:40 -050094* :ref:`Make newly created file descriptors non-inheritable <whatsnew-pep-446>`
95 (:pep:`446`).
96* command line option for :ref:`isolated mode <using-on-misc-options>`,
97 (:issue:`16499`).
R David Murray8d856782013-12-23 10:28:57 -050098* :ref:`improvements in the handling of codecs <codec-handling-improvements>`
99 that are not text encodings (multiple issues).
R David Murray809487e2013-12-22 20:49:40 -0500100* :ref:`A ModuleSpec Type <whatsnew-pep-451>` for the Import System
R David Murraye9b74d42013-12-22 21:05:04 -0500101 (:pep:`451`). (Affects importer authors.)
R David Murray809487e2013-12-22 20:49:40 -0500102
Georg Brandlb80f5112012-09-30 09:11:58 +0200103New library modules:
104
R David Murray9217dad2013-12-23 21:08:28 -0500105* :mod:`asyncio`: :ref:`New provisional API for asynchronous IO
106 <whatsnew-asyncio>` (:pep:`3156`).
107* :mod:`ensurepip`: :ref:`Bootstrapping the pip installer <whatsnew-ensurepip>`
108 (:pep:`453`).
109* :mod:`enum`: :ref:`Support for enumeration types <whatsnew-enum>`
110 (:pep:`435`).
111* :mod:`pathlib`: :ref:`Object-oriented filesystem paths <whatsnew-pathlib>`
112 (:pep:`428`).
R David Murrayf9976e72013-12-23 10:32:02 -0500113* :mod:`selectors`: :ref:`High-level and efficient I/O multiplexing
114 <whatsnew-selectors>`, built upon the :mod:`select` module primitives (part
115 of :pep:`3156`).
R David Murray9217dad2013-12-23 21:08:28 -0500116* :mod:`statistics`: A basic :ref:`numerically stable statistics library
117 <whatsnew-statistics>` (:pep:`450`).
118* :mod:`tracemalloc`: :ref:`Trace Python memory allocations
119 <whatsnew-tracemalloc>` (:pep:`454`).
Georg Brandlb80f5112012-09-30 09:11:58 +0200120
Georg Brandlb80f5112012-09-30 09:11:58 +0200121Significantly Improved Library Modules:
122
R David Murray0a102162013-12-20 15:00:54 -0500123* :ref:`Single-dispatch generic functions <whatsnew-singledispatch>` in
R David Murray8d856782013-12-23 10:28:57 -0500124 :mod:`functools` (:pep:`443`).
125* New :mod:`pickle` :ref:`protocol 4 <whatsnew-protocol-4>` (:pep:`3154`).
126* :ref:`SHA-3 (Keccak) support <whatsnew-sha3>` for :mod:`hashlib`
127 (:issue:`16113`).
128* :ref:`TLSv1.1 and TLSv1.2 support <whatsnew-tls-11-12>` for :mod:`ssl`
129 (:issue:`16692`).
R David Murrayac186222013-12-20 17:23:57 -0500130* :mod:`multiprocessing` now has :ref:`an option to avoid using os.fork
131 on Unix <whatsnew-multiprocessing-no-fork>` (:issue:`8713`).
R David Murray6adb4542013-12-20 13:10:43 -0500132* :mod:`email` has a new submodule, :mod:`~email.contentmanager`, and
133 a new :mod:`~email.message.Message` subclass
R David Murray26b80cfd2013-12-20 17:26:52 -0500134 (:class:`~email.contentmanager.EmailMessage`) that :ref:`simplify MIME
R David Murray8d856782013-12-23 10:28:57 -0500135 handling <whatsnew_email_contentmanager>` (:issue:`18891`).
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200136
Nick Coghlan367df122013-10-27 01:57:34 +1000137CPython implementation improvements:
Georg Brandlb80f5112012-09-30 09:11:58 +0200138
R David Murraya93ca972013-12-22 14:10:21 -0500139* :ref:`Safe object finalization <whatsnew-pep-442>` (:pep:`442`).
R David Murrayca794612013-12-22 14:05:11 -0500140* Leveraging :pep:`442`, :ref:`module globals are no longer set to None
141 during finalization <whatsnew-pep-442>`, in most cases (:issue:`18214`).
R David Murraya93ca972013-12-22 14:10:21 -0500142* :ref:`Configurable memory allocators <whatsnew-pep-445>` (:pep:`445`).
143* :ref:`Secure and interchangeable hash algorithm <whatsnew-pep-456>`
144 (:pep:`456`).
145* :ref:`Argument Clinic <whatsnew-pep-436>` (:pep:`436`).
R David Murray8f7664a2013-12-22 20:40:11 -0500146* The :mod:`marshal` format has been made :ref:`more compact and efficient
147 <whatsnew-marshal-3>` (:issue:`16475`).
Georg Brandlb80f5112012-09-30 09:11:58 +0200148
R David Murray347f9c72013-12-23 21:30:06 -0500149Please read on for a comprehensive list of user-facing changes, including many
150other smaller improvements, CPython optimizations, deprecations, and potential
151porting issues.
Georg Brandlb80f5112012-09-30 09:11:58 +0200152
Nick Coghland0cf0632013-11-11 22:11:55 +1000153
R David Murraye7cf6782013-12-24 14:51:25 -0500154New Expected Features for Python Implementations
R David Murray809487e2013-12-22 20:49:40 -0500155================================================
156
R David Murray68790662013-12-23 11:17:51 -0500157.. _whatsnew-pep-453:
158
R David Murraye7cf6782013-12-24 14:51:25 -0500159PEP 453: Explicit Bootstrapping of PIP in Python Installations
R David Murray809487e2013-12-22 20:49:40 -0500160--------------------------------------------------------------
Nick Coghland0cf0632013-11-11 22:11:55 +1000161
162The new :mod:`ensurepip` module (defined in :pep:`453`) provides a standard
163cross-platform mechanism to boostrap the pip installer into Python
164installations and virtual environments.
165
Nick Coghlan7bc4b3b2013-11-23 11:59:40 +1000166The :mod:`venv` module and the :command:`pyvenv` utility make use of this
167module to make ``pip`` readily available in virtual environments. When
168using the command line interface, ``pip`` is installed by default, while
169for the module API installation of ``pip`` must be requested explicitly.
170
171For CPython source builds on POSIX systems, the ``make install`` and
172``make altinstall`` commands bootstrap ``pip`` by default. This behaviour
173can be controlled through configure options, and overridden through
174Makefile options.
175
Ned Deily44a0db02013-11-22 22:39:09 -0800176On Windows and Mac OS X, the CPython installers now offer the option to
177install ``pip`` along with CPython itself.
Nick Coghlan7bc4b3b2013-11-23 11:59:40 +1000178
R David Murray68790662013-12-23 11:17:51 -0500179As `discussed in the PEP`__, platform packagers may choose not to install
180``pip`` by default, as long as the command ``pip``, when invoked, provides
181clear and simple directions on how to install ``pip`` on the platform.
182
183__ http://www.python.org/dev/peps/pep-0453/#recommendations-for-downstream-distributors
184
Nick Coghland0cf0632013-11-11 22:11:55 +1000185.. note::
186
Nick Coghlan7bc4b3b2013-11-23 11:59:40 +1000187 The implementation of PEP 453 is still a work in progress. Refer to
188 :issue:`19347` for the progress on additional steps:
Nick Coghland0cf0632013-11-11 22:11:55 +1000189
Nick Coghlan7bc4b3b2013-11-23 11:59:40 +1000190 * Having the binary installers install ``pip`` by default
191 * Recommending the use of ``pip`` in the "Installing Python Module"
192 documentation.
Nick Coghland0cf0632013-11-11 22:11:55 +1000193
194.. seealso::
195
R David Murray061efb12013-12-24 12:35:59 -0500196 :pep:`453` -- Explicit bootstrapping of pip in Python installations
Nick Coghland0cf0632013-11-11 22:11:55 +1000197 PEP written by Donald Stufft and Nick Coghlan, implemented by
Nick Coghlan7bc4b3b2013-11-23 11:59:40 +1000198 Donald Stufft, Nick Coghlan, Martin von Löwis and Ned Deily.
Nick Coghland0cf0632013-11-11 22:11:55 +1000199
200
R David Murrayf9909c22013-12-20 14:50:12 -0500201.. _whatsnew-pep-446:
Victor Stinnerdaf45552013-08-28 00:53:59 +0200202
R David Murraye7cf6782013-12-24 14:51:25 -0500203PEP 446: Make Newly Created File Descriptors Non-Inheritable
R David Murray809487e2013-12-22 20:49:40 -0500204------------------------------------------------------------
Victor Stinnerdaf45552013-08-28 00:53:59 +0200205
Nick Coghlan367df122013-10-27 01:57:34 +1000206:pep:`446` makes newly created file descriptors :ref:`non-inheritable
Georg Brandl5642ff92013-09-15 10:37:57 +0200207<fd_inheritance>`. New functions and methods:
Victor Stinnerdaf45552013-08-28 00:53:59 +0200208
209* :func:`os.get_inheritable`, :func:`os.set_inheritable`
210* :func:`os.get_handle_inheritable`, :func:`os.set_handle_inheritable`
211* :meth:`socket.socket.get_inheritable`, :meth:`socket.socket.set_inheritable`
212
Antoine Pitrou796564c2013-07-30 19:59:21 +0200213.. seealso::
214
R David Murray061efb12013-12-24 12:35:59 -0500215 :pep:`446` -- Make newly created file descriptors non-inheritable
Nick Coghlan367df122013-10-27 01:57:34 +1000216 PEP written and implemented by Victor Stinner.
Antoine Pitrou796564c2013-07-30 19:59:21 +0200217
Georg Brandlb80f5112012-09-30 09:11:58 +0200218
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000219.. _codec-handling-improvements:
220
R David Murraye7cf6782013-12-24 14:51:25 -0500221Improvements to Codec Handling
R David Murray809487e2013-12-22 20:49:40 -0500222------------------------------
Nick Coghlan8b097b42013-11-13 23:49:21 +1000223
224Since it was first introduced, the :mod:`codecs` module has always been
225intended to operate as a type-neutral dynamic encoding and decoding
226system. However, its close coupling with the Python text model, especially
227the type restricted convenience methods on the builtin :class:`str`,
228:class:`bytes` and :class:`bytearray` types, has historically obscured that
229fact.
230
231As a key step in clarifying the situation, the :meth:`codecs.encode` and
232:meth:`codecs.decode` convenience functions are now properly documented in
233Python 2.7, 3.3 and 3.4. These functions have existed in the :mod:`codecs`
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000234module (and have been covered by the regression test suite) since Python 2.4,
Nick Coghlan8b097b42013-11-13 23:49:21 +1000235but were previously only discoverable through runtime introspection.
236
237Unlike the convenience methods on :class:`str`, :class:`bytes` and
238:class:`bytearray`, these convenience functions support arbitrary codecs
239in both Python 2 and Python 3, rather than being limited to Unicode text
240encodings (in Python 3) or ``basestring`` <-> ``basestring`` conversions
241(in Python 2).
242
Nick Coghlan8afc8f62013-11-22 23:00:22 +1000243In Python 3.4, the interpreter is able to identify the known non-text
244encodings provided in the standard library and direct users towards these
245general purpose convenience functions when appropriate::
Nick Coghlan8b097b42013-11-13 23:49:21 +1000246
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000247 >>> b"abcdef".decode("hex")
Nick Coghlan8b097b42013-11-13 23:49:21 +1000248 Traceback (most recent call last):
249 File "<stdin>", line 1, in <module>
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000250 LookupError: 'hex' is not a text encoding; use codecs.decode() to handle arbitrary codecs
Nick Coghlan8b097b42013-11-13 23:49:21 +1000251
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000252 >>> "hello".encode("rot13")
Nick Coghlan8b097b42013-11-13 23:49:21 +1000253 Traceback (most recent call last):
254 File "<stdin>", line 1, in <module>
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000255 LookupError: 'rot13' is not a text encoding; use codecs.encode() to handle arbitrary codecs
Nick Coghlan8b097b42013-11-13 23:49:21 +1000256
257In a related change, whenever it is feasible without breaking backwards
258compatibility, exceptions raised during encoding and decoding operations
259will be wrapped in a chained exception of the same type that mentions the
260name of the codec responsible for producing the error::
261
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000262 >>> import codecs
263
264 >>> codecs.decode(b"abcdefgh", "hex")
Nick Coghlan8afc8f62013-11-22 23:00:22 +1000265 binascii.Error: Non-hexadecimal digit found
Nick Coghlan8b097b42013-11-13 23:49:21 +1000266
267 The above exception was the direct cause of the following exception:
268
269 Traceback (most recent call last):
270 File "<stdin>", line 1, in <module>
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000271 binascii.Error: decoding with 'hex' codec failed (Error: Non-hexadecimal digit found)
Nick Coghlan8b097b42013-11-13 23:49:21 +1000272
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000273 >>> codecs.encode("hello", "bz2")
Nick Coghlan8b097b42013-11-13 23:49:21 +1000274 TypeError: 'str' does not support the buffer interface
275
276 The above exception was the direct cause of the following exception:
277
278 Traceback (most recent call last):
279 File "<stdin>", line 1, in <module>
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000280 TypeError: encoding with 'bz2' codec failed (TypeError: 'str' does not support the buffer interface)
Nick Coghlan8b097b42013-11-13 23:49:21 +1000281
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000282Finally, as the examples above show, these improvements have permitted
283the restoration of the convenience aliases for the non-Unicode codecs that
284were themselves restored in Python 3.2. This means that encoding binary data
285to and from its hexadecimal representation (for example) can now be written
286as::
287
288 >>> from codecs import encode, decode
289 >>> encode(b"hello", "hex")
290 b'68656c6c6f'
291 >>> decode(b"68656c6c6f", "hex")
292 b'hello'
293
294The binary and text transforms provided in the standard library are detailed
295in :ref:`binary-transforms` and :ref:`text-transforms`.
296
R David Murray9217dad2013-12-23 21:08:28 -0500297(Contributed by Nick Coghlan in :issue:`7475`, , :issue:`17827`,
Nick Coghlan9c1aed82013-11-23 11:13:36 +1000298:issue:`17828` and :issue:`19619`)
Nick Coghlan8b097b42013-11-13 23:49:21 +1000299
R David Murray809487e2013-12-22 20:49:40 -0500300.. _whatsnew-pep-451:
Eric Snowb523f842013-11-22 09:05:39 -0700301
302PEP 451: A ModuleSpec Type for the Import System
R David Murray809487e2013-12-22 20:49:40 -0500303------------------------------------------------
Eric Snowb523f842013-11-22 09:05:39 -0700304
R David Murrayf85b2a82013-12-22 21:06:13 -0500305:pep:`451` provides an encapsulation of the information about a module that the
306import machinery will use to load it (that is, a module specification). This
307helps simplify both the import implementation and several import-related APIs.
308The change is also a stepping stone for `several future import-related
309improvements`__.
Eric Snowb523f842013-11-22 09:05:39 -0700310
R David Murraye9b74d42013-12-22 21:05:04 -0500311__ https://mail.python.org/pipermail/python-dev/2013-November/130111.html
Eric Snowb523f842013-11-22 09:05:39 -0700312
313The public-facing changes from the PEP are entirely backward-compatible.
R David Murrayf85b2a82013-12-22 21:06:13 -0500314Furthermore, they should be transparent to everyone but importer authors. Key
315finder and loader methods have been deprecated, but they will continue working.
316New importers should use the new methods described in the PEP. Existing
317importers should be updated to implement the new methods.
Eric Snowb523f842013-11-22 09:05:39 -0700318
Nick Coghlan8b097b42013-11-13 23:49:21 +1000319
Georg Brandlb80f5112012-09-30 09:11:58 +0200320Other Language Changes
R David Murray809487e2013-12-22 20:49:40 -0500321----------------------
Georg Brandlb80f5112012-09-30 09:11:58 +0200322
323Some smaller changes made to the core Python language are:
324
Ezio Melotti34808e22013-10-12 16:36:13 +0300325* Unicode database updated to UCD version 6.3.
Georg Brandlb80f5112012-09-30 09:11:58 +0200326
R David Murray9a2f1392013-06-28 13:31:19 -0400327* :func:`min` and :func:`max` now accept a *default* argument that can be used
328 to specify the value they return if the iterable they are evaluating has no
329 elements. Contributed by Julian Berman in :issue:`18111`.
Georg Brandlb80f5112012-09-30 09:11:58 +0200330
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200331* Module objects are now :mod:`weakref`'able.
332
Nick Coghlan0acceb72013-10-20 13:22:21 +1000333* Module ``__file__`` attributes (and related values) should now always
334 contain absolute paths by default, with the sole exception of
335 ``__main__.__file__`` when a script has been executed directly using
336 a relative path (Contributed by Brett Cannon in :issue:`18416`).
337
Serhiy Storchaka58cf6072013-11-19 11:32:41 +0200338* Now all the UTF-\* codecs (except UTF-7) reject surrogates during both
339 encoding and decoding unless the ``surrogatepass`` error handler is used,
340 with the exception of the UTF-16 decoder that accepts valid surrogate pairs,
341 and the UTF-16 encoder that produces them while encoding non-BMP characters.
342 Contributed by Victor Stinner, Kang-Hao (Kenny) Lu and Serhiy Storchaka in
343 :issue:`12892`.
344
Georg Brandlb80f5112012-09-30 09:11:58 +0200345
346New Modules
347===========
348
Nick Coghlan0acceb72013-10-20 13:22:21 +1000349
R David Murray9217dad2013-12-23 21:08:28 -0500350.. _whatsnew-asyncio:
351
Nick Coghlan0acceb72013-10-20 13:22:21 +1000352asyncio
353-------
354
355The new :mod:`asyncio` module (defined in :pep:`3156`) provides a standard
356pluggable event loop model for Python, providing solid asynchronous IO
357support in the standard library, and making it easier for other event loop
358implementations to interoperate with the standard library and each other.
359
360For Python 3.4, this module is considered a :term:`provisional API`.
361
Nick Coghlan367df122013-10-27 01:57:34 +1000362.. seealso::
363
R David Murray061efb12013-12-24 12:35:59 -0500364 :pep:`3156` -- Asynchronous IO Support Rebooted: the "asyncio" Module
Nick Coghlan367df122013-10-27 01:57:34 +1000365 PEP written and implementation led by Guido van Rossum.
366
R David Murray68790662013-12-23 11:17:51 -0500367
R David Murray9217dad2013-12-23 21:08:28 -0500368.. _whatsnew-ensurepip:
R David Murray68790662013-12-23 11:17:51 -0500369
370ensurepip
371---------
372
373The new :mod:`ensurepip` module is the primary infrastructure for the
374:pep:`453` implementation. In the normal course of events end users will not
375need to interact with this module, but it can be used to manually bootstrap
376``pip`` if the automated bootstrapping into an installation or virtual
377environment was declined.
378
379:mod:`ensurepip` includes a bundled copy of ``pip``, up-to-date as of the first
380release candidate of the release of CPython with which it ships (this applies
381to both maintenance releases and feature releases). ``ensurepip`` does not
382access the internet. (If the installation has Internet access, it is of course
383possible to upgrade ``pip`` to a release more recent than the bundled ``pip``
384by using the bundled ``pip`` command itself once it is installed.)
385
386The module is named *ensure*\ pip because if called when ``pip`` is already
387installed, it does nothing. It also has an ``--upgrade`` option that will
388cause it to install the bundled copy of ``pip`` if the existing installed
389version of ``pip`` is older than the bundled copy.
390
391
R David Murray9217dad2013-12-23 21:08:28 -0500392.. _whatsnew-enum:
393
Nick Coghlan0acceb72013-10-20 13:22:21 +1000394enum
395----
396
Nick Coghlan367df122013-10-27 01:57:34 +1000397The new :mod:`enum` module (defined in :pep:`435`) provides a standard
398implementation of enumeration types, allowing other modules (such as
399:mod:`socket`) to provide more informative error messages and better
400debugging support by replacing opaque integer constants with backwards
401compatible enumeration values.
402
403.. seealso::
404
R David Murray061efb12013-12-24 12:35:59 -0500405 :pep:`435` -- Adding an Enum type to the Python standard library
Nick Coghlan367df122013-10-27 01:57:34 +1000406 PEP written by Barry Warsaw, Eli Bendersky and Ethan Furman,
407 implemented by Ethan Furman.
Nick Coghlan0acceb72013-10-20 13:22:21 +1000408
409
R David Murray9217dad2013-12-23 21:08:28 -0500410.. _whatsnew-pathlib:
411
Antoine Pitrou31119e42013-11-22 17:38:12 +0100412pathlib
413-------
414
415The new :mod:`pathlib` module offers classes representing filesystem paths
416with semantics appropriate for different operating systems. Path classes are
417divided between *pure paths*, which provide purely computational operations
418without I/O, and *concrete paths*, which inherit from pure paths but also
419provide I/O operations.
420
421For Python 3.4, this module is considered a :term:`provisional API`.
422
423.. seealso::
424
R David Murray061efb12013-12-24 12:35:59 -0500425 :pep:`428` -- The pathlib module -- object-oriented filesystem paths
Antoine Pitrou31119e42013-11-22 17:38:12 +0100426 PEP written and implemented by Antoine Pitrou.
427
428
R David Murrayf9976e72013-12-23 10:32:02 -0500429.. _whatsnew-selectors:
430
Charles-François Natali243d8d82013-09-04 19:02:49 +0200431selectors
432---------
Georg Brandlb80f5112012-09-30 09:11:58 +0200433
Nick Coghlan0acceb72013-10-20 13:22:21 +1000434The new :mod:`selectors` module (created as part of implementing :pep:`3156`)
435allows high-level and efficient I/O multiplexing, built upon the
436:mod:`select` module primitives.
437
438
R David Murray9217dad2013-12-23 21:08:28 -0500439.. _whatsnew-statistics:
440
Nick Coghlan0acceb72013-10-20 13:22:21 +1000441statistics
442----------
443
444The new :mod:`statistics` module (defined in :pep:`450`) offers some core
445statistics functionality directly in the standard library. This module
446supports calculation of the mean, median, mode, variance and standard
447deviation of a data series.
Georg Brandlb80f5112012-09-30 09:11:58 +0200448
Nick Coghlan367df122013-10-27 01:57:34 +1000449.. seealso::
450
R David Murray061efb12013-12-24 12:35:59 -0500451 :pep:`450` -- Adding A Statistics Module To The Standard Library
Nick Coghlan367df122013-10-27 01:57:34 +1000452 PEP written and implemented by Steven D'Aprano
453
R David Murray9217dad2013-12-23 21:08:28 -0500454.. _whatsnew-tracemalloc:
Georg Brandlb80f5112012-09-30 09:11:58 +0200455
Victor Stinnerd2736af2013-11-25 09:40:27 +0100456tracemalloc
457-----------
458
459The new :mod:`tracemalloc` module (defined in :pep:`454`) is a debug tool to
460trace memory blocks allocated by Python. It provides the following information:
461
462* Traceback where an object was allocated
463* Statistics on allocated memory blocks per filename and per line number:
464 total size, number and average size of allocated memory blocks
465* Compute the differences between two snapshots to detect memory leaks
466
467.. seealso::
468
R David Murray061efb12013-12-24 12:35:59 -0500469 :pep:`454` -- Add a new tracemalloc module to trace Python memory allocations
Victor Stinnerd2736af2013-11-25 09:40:27 +0100470 PEP written and implemented by Victor Stinner
471
472
Georg Brandlb80f5112012-09-30 09:11:58 +0200473Improved Modules
474================
475
R David Murray6e390152013-12-24 22:28:04 -0500476
R David Murray3edcc782013-12-24 16:13:32 -0500477abc
478---
479
480New function :func:`abc.get_cache_token` can be used to know when to invalidate
481caches that are affected by changes in the object graph. (Contributed
482by Łukasz Langa in :issue:`16832`.)
R David Murray72420ff2013-12-24 10:46:44 -0500483
R David Murray6e390152013-12-24 22:28:04 -0500484
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200485aifc
486----
487
488The :meth:`~aifc.getparams` method now returns a namedtuple rather than a
489plain tuple. (Contributed by Claudiu Popa in :issue:`17818`.)
490
491
Serhiy Storchakaeaea5e92013-10-19 21:10:46 +0300492audioop
493-------
494
495Added support for 24-bit samples (:issue:`12866`).
496
Serhiy Storchaka3062c9a2013-11-23 22:26:01 +0200497Added the :func:`~audioop.byteswap` function to convert big-endian samples
498to little-endian and vice versa (:issue:`19641`).
499
Serhiy Storchakaeaea5e92013-10-19 21:10:46 +0300500
Nick Coghland4fdbcc2013-11-14 00:24:31 +1000501base64
502------
503
504The encoding and decoding functions in :mod:`base64` now accept any
505:term:`bytes-like object` in cases where it previously required a
Georg Brandled007d52013-11-24 16:09:26 +0100506:class:`bytes` or :class:`bytearray` instance (:issue:`17839`).
Nick Coghland4fdbcc2013-11-14 00:24:31 +1000507
508
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200509colorsys
510--------
511
512The number of digits in the coefficients for the RGB --- YIQ conversions have
513been expanded so that they match the FCC NTSC versions. The change in
514results should be less than 1% and may better match results found elsewhere.
515
R David Murray8e37d5d2013-04-13 14:49:48 -0400516
Nick Coghlanb4534ae2013-10-13 23:23:08 +1000517contextlib
518----------
519
Nick Coghlan240f86d2013-10-17 23:40:57 +1000520The new :class:`contextlib.suppress` context manager helps to clarify the
521intent of code that deliberately suppresses exceptions from a single
522statement. (Contributed by Raymond Hettinger in :issue:`15806` and
523Zero Piraeus in :issue:`19266`)
524
Victor Stinner6633c392013-10-21 13:27:11 +0200525The new :func:`contextlib.redirect_stdout` context manager makes it easier
Nick Coghlanb4534ae2013-10-13 23:23:08 +1000526for utility scripts to handle inflexible APIs that don't provide any
527options to retrieve their output as a string or direct it to somewhere
Nick Coghlan0acceb72013-10-20 13:22:21 +1000528other than :data:`sys.stdout`. In conjunction with :class:`io.StringIO`,
529this context manager is also useful for checking expected output from
530command line utilities. (Contribute by Raymond Hettinger in :issue:`15805`)
531
532The :mod:`contextlib` documentation has also been updated to include a
533:ref:`discussion <single-use-reusable-and-reentrant-cms>` of the
534differences between single use, reusable and reentrant context managers.
Nick Coghlanb4534ae2013-10-13 23:23:08 +1000535
536
Nick Coghlanb39fd0c2013-05-06 23:59:20 +1000537dis
538---
539
Serhiy Storchaka98b28fd2013-10-13 23:12:09 +0300540The :mod:`dis` module is now built around an :class:`~dis.Instruction` class
541that provides details of individual bytecode operations and a
542:func:`~dis.get_instructions` iterator that emits the Instruction stream for a
Nick Coghlanb39fd0c2013-05-06 23:59:20 +1000543given piece of Python code. The various display tools in the :mod:`dis`
544module have been updated to be based on these new components.
545
546The new :class:`dis.Bytecode` class provides an object-oriented API for
547inspecting bytecode, both in human-readable form and for iterating over
548instructions.
549
Nick Coghlan50c48b82013-11-23 00:57:00 +1000550(Contributed by Nick Coghlan, Ryan Kelly and Thomas Kluyver in :issue:`11816`
551and Claudiu Popa in :issue:`17916`)
Nick Coghlanb39fd0c2013-05-06 23:59:20 +1000552
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200553
R David Murray5a9d7062012-11-21 15:09:21 -0500554doctest
555-------
556
R David Murray5707d502013-06-23 14:24:13 -0400557Added :data:`~doctest.FAIL_FAST` flag to halt test running as soon as the first
558failure is detected. (Contributed by R. David Murray and Daniel Urban in
559:issue:`16522`.)
560
561Updated the doctest command line interface to use :mod:`argparse`, and added
562``-o`` and ``-f`` options to the interface. ``-o`` allows doctest options to
563be specified on the command line, and ``-f`` is a shorthand for ``-o
564FAIL_FAST`` (to parallel the similar option supported by the :mod:`unittest`
565CLI). (Contributed by R. David Murray in :issue:`11390`.)
Georg Brandlb80f5112012-09-30 09:11:58 +0200566
R David Murray8e37d5d2013-04-13 14:49:48 -0400567
R David Murraybb17d2b2013-08-09 16:15:28 -0400568email
569-----
570
571:meth:`~email.message.Message.as_string` now accepts a *policy* argument to
572override the default policy of the message when generating a string
573representation of it. This means that ``as_string`` can now be used in more
574circumstances, instead of having to create and use a :mod:`~email.generator` in
575order to pass formatting parameters to its ``flatten`` method.
576
577New method :meth:`~email.message.Message.as_bytes` added to produce a bytes
578representation of the message in a fashion similar to how ``as_string``
579produces a string representation. It does not accept the *maxheaderlen*
580argument, but does accept the *unixfrom* and *policy* arguments. The
581:class:`~email.message.Message` :meth:`~email.message.Message.__bytes__` method
582calls it, meaning that ``bytes(mymsg)`` will now produce the intuitive
583result: a bytes object containing the fully formatted message.
584
585(Contributed by R. David Murray in :issue:`18600`.)
586
R David Murray26b80cfd2013-12-20 17:26:52 -0500587.. _whatsnew_email_contentmanager:
588
R David Murray3da240f2013-10-16 22:48:40 -0400589A pair of new subclasses of :class:`~email.message.Message` have been added,
590along with a new sub-module, :mod:`~email.contentmanager`. All documentation
591is currently in the new module, which is being added as part of the new
Nick Coghlan240f86d2013-10-17 23:40:57 +1000592:term:`provisional <provisional package>` email API. These classes provide a
R David Murray3da240f2013-10-16 22:48:40 -0400593number of new methods that make extracting content from and inserting content
594into email messages much easier. See the :mod:`~email.contentmanager`
595documentation for details.
596
597These API additions complete the bulk of the work that was planned as part of
598the email6 project. The currently provisional API is scheduled to become final
599in Python 3.5 (possibly with a few minor additions in the area of error
600handling).
601
602(Contributed by R. David Murray in :issue:`18891`.)
603
R David Murraybb17d2b2013-08-09 16:15:28 -0400604
Victor Stinner854ffcb2013-06-21 00:36:30 +0200605functools
606---------
607
Nick Coghlanf4cb48a2013-11-03 16:41:46 +1000608The new :func:`~functools.partialmethod` descriptor bring partial argument
609application to descriptors, just as :func:`~functools.partial` provides
610for normal callables. The new descriptor also makes it easier to get
611arbitrary callables (including :func:`~functools.partial` instances)
612to behave like normal instance methods when included in a class definition.
613
614(Contributed by Alon Horev and Nick Coghlan in :issue:`4331`)
615
R David Murray0a102162013-12-20 15:00:54 -0500616.. _whatsnew-singledispatch:
617
Nick Coghlanf4cb48a2013-11-03 16:41:46 +1000618The new :func:`~functools.singledispatch` decorator brings support for
619single-dispatch generic functions to the Python standard library. Where
620object oriented programming focuses on grouping multiple operations on a
621common set of data into a class, a generic function focuses on grouping
622multiple implementations of an operation that allows it to work with
623*different* kinds of data.
624
625.. seealso::
626
R David Murray061efb12013-12-24 12:35:59 -0500627 :pep:`443` -- Single-dispatch generic functions
Nick Coghlanf4cb48a2013-11-03 16:41:46 +1000628 PEP written and implemented by Łukasz Langa.
Victor Stinner854ffcb2013-06-21 00:36:30 +0200629
Nick Coghlane8c45d62013-07-28 20:00:01 +1000630
Christian Heimese92ef132013-10-13 00:52:43 +0200631hashlib
632-------
633
634New :func:`hashlib.pbkdf2_hmac` function.
Christian Heimese92ef132013-10-13 00:52:43 +0200635(Contributed by Christian Heimes in :issue:`18582`)
636
R David Murraycde1a062013-12-20 16:33:52 -0500637.. _whatsnew-sha3:
638
639New :ref:`hash algorithms <hash-algorithms>` ``sah3_224()``, ``sha3_256()``,
640``sha3_384()``, and ``sha3_512()``. (Contributed by Christian Heimes in
641:issue:`16113`.)
642
Christian Heimese92ef132013-10-13 00:52:43 +0200643
Ezio Melotti250a06c2013-11-25 06:18:47 +0200644html
645----
646
647Added a new :func:`html.unescape` function that converts HTML5 character
648references to the corresponding Unicode characters.
Ezio Melotti250a06c2013-11-25 06:18:47 +0200649(Contributed by Ezio Melotti in :issue:`2927`)
650
651Added a new *convert_charrefs* keyword argument to
652:class:`~html.parser.HTMLParser` that, when ``True``, automatically converts
653all character references. For backward-compatibility, its value defaults
654to ``False``, but it will change to ``True`` in future versions, so you
655are invited to set it explicitly and update your code to use this new feature.
Ezio Melotti250a06c2013-11-25 06:18:47 +0200656(Contributed by Ezio Melotti in :issue:`13633`)
657
658The *strict* argument of :class:`~html.parser.HTMLParser` is now deprecated.
Ezio Melotti250a06c2013-11-25 06:18:47 +0200659(Contributed by Ezio Melotti in :issue:`15114`)
660
661
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200662inspect
663-------
664
Nick Coghlanf94a16b2013-09-22 22:46:49 +1000665
Nick Coghlan367df122013-10-27 01:57:34 +1000666The inspect module now offers a basic :ref:`command line interface
667<inspect-module-cli>` to quickly display source code and other
668information for modules, classes and functions. (Contributed by Claudiu Popa
669and Nick Coghlan in :issue:`18626`)
Nick Coghlanf94a16b2013-09-22 22:46:49 +1000670
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200671:func:`~inspect.unwrap` makes it easy to unravel wrapper function chains
672created by :func:`functools.wraps` (and any other API that sets the
Nick Coghlan367df122013-10-27 01:57:34 +1000673``__wrapped__`` attribute on a wrapper function). (Contributed by
674Daniel Urban, Aaron Iles and Nick Coghlan in :issue:`13266`)
675
676As part of the implementation of the new :mod:`enum` module, the
677:mod:`inspect` module now has substantially better support for custom
678``__dir__`` methods and dynamic class attributes provided through
679metaclasses (Contributed by Ethan Furman in :issue:`18929` and
680:issue:`19030`)
681
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200682
R David Murray8f7664a2013-12-22 20:40:11 -0500683.. _whatsnew-marshal-3:
684
685marshal
686-------
687
688The default :mod:`marshal` version has been bumped to 3. The code implementing
689the new version restores the Python2 behavior of recording only one copy of
690interned strings and preserving the interning on deserialization, and extends
691this "one copy" ability to any object type (including handling recursive
692references). This reduces both the size of ``.pyc`` files and the amount of
693memory a module occupies in memory when it is loaded from a ``.pyc`` (or
694``.pyo``) file. (Contributed by Kristján Valur Jónsson in :issue:`16475`.)
695
696
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200697mmap
698----
699
700mmap objects can now be weakref'ed.
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200701(Contributed by Valerie Lambert in :issue:`4885`.)
702
703
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100704multiprocessing
705---------------
706
R David Murrayac186222013-12-20 17:23:57 -0500707.. _whatsnew-multiprocessing-no-fork:
708
709On Unix, two new :ref:`start methods <multiprocessing-start-methods>`
710(``spawn`` and ``forkserver``) have been added for starting processes using
711:mod:`multiprocessing`. These make the mixing of processes with threads more
712robust, and the ``spawn`` method matches the semantics that multiprocessing has
713always used on Windows. (Contributed by Richard Oudkerk in :issue:`8713`).
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100714
715Also, except when using the old *fork* start method, child processes
R David Murrayac186222013-12-20 17:23:57 -0500716will no longer inherit unneeded handles/file descriptors from their parents
717(part of :issue:`8713`).
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100718
Nick Coghlan9a767352013-12-17 22:17:26 +1000719:mod:`multiprocessing` now relies on :mod:`runpy` (which implements the
720``-m`` switch) to initialise ``__main__`` appropriately in child processes
721when using the ``spawn`` or ``forkserver`` start methods. This resolves some
722edge cases where combining multiprocessing, the ``-m`` command line switch
723and explicit relative imports could cause obscure failures in child
724processes. (Contributed by Nick Coghlan in :issue:`19946`)
725
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100726
Victor Stinnerdaf45552013-08-28 00:53:59 +0200727os
728--
729
Georg Brandlc6ebbef2013-09-16 04:03:12 +0200730New functions to get and set the :ref:`inheritable flag <fd_inheritance>` of a file
Victor Stinnerdaf45552013-08-28 00:53:59 +0200731descriptors or a Windows handle:
732
733* :func:`os.get_inheritable`, :func:`os.set_inheritable`
734* :func:`os.get_handle_inheritable`, :func:`os.set_handle_inheritable`
735
736
R David Murray78d692f2013-10-10 17:23:26 -0400737pdb
738---
739
740The ``print`` command has been removed from :mod:`pdb`, restoring access to the
741``print`` function.
742
743Rationale: Python2's ``pdb`` did not have a ``print`` command; instead,
744entering ``print`` executed the ``print`` statement. In Python3 ``print`` was
745mistakenly made an alias for the pdb :pdbcmd:`p` command. ``p``, however,
746prints the ``repr`` of its argument, not the ``str`` like the Python2 ``print``
747command did. Worse, the Python3 ``pdb print`` command shadowed the Python3
748``print`` function, making it inaccessible at the ``pdb`` prompt.
749
750(Contributed by Connor Osborn in :issue:`18764`.)
751
752
R David Murray809487e2013-12-22 20:49:40 -0500753.. _whatsnew-protocol-4:
754
R David Murray5ea95242013-12-24 15:59:57 -0500755pickle
R David Murray809487e2013-12-22 20:49:40 -0500756------
757
758protocol 4
759
760:mod:`pickle` now supports (but does not use by default) a new pickle protocol,
761protocol 4. This new protocol addresses a number of issues that were present
762in previous protocols, such as the serialization of nested classes, very large
763strings and containers, or classes whose :meth:`__new__` method takes
764keyword-only arguments. It also provides some efficiency improvements.
765
766.. seealso::
767
R David Murray061efb12013-12-24 12:35:59 -0500768 :pep:`3154` -- Pickle protocol 4
R David Murray809487e2013-12-22 20:49:40 -0500769 PEP written by Antoine Pitrou and implemented by Alexandre Vassalotti.
770
771
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200772poplib
773------
774
775New :meth:`~poplib.POP3.stls` method to switch a clear-text POP3 session into
776an encrypted POP3 session.
777
778New :meth:`~poplib.POP3.capa` method to query the capabilities advertised by the
779POP3 server.
780
781(Contributed by Lorenzo Catucci in :issue:`4473`.)
782
783
Serhiy Storchaka7c411a42013-10-02 11:56:18 +0300784pprint
785------
786
Christian Heimese1bfd3e2013-10-21 12:32:21 +0200787The :mod:`pprint` module now supports *compact* mode for formatting long
Serhiy Storchaka7c411a42013-10-02 11:56:18 +0300788sequences (:issue:`19132`).
789
790
R David Murray6e390152013-12-24 22:28:04 -0500791pty
792---
793
794:func:`pty.spawn` now returns the status value from :func:`os.waitpid` on
795the child process, instead of ``None``. (Contributed by Gregory P. Smith.)
796
797
Nick Coghlan367df122013-10-27 01:57:34 +1000798pydoc
799-----
800
801While significant changes have not been made to :mod:`pydoc` directly,
802its handling of custom ``__dir__`` methods and various descriptor
803behaviours has been improved substantially by the underlying changes in
804the :mod:`inspect` module.
805
806
Serhiy Storchaka32eddc12013-11-23 23:20:30 +0200807re
808--
809
810Added :func:`re.fullmatch` function and :meth:`regex.fullmatch` method,
811which anchor the pattern at both ends of the string to match.
812(Contributed by Matthew Barnett in :issue:`16203`.)
813
Ezio Melottidd7e2912013-11-25 23:20:20 +0200814The repr of :ref:`regex objects <re-objects>` now includes the pattern
815and the flags; the repr of :ref:`match objects <match-objects>` now
816includes the start, end, and the part of the string that matched.
Ezio Melottidd7e2912013-11-25 23:20:20 +0200817(Contributed by Serhiy Storchaka in :issue:`13592` and :issue:`17087`.)
818
819
Christian Heimesb7bd5df2013-10-22 11:21:54 +0200820resource
821--------
822
823New :func:`resource.prlimit` function and Linux specific constants.
824(Contributed by Christian Heimes in :issue:`16595` and :issue:`19324`.)
825
R David Murray575fb312013-12-25 23:21:03 -0500826
827shelve
828------
829
830:class:`~shelve.Shelf` instances may now be used in :keyword:`with` statements,
831and will be automatically closed at the end of the :keyword:`with` block.
832(Contributed by Filip Gruszczyński in :issue:`13896`.)
833
834
R David Murray8e37d5d2013-04-13 14:49:48 -0400835smtplib
836-------
837
R David Murray8a345962013-04-14 06:46:35 -0400838:exc:`~smtplib.SMTPException` is now a subclass of :exc:`OSError`, which allows
R David Murray8e37d5d2013-04-13 14:49:48 -0400839both socket level errors and SMTP protocol level errors to be caught in one
840try/except statement by code that only cares whether or not an error occurred.
841(:issue:`2118`).
842
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200843
Victor Stinnerdaf45552013-08-28 00:53:59 +0200844socket
845------
846
Georg Brandl5642ff92013-09-15 10:37:57 +0200847Socket objects have new methods to get or set their :ref:`inheritable flag
848<fd_inheritance>`:
Victor Stinnerdaf45552013-08-28 00:53:59 +0200849
850* :meth:`socket.socket.get_inheritable`, :meth:`socket.socket.set_inheritable`
851
Eli Bendersky34567ec2013-08-31 15:18:48 -0700852The ``socket.AF_*`` and ``socket.SOCK_*`` constants are enumeration values,
853using the new :mod:`enum` module. This allows descriptive reporting during
854debugging, instead of seeing integer "magic numbers".
Victor Stinnerdaf45552013-08-28 00:53:59 +0200855
Christian Heimes24cd4cf2013-06-22 19:31:58 +0200856ssl
857---
858
R David Murray748bad22013-12-20 17:08:39 -0500859.. _whatsnew-tls-11-12:
Christian Heimes24cd4cf2013-06-22 19:31:58 +0200860
R David Murray748bad22013-12-20 17:08:39 -0500861:data:`~ssl.PROTOCOL_TLSv1_1` and :data:`~ssl.PROTOCOL_TLSv1_2` (TLSv1.1 and
862TLSv1.2 support) have been added; support for these protocols is only available if
863Python is linked with OpenSSL 1.0.1 or later. (Contributed by Michele Orrù and
864Antoine Pitrou in :issue:`16692`)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200865
R David Murray748bad22013-12-20 17:08:39 -0500866New diagnostic functions :func:`~ssl.get_default_verify_paths`,
867:meth:`~ssl.SSLContext.cert_store_stats` and
868:meth:`~ssl.SSLContext.get_ca_certs` (Contributed by Christian Heimes
869in :issue:`18143` and :issue:`18147`)
Christian Heimes24cd4cf2013-06-22 19:31:58 +0200870
R David Murray748bad22013-12-20 17:08:39 -0500871Add :func:`ssl.enum_cert_store` to retrieve certificates and CRL from Windows'
872cert store. (Contributed by Christian Heimes in :issue:`17134`.)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200873
874Support for server-side SNI using the new
875:meth:`ssl.SSLContext.set_servername_callback` method.
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200876(Contributed by Daniel Black in :issue:`8109`.)
877
878
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200879stat
880----
881
882The :mod:`stat` module is now backed by a C implementation in :mod:`_stat`. A C
883implementation is required as most of the values aren't standardized and
884platform-dependent. (Contributed by Christian Heimes in :issue:`11016`.)
885
886The module supports new file types: door, event port and whiteout.
887
888
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200889struct
890------
891
892Streaming struct unpacking using :func:`struct.iter_unpack`.
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200893(Contributed by Antoine Pitrou in :issue:`17804`.)
894
895
Serhiy Storchakae06a8962013-09-04 00:43:03 +0300896sunau
897-----
898
899The :meth:`~sunau.getparams` method now returns a namedtuple rather than a
900plain tuple. (Contributed by Claudiu Popa in :issue:`18901`.)
901
Serhiy Storchaka34d20132013-09-05 17:01:53 +0300902:meth:`sunau.open` now supports the context manager protocol (:issue:`18878`).
903
Serhiy Storchakae06a8962013-09-04 00:43:03 +0300904
R David Murrayd17aba72013-12-24 14:46:23 -0500905sys
906---
907
908New function :func:`sys.getallocatedblocks` returns the current number of
909blocks allocated by the interpreter (in CPython with the default
910``--with-pymalloc`` setting, this is allocations made through the
911:c:func:`PyObject_Malloc` API). This can be useful for tracking memory leaks,
912especially if automated via a test suite. (Contributed by Antoine Pitrou
913in :issue:`13390`.)
914
915
Andrew Kuchling173a1572013-09-15 18:15:56 -0400916traceback
917---------
918
919A new :func:`traceback.clear_frames` function takes a traceback object
920and clears the local variables in all of the frames it references,
921reducing the amount of memory consumed (:issue:`1565525`).
922
923
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200924urllib
925------
926
927Add support.for ``data:`` URLs in :mod:`urllib.request`.
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200928(Contributed by Mathias Panzenböck in :issue:`16423`.)
929
930
931unittest
932--------
933
934Support for easy dynamically-generated subtests using the
935:meth:`~unittest.TestCase.subTest` context manager.
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200936(Contributed by Antoine Pitrou in :issue:`16997`.)
937
R David Murray8e37d5d2013-04-13 14:49:48 -0400938
R David Murray575fb312013-12-25 23:21:03 -0500939venv
940----
941
942:mod:`venv` now includes activation scripts for the ``csh`` and ``fish``
943shells (Contributed by Andrew Svetlov in :issue:`15417`.)
944
945
R David Murray671cd322013-04-10 12:31:43 -0400946wave
947----
948
949The :meth:`~wave.getparams` method now returns a namedtuple rather than a
950plain tuple. (Contributed by Claudiu Popa in :issue:`17487`.)
951
R David Murrayc91d5ee2013-07-31 13:46:08 -0400952:meth:`wave.open` now supports the context manager protocol. (Contributed
953by Claudiu Popa in :issue:`17616`.)
954
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200955
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200956weakref
957-------
958
959New :class:`~weakref.WeakMethod` class simulates weak references to bound
Nick Coghlanbe57ab82013-09-22 21:26:30 +1000960methods. (Contributed by Antoine Pitrou in :issue:`14631`.)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200961
Nick Coghlanbe57ab82013-09-22 21:26:30 +1000962New :class:`~weakref.finalize` class makes it possible to register a callback
963to be invoked when an object is garbage collected, without needing to
964carefully manage the lifecycle of the weak reference itself. (Contributed by
965Richard Oudkerk in :issue:`15528`)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200966
967
968xml.etree
969---------
970
971Add an event-driven parser for non-blocking applications,
Eli Benderskyb5869342013-08-30 05:51:20 -0700972:class:`~xml.etree.ElementTree.XMLPullParser`.
Eli Benderskyb5869342013-08-30 05:51:20 -0700973(Contributed by Antoine Pitrou in :issue:`17741`.)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200974
R David Murray575fb312013-12-25 23:21:03 -0500975The :mod:`xml.etree.ElementTree` :func:`~xml.etree.ElementTree.tostring` and
976:func:`~xml.etree.ElementTree.tostringlist` functions, and the
977:class:`~xml.etree.ElementTree.ElementTree`
978:meth:`~xml.etree.ElementTree.ElementTree.write` method, now have a
979*short_empty_elements* :ref:`keyword-only parameter <keyword-only_parameter>`
980providing control over whether elements with no content are written in
981abbreviated (``<tag />``) or expanded (``<tag></tag>``) form. (Contributed by
982Ariel Poliak and Serhiy Storchaka in :issue:`14377`.)
983
Christian Tismer59202e52013-10-21 03:59:23 +0200984
985zipfile.PyZipfile
986-----------------
987
988Add a filter function to ignore some packages (tests for instance),
989:meth:`~zipfile.PyZipFile.writepy`.
Christian Tismer59202e52013-10-21 03:59:23 +0200990(Contributed by Christian Tismer in :issue:`19274`.)
991
992
Nick Coghlan367df122013-10-27 01:57:34 +1000993CPython Implementation Changes
994==============================
995
996
R David Murrayc16dfe12013-12-21 12:32:10 -0500997.. _whatsnew-pep-445:
Nick Coghlan367df122013-10-27 01:57:34 +1000998
R David Murraye7cf6782013-12-24 14:51:25 -0500999PEP 445: Customization of CPython Memory Allocators
Nick Coghlan367df122013-10-27 01:57:34 +10001000---------------------------------------------------
1001
1002:pep:`445` adds new C level interfaces to customize memory allocation in
1003the CPython interpreter.
1004
1005.. seealso::
1006
R David Murray061efb12013-12-24 12:35:59 -05001007 :pep:`445` -- Add new APIs to customize Python memory allocators
Nick Coghlan367df122013-10-27 01:57:34 +10001008 PEP written and implemented by Victor Stinner.
1009
1010
R David Murrayc16dfe12013-12-21 12:32:10 -05001011.. _whatsnew-pep-442:
Nick Coghlan367df122013-10-27 01:57:34 +10001012
R David Murraye7cf6782013-12-24 14:51:25 -05001013PEP 442: Safe Object Finalization
Nick Coghlan367df122013-10-27 01:57:34 +10001014---------------------------------
1015
1016:pep:`442` removes the current limitations and quirks of object finalization
1017in CPython. With it, objects with :meth:`__del__` methods, as well as
1018generators with :keyword:`finally` clauses, can be finalized when they are
1019part of a reference cycle.
1020
1021As part of this change, module globals are no longer forcibly set to
1022:const:`None` during interpreter shutdown in most cases, instead relying
R David Murrayca794612013-12-22 14:05:11 -05001023on the normal operation of the cyclic garbage collector. This avoids a
1024whole class of interpreter-shutdown-time errors, usually involving
1025``__del__`` methods, that have plagued Python since the cyclic GC
1026was first introduced.
Nick Coghlan367df122013-10-27 01:57:34 +10001027
1028.. seealso::
1029
R David Murray061efb12013-12-24 12:35:59 -05001030 :pep:`442` -- Safe object finalization
Nick Coghlan367df122013-10-27 01:57:34 +10001031 PEP written and implemented by Antoine Pitrou.
1032
1033
R David Murrayc16dfe12013-12-21 12:32:10 -05001034.. _whatsnew-pep-456:
1035
1036PEP 456: Secure and Interchangeable Hash Algorithm
1037--------------------------------------------------
1038
1039:pep:`456` follows up on earlier security fix work done on Python's hash
1040algorithm to address certain DOS attacks to which public facing APIs backed by
1041dictionary lookups may be subject. (See :issue:`14621` for the start of the
1042current round of improvements.) The PEP unifies CPython's hash code to make it
1043easier for a packager to substitute a different hash algorithm, and switches
1044Python's default implementation to a SipHash implementation on platforms that
1045have a 64 bit data type. Any performance differences in comparison with the
1046older FNV algorithm are trivial.
1047
1048The PEP adds additional fields to the :func:`sys.hash_info` struct sequence to
1049describe the hash algorithm in use by the currently executing binary. Otherwise,
1050the PEP does not alter any existing CPython APIs.
1051
1052
R David Murray6dd18302013-12-24 12:23:56 -05001053.. _whatsnew-pep-436:
1054
1055PEP 436: Argument Clinic
1056------------------------
1057
1058"Argument Clinic" (:pep:`436`) is now part of the CPython build process
1059and can be used to simplify the process of defining and maintaining
1060accurate signatures for builtins and standard library extension modules
1061implemented in C.
1062
1063.. note::
1064 The Argument Clinic PEP is not fully up to date with the state of the
1065 implementation. This has been deemed acceptable by the release manager
1066 and core development team in this case, as Argument Clinic will not
1067 be made available as a public API for third party use in Python 3.4.
1068
1069.. seealso::
1070
R David Murray061efb12013-12-24 12:35:59 -05001071 :pep:`436` -- The Argument Clinic DSL
R David Murray6dd18302013-12-24 12:23:56 -05001072 PEP written and implemented by Larry Hastings.
1073
1074
R David Murraye7cf6782013-12-24 14:51:25 -05001075Other Build and C API Changes
Nick Coghlan367df122013-10-27 01:57:34 +10001076-----------------------------
Georg Brandlb80f5112012-09-30 09:11:58 +02001077
Nick Coghlan7d270ee2013-10-17 22:35:35 +10001078* The new :c:func:`Py_SetStandardStreamEncoding` pre-initialization API
1079 allows applications embedding the CPython interpreter to reliably force
1080 a particular encoding and error handler for the standard streams
1081 (Contributed by Bastien Montagne and Nick Coghlan in :issue:`16129`)
Georg Brandlb80f5112012-09-30 09:11:58 +02001082
Nick Coghlan0acceb72013-10-20 13:22:21 +10001083* Most Python C APIs that don't mutate string arguments are now correctly
1084 marked as accepting ``const char *`` rather than ``char *`` (Contributed
1085 by Serhiy Storchaka in :issue:`1772673`).
1086
R David Murrayd91ba202013-12-24 12:13:44 -05001087* New shell version of ``python-config``; can be used even when a python
1088 interpreter is not available (for example, in cross compilation scenarios).
1089
Georg Brandlb80f5112012-09-30 09:11:58 +02001090
R David Murraye7cf6782013-12-24 14:51:25 -05001091Other Improvements
R David Murraybcaaecf2013-12-23 21:23:36 -05001092==================
1093
1094* Tab-completion is now enabled by default in the interactive interpreter.
1095 (Contributed by Antoine Pitrou and Éric Araujo in :issue:`5845`.)
1096
1097* Invoking the Python interpreter with ``--version`` now outputs the version to
1098 standard output instead of standard error (:issue:`18338`). Similar changes
1099 were made to :mod:`argparse` (:issue:`18920`) and other modules that have
1100 script-like invocation capabilities (:issue:`18922`).
1101
R David Murray72420ff2013-12-24 10:46:44 -05001102* The CPython Windows installer now adds ``.py`` to the :envvar:`PATHEXT`
1103 variable when extensions are registered, allowing users to run a python
1104 script at the windows command prompt by just typing its name without the
1105 ``.py`` extension. (Contributed by Paul Moore in :issue:`18569`.)
1106
R David Murrayd17aba72013-12-24 14:46:23 -05001107* A new ``make`` target `coverage-report
1108 <http://docs.python.org/devguide/coverage.html#measuring-coverage-of-c-code-with-gcov-and-lcov>`_
1109 will build python, run the test suite, and generate an HTML coverage report
1110 for the C codebase using ``gcov`` and `lcov
1111 <http://ltp.sourceforge.net/coverage/lcov.php>`_.
1112
1113* The ``-R`` option to the :ref:`python regression test suite <regrtest>` now
1114 also checks for memory allocation leaks, using
1115 :func:`sys.getallocatedblocks()`. (Contributed by Antoine Pitrou in
1116 :issue:`13390`).
1117
R David Murraybcaaecf2013-12-23 21:23:36 -05001118
R David Murrayd74d09a2013-12-24 15:33:02 -05001119Significant Optimizations
1120=========================
R David Murraybcaaecf2013-12-23 21:23:36 -05001121
1122* The UTF-32 decoder is now 3x to 4x faster.
1123
1124* The cost of hash collisions for sets is now reduced. Each hash table
1125 probe now checks a series of consecutive, adjacent key/hash pairs before
1126 continuing to make random probes through the hash table. This exploits
1127 cache locality to make collision resolution less expensive.
1128
1129 The collision resolution scheme can be described as a hybrid of linear
1130 probing and open addressing. The number of additional linear probes
1131 defaults to nine. This can be changed at compile-time by defining
1132 LINEAR_PROBES to be any value. Set LINEAR_PROBES=0 to turn-off
1133 linear probing entirely.
1134
1135 (Contributed by Raymond Hettinger in :issue:`18771`.)
1136
1137* The interpreter starts about 30% faster. A couple of measures lead to the
1138 speedup. The interpreter loads fewer modules on startup, e.g. the :mod:`re`,
1139 :mod:`collections` and :mod:`locale` modules and their dependencies are no
1140 longer imported by default. The marshal module has been improved to load
1141 compiled Python code faster.
1142
1143 (Contributed by Antoine Pitrou, Christian Heimes and Victor Stinner in
1144 :issue:`19219`, :issue:`19218`, :issue:`19209`, :issue:`19205` and
1145 :issue:`9548`)
1146
R David Murray6e390152013-12-24 22:28:04 -05001147* :class:`bz2.BZ2File` is now as fast or faster than the Python2 version for
1148 most cases. :class:`lzma.LZMAFile` has also been optimized. (Contributed by
1149 Serhiy Storchaka and Nadeem Vawda in :issue:`16034`.)
1150
R David Murraybcaaecf2013-12-23 21:23:36 -05001151
Georg Brandlb80f5112012-09-30 09:11:58 +02001152Deprecated
1153==========
1154
R David Murrayd74d09a2013-12-24 15:33:02 -05001155This section covers various APIs and other features that have been deprecated
1156in Python 3.4, and will be removed in Python 3.5 or later. In most (but not
1157all) cases, using the deprecated APIs will produce a :exc:`DeprecationWarning`
1158when the interpreter is run with deprecation warnings enabled (for example, by
1159using ``-Wd``).
1160
Georg Brandlb80f5112012-09-30 09:11:58 +02001161
R David Murraye7cf6782013-12-24 14:51:25 -05001162Deprecated Python Modules, Functions and Methods
Georg Brandlb80f5112012-09-30 09:11:58 +02001163------------------------------------------------
1164
Terry Jan Reedy2b6c26e2013-03-21 19:36:26 -04001165* :meth:`difflib.SequenceMatcher.isbjunk` and
Andrew Kuchling0d0813a2013-06-15 13:29:09 -04001166 :meth:`difflib.SequenceMatcher.isbpopular` were removed: use ``x in sm.bjunk`` and
1167 ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object.
Georg Brandlb80f5112012-09-30 09:11:58 +02001168
Brett Cannon82b3d6a2013-06-14 22:37:11 -04001169* :func:`importlib.util.module_for_loader` is pending deprecation. Using
1170 :func:`importlib.util.module_to_load` and
1171 :meth:`importlib.abc.Loader.init_module_attrs` allows subclasses of a loader
1172 to more easily customize module loading.
1173
Brett Cannone4f41de2013-06-16 13:13:40 -04001174* The :mod:`imp` module is pending deprecation. To keep compatibility with
1175 Python 2/3 code bases, the module's removal is currently not scheduled.
1176
Brett Cannon1448ecf2013-10-04 11:38:59 -04001177* The :mod:`formatter` module is pending deprecation and is slated for removal
1178 in Python 3.6.
1179
Christian Heimes634919a2013-11-20 17:23:06 +01001180* MD5 as default digestmod for :mod:`hmac` is deprecated. Python 3.6 will
1181 require an explicit digest name or constructor as *digestmod* argument.
1182
Georg Brandlb80f5112012-09-30 09:11:58 +02001183
R David Murraye7cf6782013-12-24 14:51:25 -05001184Deprecated Functions and Types in the C API
Georg Brandlb80f5112012-09-30 09:11:58 +02001185-------------------------------------------
1186
R David Murrayd74d09a2013-12-24 15:33:02 -05001187XXX: None so far
Georg Brandlb80f5112012-09-30 09:11:58 +02001188
1189
R David Murraye7cf6782013-12-24 14:51:25 -05001190Deprecated Features
Georg Brandlb80f5112012-09-30 09:11:58 +02001191-------------------
1192
R David Murray5ea95242013-12-24 15:59:57 -05001193* Running :ref:`idle` with the ``-n`` flag (no subprocess) is deprecated.
1194 However, the feature will not be removed until :issue:`18823` is resolved.
1195
Antoine Pitrou3b2f0f02013-10-25 21:39:26 +02001196* The site module adding a "site-python" directory to sys.path, if it
1197 exists, is deprecated (:issue:`19375`).
Georg Brandlb80f5112012-09-30 09:11:58 +02001198
1199
R David Murray72420ff2013-12-24 10:46:44 -05001200Removed
1201=======
1202
R David Murrayd74d09a2013-12-24 15:33:02 -05001203The following previously deprecated APIs and features have been removed
1204in Python 3.4:
1205
1206* Support for the following operating systems has been removed from the source
1207 and build tools:
R David Murray076dead2013-12-24 14:59:50 -05001208
1209 * OS/2 (:issue:`16135`).
1210 * Windows 2000 (changeset e52df05b496a).
1211 * VMS (:issue:`16136`).
1212
R David Murray72420ff2013-12-24 10:46:44 -05001213* The unmaintained ``Misc/TextMate`` and ``Misc/vim`` directories have been
R David Murrayd91ba202013-12-24 12:13:44 -05001214 removed (see the `devguide <http://docs.python.org/devguide>`_
1215 for what to use instead).
R David Murray72420ff2013-12-24 10:46:44 -05001216
R David Murrayd17aba72013-12-24 14:46:23 -05001217* The ``SO`` makefile macro is removed (it was replaced by the
1218 ``SHLIB_SUFFIX`` and ``EXT_SUFFIX`` macros) (:issue:`16754`).
1219
R David Murrayd74d09a2013-12-24 15:33:02 -05001220* The ``PyThreadState.tick_counter`` field has been removed; its value has
1221 been meaningless since Python 3.2, when the "new GIL" was introduced.
1222
R David Murray72420ff2013-12-24 10:46:44 -05001223
Benjamin Peterson88f3b232012-10-04 12:45:10 -04001224Porting to Python 3.4
Georg Brandlb80f5112012-09-30 09:11:58 +02001225=====================
1226
1227This section lists previously described changes and other bugfixes
1228that may require changes to your code.
1229
R David Murrayd74d09a2013-12-24 15:33:02 -05001230Changes in the Python API
1231-------------------------
1232
Brett Cannon777622b2013-04-09 17:03:10 -04001233* The ABCs defined in :mod:`importlib.abc` now either raise the appropriate
1234 exception or return a default value instead of raising
1235 :exc:`NotImplementedError` blindly. This will only affect code calling
1236 :func:`super` and falling through all the way to the ABCs. For compatibility,
1237 catch both :exc:`NotImplementedError` or the appropriate exception as needed.
Brett Cannon4c14b5d2013-05-04 13:56:58 -04001238
1239* The module type now initializes the :attr:`__package__` and :attr:`__loader__`
1240 attributes to ``None`` by default. To determine if these attributes were set
1241 in a backwards-compatible fashion, use e.g.
Brett Cannon3dc48d62013-05-28 18:35:54 -04001242 ``getattr(module, '__loader__', None) is not None``.
1243
1244* :meth:`importlib.util.module_for_loader` now sets ``__loader__`` and
1245 ``__package__`` unconditionally to properly support reloading. If this is not
1246 desired then you will need to set these attributes manually. You can use
Brett Cannon028d5122013-05-31 18:02:11 -04001247 :func:`importlib.util.module_to_load` for module management.
Brett Cannon3e0651b2013-05-31 23:18:39 -04001248
1249* Import now resets relevant attributes (e.g. ``__name__``, ``__loader__``,
1250 ``__package__``, ``__file__``, ``__cached__``) unconditionally when reloading.
1251
Brett Cannon1448ecf2013-10-04 11:38:59 -04001252* Frozen packages no longer set ``__path__`` to a list containing the package
1253 name but an empty list instead. Determing if a module is a package should be
1254 done using ``hasattr(module, '__path__')``.
Brett Cannon8f5ac512013-06-12 23:29:18 -04001255
Brett Cannon33915eb2013-06-14 18:33:00 -04001256* :func:`py_compile.compile` now raises :exc:`FileExistsError` if the file path
1257 it would write to is a symlink or a non-regular file. This is to act as a
1258 warning that import will overwrite those files with a regular file regardless
1259 of what type of file path they were originally.
Brett Cannonf4375ef2013-06-16 18:05:54 -04001260
1261* :meth:`importlib.abc.SourceLoader.get_source` no longer raises
1262 :exc:`ImportError` when the source code being loaded triggers a
1263 :exc:`SyntaxError` or :exc:`UnicodeDecodeError`. As :exc:`ImportError` is
1264 meant to be raised only when source code cannot be found but it should, it was
1265 felt to be over-reaching/overloading of that meaning when the source code is
1266 found but improperly structured. If you were catching ImportError before and
1267 wish to continue to ignore syntax or decoding issues, catch all three
Victor Stinner84e33c82013-06-21 00:31:55 +02001268 exceptions now.
Nick Coghlan24c05bc2013-07-15 21:13:08 +10001269
1270* :func:`functools.update_wrapper` and :func:`functools.wraps` now correctly
Nick Coghlan367df122013-10-27 01:57:34 +10001271 set the ``__wrapped__`` attribute to the function being wrapper, even if
1272 that function also had its ``__wrapped__`` attribute set. This means
1273 ``__wrapped__`` attributes now correctly link a stack of decorated
1274 functions rather than every ``__wrapped__`` attribute in the chain
1275 referring to the innermost function. Introspection libraries that
1276 assumed the previous behaviour was intentional can use
1277 :func:`inspect.unwrap` to access the first function in the chain that has
1278 no ``__wrapped__`` attribute.
Victor Stinner2fe9bac2013-10-10 16:18:20 +02001279
Georg Brandl0f5bff22013-10-19 17:46:38 +02001280* :class:`importlib.machinery.PathFinder` now passes on the current working
Brett Cannon27e27f72013-10-18 11:39:04 -04001281 directory to objects in :data:`sys.path_hooks` for the empty string. This
1282 results in :data:`sys.path_importer_cache` never containing ``''``, thus
1283 iterating through :data:`sys.path_importer_cache` based on :data:`sys.path`
1284 will not find all keys. A module's ``__file__`` when imported in the current
1285 working directory will also now have an absolute path, including when using
1286 ``-m`` with the interpreter (this does not influence when the path to a file
1287 is specified on the command-line).
Victor Stinner2748bc72013-12-13 10:57:04 +01001288
Victor Stinner774b2e02013-12-13 14:33:01 +01001289Changes in the C API
1290--------------------
1291
1292* :c:func:`PyErr_SetImportError` now sets :exc:`TypeError` when its **msg**
1293 argument is not set. Previously only ``NULL`` was returned with no exception
1294 set.
1295
1296* The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must
1297 now be a string allocated by :c:func:`PyMem_RawMalloc` or
1298 :c:func:`PyMem_RawRealloc`, or *NULL* if an error occurred, instead of a
1299 string allocated by :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`.
1300
1301* :c:func:`PyThread_set_key_value` now always set the value. In Python
Victor Stinner2748bc72013-12-13 10:57:04 +01001302 3.3, the function did nothing if the key already exists (if the current
1303 value is a non-NULL pointer).
1304
Victor Stinner774b2e02013-12-13 14:33:01 +01001305* The ``f_tstate`` (thread state) field of the :c:type:`PyFrameObject`
1306 structure has been removed to fix a bug: see :issue:`14432` for the
1307 rationale.
1308