blob: ed4ea176ef5c6cb419f462efde900e7a70435385 [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
21 updates - in such cases, end users will be much better served by partial
22 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
Nick Coghlan03074fd2012-09-30 18:51:53 +053078 .. :pep:`4XX` - Python 3.4 Release Schedule
Georg Brandlb80f5112012-09-30 09:11:58 +020079
80
81Summary -- Release highlights
82=============================
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
89* None yet.
90
91New library modules:
92
Victor Stinner84e33c82013-06-21 00:31:55 +020093* :mod:`enum`: Implementation of the :pep:`435`.
Victor Stinner4aea4a02013-09-04 20:30:34 +020094* :mod:`selectors`: High-level and efficient I/O multiplexing, built upon the
95 :mod:`select` module primitives.
Georg Brandlb80f5112012-09-30 09:11:58 +020096
97New built-in features:
98
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +020099* :ref:`PEP 442: Safe object finalization <pep-442>`.
100* :ref:`PEP 445: Configurable memory allocators <pep-445>`.
Victor Stinnerdaf45552013-08-28 00:53:59 +0200101* :ref:`PEP 446: Make newly created file descriptors non-inheritable <pep-446>`.
Georg Brandlb80f5112012-09-30 09:11:58 +0200102
103Implementation improvements:
104
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200105* A more efficient :mod:`marshal` format (:issue:`16475`).
106* Improve finalization of Python modules to avoid setting their globals
107 to None, in most cases (:issue:`18214`).
Georg Brandlb80f5112012-09-30 09:11:58 +0200108
109Significantly Improved Library Modules:
110
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200111* Single-dispatch generic functions (:pep:`443`)
112* SHA-3 (Keccak) support for :mod:`hashlib`.
113* TLSv1.1 and TLSv1.2 support for :mod:`ssl`.
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100114* :mod:`multiprocessing` now has option to avoid using :func:`os.fork`
115 on Unix (:issue:`8713`).
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200116
Georg Brandlb80f5112012-09-30 09:11:58 +0200117Security improvements:
118
Christian Heimesad73a9c2013-08-10 16:36:18 +0200119* command line option for :ref:`isolated mode <using-on-misc-options>`,
120 :issue:`16499`.
Georg Brandlb80f5112012-09-30 09:11:58 +0200121
122Please read on for a comprehensive list of user-facing changes.
123
Victor Stinnerdaf45552013-08-28 00:53:59 +0200124.. _pep-446:
125
126PEP 446: Make newly created file descriptors non-inheritable
127============================================================
128
Georg Brandl5642ff92013-09-15 10:37:57 +0200129The :pep:`446` makes newly created file descriptors :ref:`non-inheritable
130<fd_inheritance>`. New functions and methods:
Victor Stinnerdaf45552013-08-28 00:53:59 +0200131
132* :func:`os.get_inheritable`, :func:`os.set_inheritable`
133* :func:`os.get_handle_inheritable`, :func:`os.set_handle_inheritable`
134* :meth:`socket.socket.get_inheritable`, :meth:`socket.socket.set_inheritable`
135
136
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200137.. _pep-445:
138
139PEP 445: Add new APIs to customize Python memory allocators
140===========================================================
Georg Brandlb80f5112012-09-30 09:11:58 +0200141
Victor Stinner0507bf52013-07-07 02:05:46 +0200142The :pep:`445` adds new Application Programming Interfaces (API) to customize
143Python memory allocators.
Georg Brandlb80f5112012-09-30 09:11:58 +0200144
145
Antoine Pitrou796564c2013-07-30 19:59:21 +0200146.. _pep-442:
147
148PEP 442: Safe object finalization
149=================================
150
151This PEP removes the current limitations and quirks of object finalization.
152With it, objects with :meth:`__del__` methods, as well as generators
153with :keyword:`finally` clauses, can be finalized when they are part of a
154reference cycle.
155
Nick Coghlanbe57ab82013-09-22 21:26:30 +1000156As part of this change, module globals are no longer forcibly set to
157:const:`None` during interpreter shutdown, instead relying on the normal
158operation of the cyclic garbage collector.
159
Antoine Pitrou796564c2013-07-30 19:59:21 +0200160.. seealso::
161
162 :pep:`442` - Safe object finalization
163 PEP written and implemented by Antoine Pitrou
164
Georg Brandlb80f5112012-09-30 09:11:58 +0200165
166Other Language Changes
167======================
168
169Some smaller changes made to the core Python language are:
170
Georg Brandl50de8502012-09-30 14:39:18 +0200171* Unicode database updated to UCD version 6.2.
Georg Brandlb80f5112012-09-30 09:11:58 +0200172
R David Murray9a2f1392013-06-28 13:31:19 -0400173* :func:`min` and :func:`max` now accept a *default* argument that can be used
174 to specify the value they return if the iterable they are evaluating has no
175 elements. Contributed by Julian Berman in :issue:`18111`.
Georg Brandlb80f5112012-09-30 09:11:58 +0200176
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200177* Module objects are now :mod:`weakref`'able.
178
Georg Brandlb80f5112012-09-30 09:11:58 +0200179
180New Modules
181===========
182
Charles-François Natali243d8d82013-09-04 19:02:49 +0200183selectors
184---------
Georg Brandlb80f5112012-09-30 09:11:58 +0200185
Charles-François Natali243d8d82013-09-04 19:02:49 +0200186The new :mod:`selectors` module allows high-level and efficient I/O
187multiplexing, built upon the :mod:`select` module primitives.
Georg Brandlb80f5112012-09-30 09:11:58 +0200188
189
190Improved Modules
191================
192
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200193aifc
194----
195
196The :meth:`~aifc.getparams` method now returns a namedtuple rather than a
197plain tuple. (Contributed by Claudiu Popa in :issue:`17818`.)
198
199
200colorsys
201--------
202
203The number of digits in the coefficients for the RGB --- YIQ conversions have
204been expanded so that they match the FCC NTSC versions. The change in
205results should be less than 1% and may better match results found elsewhere.
206
R David Murray8e37d5d2013-04-13 14:49:48 -0400207
Nick Coghlanb39fd0c2013-05-06 23:59:20 +1000208dis
209---
210
211The :mod:`dis` module is now built around an :class:`Instruction` class that
212provides details of individual bytecode operations and a
213:func:`get_instructions` iterator that emits the Instruction stream for a
214given piece of Python code. The various display tools in the :mod:`dis`
215module have been updated to be based on these new components.
216
217The new :class:`dis.Bytecode` class provides an object-oriented API for
218inspecting bytecode, both in human-readable form and for iterating over
219instructions.
220
221(Contributed by Nick Coghlan, Ryan Kelly and Thomas Kluyver in :issue:`11816`)
222
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200223
R David Murray5a9d7062012-11-21 15:09:21 -0500224doctest
225-------
226
R David Murray5707d502013-06-23 14:24:13 -0400227Added :data:`~doctest.FAIL_FAST` flag to halt test running as soon as the first
228failure is detected. (Contributed by R. David Murray and Daniel Urban in
229:issue:`16522`.)
230
231Updated the doctest command line interface to use :mod:`argparse`, and added
232``-o`` and ``-f`` options to the interface. ``-o`` allows doctest options to
233be specified on the command line, and ``-f`` is a shorthand for ``-o
234FAIL_FAST`` (to parallel the similar option supported by the :mod:`unittest`
235CLI). (Contributed by R. David Murray in :issue:`11390`.)
Georg Brandlb80f5112012-09-30 09:11:58 +0200236
R David Murray8e37d5d2013-04-13 14:49:48 -0400237
R David Murraybb17d2b2013-08-09 16:15:28 -0400238email
239-----
240
241:meth:`~email.message.Message.as_string` now accepts a *policy* argument to
242override the default policy of the message when generating a string
243representation of it. This means that ``as_string`` can now be used in more
244circumstances, instead of having to create and use a :mod:`~email.generator` in
245order to pass formatting parameters to its ``flatten`` method.
246
247New method :meth:`~email.message.Message.as_bytes` added to produce a bytes
248representation of the message in a fashion similar to how ``as_string``
249produces a string representation. It does not accept the *maxheaderlen*
250argument, but does accept the *unixfrom* and *policy* arguments. The
251:class:`~email.message.Message` :meth:`~email.message.Message.__bytes__` method
252calls it, meaning that ``bytes(mymsg)`` will now produce the intuitive
253result: a bytes object containing the fully formatted message.
254
255(Contributed by R. David Murray in :issue:`18600`.)
256
257
Victor Stinner854ffcb2013-06-21 00:36:30 +0200258functools
259---------
260
261New :func:`functools.singledispatch` decorator: see the :pep:`443`.
262
Nick Coghlane8c45d62013-07-28 20:00:01 +1000263
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200264inspect
265-------
266
Nick Coghlanf94a16b2013-09-22 22:46:49 +1000267
268The inspect module now offers a basic command line interface to quickly
269display source code and other information for modules, classes and
270functions.
271
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200272:func:`~inspect.unwrap` makes it easy to unravel wrapper function chains
273created by :func:`functools.wraps` (and any other API that sets the
274``__wrapped__`` attribute on a wrapper function).
275
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200276mmap
277----
278
279mmap objects can now be weakref'ed.
280
281(Contributed by Valerie Lambert in :issue:`4885`.)
282
283
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100284multiprocessing
285---------------
286
287On Unix two new *start methods* have been added for starting processes
288using :mod:`multiprocessing`. These make the mixing of processes with
289threads more robust. See :issue:`8713`.
290
291Also, except when using the old *fork* start method, child processes
292will no longer inherit unneeded handles/file descriptors from their parents.
293
294
Victor Stinnerdaf45552013-08-28 00:53:59 +0200295os
296--
297
Georg Brandlc6ebbef2013-09-16 04:03:12 +0200298New functions to get and set the :ref:`inheritable flag <fd_inheritance>` of a file
Victor Stinnerdaf45552013-08-28 00:53:59 +0200299descriptors or a Windows handle:
300
301* :func:`os.get_inheritable`, :func:`os.set_inheritable`
302* :func:`os.get_handle_inheritable`, :func:`os.set_handle_inheritable`
303
304
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200305poplib
306------
307
308New :meth:`~poplib.POP3.stls` method to switch a clear-text POP3 session into
309an encrypted POP3 session.
310
311New :meth:`~poplib.POP3.capa` method to query the capabilities advertised by the
312POP3 server.
313
314(Contributed by Lorenzo Catucci in :issue:`4473`.)
315
316
Serhiy Storchaka7c411a42013-10-02 11:56:18 +0300317pprint
318------
319
320The :mod::`pprint` module now supports *compact* mode for formatting long
321sequences (:issue:`19132`).
322
323
R David Murray8e37d5d2013-04-13 14:49:48 -0400324smtplib
325-------
326
R David Murray8a345962013-04-14 06:46:35 -0400327:exc:`~smtplib.SMTPException` is now a subclass of :exc:`OSError`, which allows
R David Murray8e37d5d2013-04-13 14:49:48 -0400328both socket level errors and SMTP protocol level errors to be caught in one
329try/except statement by code that only cares whether or not an error occurred.
330(:issue:`2118`).
331
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200332
Victor Stinnerdaf45552013-08-28 00:53:59 +0200333socket
334------
335
Georg Brandl5642ff92013-09-15 10:37:57 +0200336Socket objects have new methods to get or set their :ref:`inheritable flag
337<fd_inheritance>`:
Victor Stinnerdaf45552013-08-28 00:53:59 +0200338
339* :meth:`socket.socket.get_inheritable`, :meth:`socket.socket.set_inheritable`
340
Eli Bendersky34567ec2013-08-31 15:18:48 -0700341The ``socket.AF_*`` and ``socket.SOCK_*`` constants are enumeration values,
342using the new :mod:`enum` module. This allows descriptive reporting during
343debugging, instead of seeing integer "magic numbers".
Victor Stinnerdaf45552013-08-28 00:53:59 +0200344
Christian Heimes24cd4cf2013-06-22 19:31:58 +0200345ssl
346---
347
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200348TLSv1.1 and TLSv1.2 support.
Christian Heimes70833a82013-06-22 19:34:17 +0200349
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200350(Contributed by Michele Orrù and Antoine Pitrou in :issue:`16692`)
Christian Heimes24cd4cf2013-06-22 19:31:58 +0200351
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200352* New diagnostic functions :func:`~ssl.get_default_verify_paths`,
353 :meth:`~ssl.SSLContext.cert_store_stats` and
354 :meth:`~ssl.SSLContext.get_ca_certs`
355
356* Add :func:`ssl.enum_cert_store` to retrieve certificates and CRL from Windows'
357 cert store.
Christian Heimes24cd4cf2013-06-22 19:31:58 +0200358
359(Contributed by Christian Heimes in :issue:`18143`, :issue:`18147` and
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200360 :issue:`17134`.)
361
362Support for server-side SNI using the new
363:meth:`ssl.SSLContext.set_servername_callback` method.
364
365(Contributed by Daniel Black in :issue:`8109`.)
366
367
Antoine Pitroud6cbd342013-08-12 20:48:15 +0200368stat
369----
370
371The :mod:`stat` module is now backed by a C implementation in :mod:`_stat`. A C
372implementation is required as most of the values aren't standardized and
373platform-dependent. (Contributed by Christian Heimes in :issue:`11016`.)
374
375The module supports new file types: door, event port and whiteout.
376
377
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200378struct
379------
380
381Streaming struct unpacking using :func:`struct.iter_unpack`.
382
383(Contributed by Antoine Pitrou in :issue:`17804`.)
384
385
Serhiy Storchakae06a8962013-09-04 00:43:03 +0300386sunau
387-----
388
389The :meth:`~sunau.getparams` method now returns a namedtuple rather than a
390plain tuple. (Contributed by Claudiu Popa in :issue:`18901`.)
391
Serhiy Storchaka34d20132013-09-05 17:01:53 +0300392:meth:`sunau.open` now supports the context manager protocol (:issue:`18878`).
393
Serhiy Storchakae06a8962013-09-04 00:43:03 +0300394
Andrew Kuchling173a1572013-09-15 18:15:56 -0400395traceback
396---------
397
398A new :func:`traceback.clear_frames` function takes a traceback object
399and clears the local variables in all of the frames it references,
400reducing the amount of memory consumed (:issue:`1565525`).
401
402
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200403urllib
404------
405
406Add support.for ``data:`` URLs in :mod:`urllib.request`.
407
408(Contributed by Mathias Panzenböck in :issue:`16423`.)
409
410
411unittest
412--------
413
414Support for easy dynamically-generated subtests using the
415:meth:`~unittest.TestCase.subTest` context manager.
416
417(Contributed by Antoine Pitrou in :issue:`16997`.)
418
R David Murray8e37d5d2013-04-13 14:49:48 -0400419
R David Murray671cd322013-04-10 12:31:43 -0400420wave
421----
422
423The :meth:`~wave.getparams` method now returns a namedtuple rather than a
424plain tuple. (Contributed by Claudiu Popa in :issue:`17487`.)
425
R David Murrayc91d5ee2013-07-31 13:46:08 -0400426:meth:`wave.open` now supports the context manager protocol. (Contributed
427by Claudiu Popa in :issue:`17616`.)
428
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200429
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200430weakref
431-------
432
433New :class:`~weakref.WeakMethod` class simulates weak references to bound
Nick Coghlanbe57ab82013-09-22 21:26:30 +1000434methods. (Contributed by Antoine Pitrou in :issue:`14631`.)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200435
Nick Coghlanbe57ab82013-09-22 21:26:30 +1000436New :class:`~weakref.finalize` class makes it possible to register a callback
437to be invoked when an object is garbage collected, without needing to
438carefully manage the lifecycle of the weak reference itself. (Contributed by
439Richard Oudkerk in :issue:`15528`)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200440
441
442xml.etree
443---------
444
445Add an event-driven parser for non-blocking applications,
Eli Benderskyb5869342013-08-30 05:51:20 -0700446:class:`~xml.etree.ElementTree.XMLPullParser`.
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200447
Eli Benderskyb5869342013-08-30 05:51:20 -0700448(Contributed by Antoine Pitrou in :issue:`17741`.)
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200449
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200450Other improvements
451==================
452
453Tab-completion is now enabled by default in the interactive interpreter.
454
455(Contributed by Antoine Pitrou and Éric Araujo in :issue:`5845`.)
456
Eli Bendersky96d848a2013-09-06 06:55:58 -0700457Python invocation changes
458=========================
459
460Invoking the Python interpreter with ``--version`` now outputs the version to
461standard output instead of standard error (:issue:`18338`). Similar changes
462were made to :mod:`argparse` (:issue:`18920`) and other modules that have
463script-like invocation capabilities (:issue:`18922`).
Antoine Pitrouf89aa9a2013-08-12 20:46:47 +0200464
Georg Brandlb80f5112012-09-30 09:11:58 +0200465Optimizations
466=============
467
468Major performance enhancements have been added:
469
Victor Stinnere64322e2012-10-30 23:12:47 +0100470* The UTF-32 decoder is now 3x to 4x faster.
Georg Brandlb80f5112012-09-30 09:11:58 +0200471
Raymond Hettingerc301b552013-08-19 09:12:20 -0700472* The cost of hash collisions for sets is now reduced. Each hash table
Raymond Hettinger8408dc52013-09-15 14:57:15 -0700473 probe now checks a series of consecutive, adjacent key/hash pairs before
474 continuing to make random probes through the hash table. This exploits
475 cache locality to make collision resolution less expensive.
476
477 The collision resolution scheme can be described as a hybrid of linear
478 probing and open addressing. The number of additional linear probes
479 defaults to nine. This can be changed at compile-time by defining
480 LINEAR_PROBES to be any value. Set LINEAR_PROBES=0 to turn-off
481 linear probing entirely.
Raymond Hettingerc301b552013-08-19 09:12:20 -0700482
Andrew Kuchling13aa7812013-08-19 13:07:18 -0400483 (Contributed by Raymond Hettinger in :issue"`18771`.)
Raymond Hettingerc301b552013-08-19 09:12:20 -0700484
Georg Brandlb80f5112012-09-30 09:11:58 +0200485
486Build and C API Changes
487=======================
488
489Changes to Python's build process and to the C API include:
490
491* None yet.
492
493
494Deprecated
495==========
496
497Unsupported Operating Systems
498-----------------------------
499
Victor Stinnerf3fd13b2013-08-04 10:30:57 +0200500* OS/2
Victor Stinnerf3fd13b2013-08-04 10:30:57 +0200501* Windows 2000
Georg Brandlb80f5112012-09-30 09:11:58 +0200502
503
504Deprecated Python modules, functions and methods
505------------------------------------------------
506
Terry Jan Reedy2b6c26e2013-03-21 19:36:26 -0400507* :meth:`difflib.SequenceMatcher.isbjunk` and
Andrew Kuchling0d0813a2013-06-15 13:29:09 -0400508 :meth:`difflib.SequenceMatcher.isbpopular` were removed: use ``x in sm.bjunk`` and
509 ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object.
Georg Brandlb80f5112012-09-30 09:11:58 +0200510
Brett Cannon82b3d6a2013-06-14 22:37:11 -0400511* :func:`importlib.util.module_for_loader` is pending deprecation. Using
512 :func:`importlib.util.module_to_load` and
513 :meth:`importlib.abc.Loader.init_module_attrs` allows subclasses of a loader
514 to more easily customize module loading.
515
Brett Cannone4f41de2013-06-16 13:13:40 -0400516* The :mod:`imp` module is pending deprecation. To keep compatibility with
517 Python 2/3 code bases, the module's removal is currently not scheduled.
518
Brett Cannon1448ecf2013-10-04 11:38:59 -0400519* The :mod:`formatter` module is pending deprecation and is slated for removal
520 in Python 3.6.
521
Georg Brandlb80f5112012-09-30 09:11:58 +0200522
523Deprecated functions and types of the C API
524-------------------------------------------
525
Victor Stinner8d197672013-10-09 14:53:01 +0200526* The ``PyThreadState.tick_counter`` field has been value: its value was meaningless
527 since Python 3.2 ("new GIL").
Georg Brandlb80f5112012-09-30 09:11:58 +0200528
529
530Deprecated features
531-------------------
532
Brett Cannon82b3d6a2013-06-14 22:37:11 -0400533* None yet.
Georg Brandlb80f5112012-09-30 09:11:58 +0200534
535
Benjamin Peterson88f3b232012-10-04 12:45:10 -0400536Porting to Python 3.4
Georg Brandlb80f5112012-09-30 09:11:58 +0200537=====================
538
539This section lists previously described changes and other bugfixes
540that may require changes to your code.
541
Brett Cannon777622b2013-04-09 17:03:10 -0400542* The ABCs defined in :mod:`importlib.abc` now either raise the appropriate
543 exception or return a default value instead of raising
544 :exc:`NotImplementedError` blindly. This will only affect code calling
545 :func:`super` and falling through all the way to the ABCs. For compatibility,
546 catch both :exc:`NotImplementedError` or the appropriate exception as needed.
Brett Cannon4c14b5d2013-05-04 13:56:58 -0400547
548* The module type now initializes the :attr:`__package__` and :attr:`__loader__`
549 attributes to ``None`` by default. To determine if these attributes were set
550 in a backwards-compatible fashion, use e.g.
Brett Cannon3dc48d62013-05-28 18:35:54 -0400551 ``getattr(module, '__loader__', None) is not None``.
552
553* :meth:`importlib.util.module_for_loader` now sets ``__loader__`` and
554 ``__package__`` unconditionally to properly support reloading. If this is not
555 desired then you will need to set these attributes manually. You can use
Brett Cannon028d5122013-05-31 18:02:11 -0400556 :func:`importlib.util.module_to_load` for module management.
Brett Cannon3e0651b2013-05-31 23:18:39 -0400557
558* Import now resets relevant attributes (e.g. ``__name__``, ``__loader__``,
559 ``__package__``, ``__file__``, ``__cached__``) unconditionally when reloading.
560
Brett Cannon1448ecf2013-10-04 11:38:59 -0400561* Frozen packages no longer set ``__path__`` to a list containing the package
562 name but an empty list instead. Determing if a module is a package should be
563 done using ``hasattr(module, '__path__')``.
Brett Cannon8f5ac512013-06-12 23:29:18 -0400564
565* :c:func:`PyErr_SetImportError` now sets :exc:`TypeError` when its **msg**
Brett Cannon82da8882013-07-04 17:48:16 -0400566 argument is not set. Previously only ``NULL`` was returned with no exception
567 set.
Brett Cannon33915eb2013-06-14 18:33:00 -0400568
569* :func:`py_compile.compile` now raises :exc:`FileExistsError` if the file path
570 it would write to is a symlink or a non-regular file. This is to act as a
571 warning that import will overwrite those files with a regular file regardless
572 of what type of file path they were originally.
Brett Cannonf4375ef2013-06-16 18:05:54 -0400573
574* :meth:`importlib.abc.SourceLoader.get_source` no longer raises
575 :exc:`ImportError` when the source code being loaded triggers a
576 :exc:`SyntaxError` or :exc:`UnicodeDecodeError`. As :exc:`ImportError` is
577 meant to be raised only when source code cannot be found but it should, it was
578 felt to be over-reaching/overloading of that meaning when the source code is
579 found but improperly structured. If you were catching ImportError before and
580 wish to continue to ignore syntax or decoding issues, catch all three
Victor Stinner84e33c82013-06-21 00:31:55 +0200581 exceptions now.
Nick Coghlan24c05bc2013-07-15 21:13:08 +1000582
583* :func:`functools.update_wrapper` and :func:`functools.wraps` now correctly
584 set the ``__wrapped__`` attribute even if the wrapped function had a
585 wrapped attribute set. This means ``__wrapped__`` attributes now correctly
586 link a stack of decorated functions rather than every ``__wrapped__``
587 attribute in the chain referring to the innermost function. Introspection
Nick Coghlane8c45d62013-07-28 20:00:01 +1000588 libraries that assumed the previous behaviour was intentional can use
589 :func:`inspect.unwrap` to gain equivalent behaviour.
Victor Stinner2fe9bac2013-10-10 16:18:20 +0200590
591* (C API) The result of the :c:var:`PyOS_ReadlineFunctionPointer` callback must
592 now be a string allocated by :c:func:`PyMem_RawMalloc` or
593 :c:func:`PyMem_RawRealloc`, or *NULL* if an error occurred, instead of a
594 string allocated by :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`.
595