blob: 3afe2d41f3016dd2092c3cfe63e1eaf47285a104 [file] [log] [blame]
Yury Selivanovd1da5072015-05-27 22:09:10 -04001****************************
2 What's New In Python 3.6
3****************************
4
5:Release: |release|
6:Date: |today|
7
8.. Rules for maintenance:
9
10 * Anyone can add text to this document. Do not spend very much time
11 on the wording of your changes, because your text will probably
12 get rewritten to some degree.
13
14 * The maintainer will go through Misc/NEWS periodically and add
15 changes; it's therefore more important to add your changes to
16 Misc/NEWS than to this file.
17
18 * This is not a complete list of every single change; completeness
19 is the purpose of Misc/NEWS. Some changes I consider too small
20 or esoteric to include. If such a change is added to the text,
21 I'll just remove it. (This is another reason you shouldn't spend
22 too much time on writing your addition.)
23
24 * If you want to draw your new text to the attention of the
25 maintainer, add 'XXX' to the beginning of the paragraph or
26 section.
27
28 * It's OK to just add a fragmentary note about a change. For
29 example: "XXX Describe the transmogrify() function added to the
30 socket module." The maintainer will research the change and
31 write the necessary text.
32
33 * You can comment out your additions if you like, but it's not
34 necessary (especially when a final release is some months away).
35
36 * Credit the author of a patch or bugfix. Just the name is
37 sufficient; the e-mail address isn't necessary.
38
39 * It's helpful to add the bug/patch number as a comment:
40
41 XXX Describe the transmogrify() function added to the socket
42 module.
43 (Contributed by P.Y. Developer in :issue:`12345`.)
44
45 This saves the maintainer the effort of going through the Mercurial log
46 when researching a change.
47
48This article explains the new features in Python 3.6, compared to 3.5.
49
50For full details, see the :source:`Misc/NEWS` file.
51
52.. note::
53
54 Prerelease users should be aware that this document is currently in draft
55 form. It will be updated substantially as Python 3.6 moves towards release,
56 so it's worth checking back even after reading earlier versions.
57
58
59Summary -- Release highlights
60=============================
61
62.. This section singles out the most important changes in Python 3.6.
63 Brevity is key.
64
Martin Panterbc1ee462016-02-13 00:41:37 +000065* PEP 498: :ref:`Formatted string literals <whatsnew-fstrings>`
Yury Selivanovd1da5072015-05-27 22:09:10 -040066
67.. PEP-sized items next.
68
69.. _pep-4XX:
70
71.. PEP 4XX: Virtual Environments
72.. =============================
73
74
75.. (Implemented by Foo Bar.)
76
77.. .. seealso::
78
79 :pep:`4XX` - Python Virtual Environments
80 PEP written by Carl Meyer
81
82
Martin Panterbc1ee462016-02-13 00:41:37 +000083.. _whatsnew-fstrings:
84
85PEP 498: Formatted string literals
86----------------------------------
87
88Formatted string literals are a new kind of string literal, prefixed
89with ``'f'``. They are similar to the format strings accepted by
90:meth:`str.format`. They contain replacement fields surrounded by
91curly braces. The replacement fields are expressions, which are
92evaluated at run time, and then formatted using the :func:`format` protocol.
93
94 >>> name = "Fred"
95 >>> f"He said his name is {name}."
96 'He said his name is Fred.'
97
98See :pep:`498` and the main documentation at :ref:`f-strings`.
99
100
Yury Selivanovd1da5072015-05-27 22:09:10 -0400101Other Language Changes
102======================
103
104* None yet.
105
106
107New Modules
108===========
109
110* None yet.
111
112
113Improved Modules
114================
115
Berker Peksagb6c95722015-10-08 13:58:49 +0300116datetime
117--------
118
Martin Panterfad4b602015-11-14 01:29:17 +0000119The :meth:`datetime.strftime() <datetime.datetime.strftime>` and
120:meth:`date.strftime() <datetime.date.strftime>` methods now support ISO 8601 date
Berker Peksagb6c95722015-10-08 13:58:49 +0300121directives ``%G``, ``%u`` and ``%V``.
122(Contributed by Ashley Anderson in :issue:`12006`.)
123
124
Serhiy Storchakaffe96ae2016-02-11 13:21:30 +0200125os
126--
127
128A new :meth:`~os.scandir.close` method allows explicitly closing a
129:func:`~os.scandir` iterator. The :func:`~os.scandir` iterator now
130supports the :term:`context manager` protocol. If a :func:`scandir`
131iterator is neither exhausted nor explicitly closed a :exc:`ResourceWarning`
132will be emitted in its destructor.
133(Contributed by Serhiy Storchaka in :issue:`25994`.)
134
135
Serhiy Storchaka0d554d72015-10-10 22:42:18 +0300136pickle
137------
138
Martin Panterfad4b602015-11-14 01:29:17 +0000139Objects that need calling ``__new__`` with keyword arguments can now be pickled
Serhiy Storchaka0d554d72015-10-10 22:42:18 +0300140using :ref:`pickle protocols <pickle-protocols>` older than protocol version 4.
141Protocol version 4 already supports this case. (Contributed by Serhiy
142Storchaka in :issue:`24164`.)
143
144
Martin Panterfad4b602015-11-14 01:29:17 +0000145rlcompleter
146-----------
Serhiy Storchakaab824222015-09-27 13:43:50 +0300147
148Private and special attribute names now are omitted unless the prefix starts
Martin Panterfad4b602015-11-14 01:29:17 +0000149with underscores. A space or a colon is added after some completed keywords.
Serhiy Storchakaab824222015-09-27 13:43:50 +0300150(Contributed by Serhiy Storchaka in :issue:`25011` and :issue:`25209`.)
151
Martin Panter6fe39262015-11-13 23:54:02 +0000152Names of most attributes listed by :func:`dir` are now completed.
153Previously, names of properties and slots which were not yet created on
154an instance were excluded. (Contributed by Martin Panter in :issue:`25590`.)
155
Serhiy Storchakaab824222015-09-27 13:43:50 +0300156
R David Murray4f098062015-11-28 12:24:52 -0500157telnetlib
158---------
159
160:class:`~telnetlib.Telnet` is now a context manager (contributed by
161Stéphane Wirtel in :issue:`25485`).
162
163
Victor Stinner2c2a4e62016-03-11 22:17:48 +0100164unittest.mock
165-------------
166
167The :class:`~unittest.mock.Mock` class has the following improvements:
168
169* Two new methods, :meth:`Mock.assert_called()
170 <unittest.mock.Mock.assert_called>` and :meth:`Mock.assert_called_once()
171 <unittest.mock.Mock.assert_called_once>` to check if the mock object
172 was called.
173 (Contributed by Amit Saha in :issue:`26323`.)
174
175
Berker Peksag960e8482015-10-08 12:27:06 +0300176urllib.robotparser
177------------------
178
Martin Panterfad4b602015-11-14 01:29:17 +0000179:class:`~urllib.robotparser.RobotFileParser` now supports the ``Crawl-delay`` and
Berker Peksag960e8482015-10-08 12:27:06 +0300180``Request-rate`` extensions.
181(Contributed by Nikolay Bogoychev in :issue:`16099`.)
182
183
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200184zipfile
185-------
186
187A new :meth:`ZipInfo.from_file() <zipfile.ZipInfo.from_file>` class method
Martin Panter288ed032016-02-10 05:45:55 +0000188allows making a :class:`~zipfile.ZipInfo` instance from a filesystem file.
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200189A new :meth:`ZipInfo.is_dir() <zipfile.ZipInfo.is_dir>` method can be used
190to check if the :class:`~zipfile.ZipInfo` instance represents a directory.
191(Contributed by Thomas Kluyver in :issue:`26039`.)
192
193
Martin Panter1fe0d132016-02-10 10:06:36 +0000194zlib
195----
196
197The :func:`~zlib.compress` function now accepts keyword arguments.
198(Contributed by Aviv Palivoda in :issue:`26243`.)
199
200
Yury Selivanovd1da5072015-05-27 22:09:10 -0400201Optimizations
202=============
203
Martin Panterfad4b602015-11-14 01:29:17 +0000204* The ASCII decoder is now up to 60 times as fast for error handlers
Victor Stinnerebcf9ed2015-10-14 10:10:00 +0200205 ``surrogateescape``, ``ignore`` and ``replace`` (Contributed
206 by Victor Stinner in :issue:`24870`).
Yury Selivanovd1da5072015-05-27 22:09:10 -0400207
Terry Jan Reedy6dc9ce12015-10-20 01:07:53 -0400208* The ASCII and the Latin1 encoders are now up to 3 times as fast for the
Martin Panterfad4b602015-11-14 01:29:17 +0000209 error handler ``surrogateescape`` (Contributed by Victor Stinner in :issue:`25227`).
Victor Stinnerc3713e92015-09-29 12:32:13 +0200210
Martin Panterfad4b602015-11-14 01:29:17 +0000211* The UTF-8 encoder is now up to 75 times as fast for error handlers
Victor Stinnerebcf9ed2015-10-14 10:10:00 +0200212 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass`` (Contributed
213 by Victor Stinner in :issue:`25267`).
Victor Stinner01ada392015-10-01 21:54:51 +0200214
Martin Panterfad4b602015-11-14 01:29:17 +0000215* The UTF-8 decoder is now up to 15 times as fast for error handlers
Victor Stinnerebcf9ed2015-10-14 10:10:00 +0200216 ``ignore``, ``replace`` and ``surrogateescape`` (Contributed
217 by Victor Stinner in :issue:`25301`).
218
219* ``bytes % args`` is now up to 2 times faster. (Contributed by Victor Stinner
220 in :issue:`25349`).
221
222* ``bytearray % args`` is now between 2.5 and 5 times faster. (Contributed by
223 Victor Stinner in :issue:`25399`).
Victor Stinner1d65d912015-10-05 13:43:50 +0200224
Victor Stinner2bf89932015-10-14 11:25:33 +0200225* Optimize :meth:`bytes.fromhex` and :meth:`bytearray.fromhex`: they are now
226 between 2x and 3.5x faster. (Contributed by Victor Stinner in :issue:`25401`).
227
Yury Selivanovd1da5072015-05-27 22:09:10 -0400228
229Build and C API Changes
230=======================
231
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000232* New :c:func:`Py_FinalizeEx` API which indicates if flushing buffered data
233 failed (:issue:`5319`).
Yury Selivanovd1da5072015-05-27 22:09:10 -0400234
235
236Deprecated
237==========
238
Yury Selivanov7a219112015-05-28 17:10:29 -0400239New Keywords
240------------
241
Yury Selivanov62f27b52015-08-03 14:57:21 -0400242``async`` and ``await`` are not recommended to be used as variable, class,
243function or module names. Introduced by :pep:`492` in Python 3.5, they will
244become proper keywords in Python 3.7.
Yury Selivanov7a219112015-05-28 17:10:29 -0400245
246
Yury Selivanovd1da5072015-05-27 22:09:10 -0400247Deprecated Python modules, functions and methods
248------------------------------------------------
249
Brett Cannoneae30792015-12-28 17:55:27 -0800250* :meth:`importlib.machinery.SourceFileLoader` and
251 :meth:`importlib.machinery.SourcelessFileLoader` are now deprecated. They
252 were the only remaining implementations of
253 :meth:`importlib.abc.Loader.load_module` in :mod:`importlib` that had not
254 been deprecated in previous versions of Python in favour of
255 :meth:`importlib.abc.Loader.exec_module`.
Yury Selivanovd1da5072015-05-27 22:09:10 -0400256
257
258Deprecated functions and types of the C API
259-------------------------------------------
260
261* None yet.
262
263
264Deprecated features
265-------------------
266
Brett Cannon9b638682015-10-16 15:14:27 -0700267* The ``pyvenv`` script has been deprecated in favour of ``python3 -m venv``.
268 This prevents confusion as to what Python interpreter ``pyvenv`` is
269 connected to and thus what Python interpreter will be used by the virtual
Brett Cannon63b85052016-01-15 13:33:03 -0800270 environment. (Contributed by Brett Cannon in :issue:`25154`.)
271
272* When performing a relative import, falling back on ``__name__`` and
273 ``__path__`` from the calling module when ``__spec__`` or
274 ``__package__`` are not defined now raises an :exc:`ImportWarning`.
275 (Contributed by Rose Ames in :issue:`25791`.)
Yury Selivanovd1da5072015-05-27 22:09:10 -0400276
277
Martin Panter7e3a91a2016-02-10 04:40:48 +0000278Deprecated Python behavior
279--------------------------
280
281* Raising the :exc:`StopIteration` exception inside a generator will now generate a
282 :exc:`DeprecationWarning`, and will trigger a :exc:`RuntimeError` in Python 3.7.
283 See :ref:`whatsnew-pep-479` for details.
284
285
Yury Selivanovd1da5072015-05-27 22:09:10 -0400286Removed
287=======
288
289API and Feature Removals
290------------------------
291
Yury Selivanov56613162015-07-23 17:51:34 +0300292* ``inspect.getmoduleinfo()`` was removed (was deprecated since CPython 3.3).
Yury Selivanov6dfbc5d2015-07-23 17:49:00 +0300293 :func:`inspect.getmodulename` should be used for obtaining the module
294 name for a given path.
295
Senthil Kumaran613065b2016-01-17 20:12:16 -0800296* ``traceback.Ignore`` class and ``traceback.usage``, ``traceback.modname``,
297 ``traceback.fullmodname``, ``traceback.find_lines_from_code``,
298 ``traceback.find_lines``, ``traceback.find_strings``,
299 ``traceback.find_executable_lines`` methods were removed from the
300 :mod:`traceback` module. They were undocumented methods deprecated since
301 Python 3.2 and equivalent functionality is available from private methods.
302
Yury Selivanovd1da5072015-05-27 22:09:10 -0400303
304Porting to Python 3.6
305=====================
306
307This section lists previously described changes and other bugfixes
308that may require changes to your code.
309
310Changes in the Python API
311-------------------------
312
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100313* The format of the ``co_lnotab`` attribute of code objects changed to support
314 negative line number delta. By default, Python does not emit bytecode with
315 negative line number delta. Functions using ``frame.f_lineno``,
316 ``PyFrame_GetLineNumber()`` or ``PyCode_Addr2Line()`` are not affected.
317 Functions decoding directly ``co_lnotab`` should be updated to use a signed
318 8-bit integer type for the line number delta, but it's only required to
319 support applications using negative line number delta. See
320 ``Objects/lnotab_notes.txt`` for the ``co_lnotab`` format and how to decode
321 it, and see the :pep:`511` for the rationale.
322
Brett Cannon1e3c3e92015-12-27 13:17:04 -0800323* The functions in the :mod:`compileall` module now return booleans instead
324 of ``1`` or ``0`` to represent success or failure, respectively. Thanks to
325 booleans being a subclass of integers, this should only be an issue if you
326 were doing identity checks for ``1`` or ``0``. See :issue:`25768`.
327
Robert Collinsdfa95c92015-08-10 09:53:30 +1200328* Reading the :attr:`~urllib.parse.SplitResult.port` attribute of
329 :func:`urllib.parse.urlsplit` and :func:`~urllib.parse.urlparse` results
330 now raises :exc:`ValueError` for out-of-range values, rather than
331 returning :const:`None`. See :issue:`20059`.
Yury Selivanovd1da5072015-05-27 22:09:10 -0400332
Brett Cannonc0d91af2015-10-16 12:21:37 -0700333* The :mod:`imp` module now raises a :exc:`DeprecationWarning` instead of
334 :exc:`PendingDeprecationWarning`.
335
Martin Panter28a465c2015-11-14 12:52:08 +0000336* The following modules have had missing APIs added to their :attr:`__all__`
Martin Pantere8afd012016-01-16 07:01:46 +0000337 attributes to match the documented APIs: :mod:`calendar`, :mod:`csv`,
338 :mod:`enum`, :mod:`fileinput`, :mod:`ftplib`, :mod:`logging`,
339 :mod:`optparse`, :mod:`tarfile`, :mod:`threading` and
Martin Panter28a465c2015-11-14 12:52:08 +0000340 :mod:`wave`. This means they will export new symbols when ``import *``
341 is used. See :issue:`23883`.
342
Brett Cannon849113a2016-01-22 15:25:50 -0800343* When performing a relative import, if ``__package__`` does not compare equal
344 to ``__spec__.parent`` then :exc:`ImportWarning` is raised.
345 (Contributed by Brett Cannon in :issue:`25791`.)
Brett Cannon63b85052016-01-15 13:33:03 -0800346
Brett Cannon9fa81262016-01-22 16:39:02 -0800347* When a relative import is performed and no parent package is known, then
348 :exc:`ImportError` will be raised. Previously, :exc:`SystemError` could be
Martin Panterd9108d12016-02-21 08:49:56 +0000349 raised. (Contributed by Brett Cannon in :issue:`18018`.)
350
351* Servers based on the :mod:`socketserver` module, including those
352 defined in :mod:`http.server`, :mod:`xmlrpc.server` and
353 :mod:`wsgiref.simple_server`, now only catch exceptions derived
354 from :exc:`Exception`. Therefore if a request handler raises
355 an exception like :exc:`SystemExit` or :exc:`KeyboardInterrupt`,
356 :meth:`~socketserver.BaseServer.handle_error` is no longer called, and
357 the exception will stop a single-threaded server. (Contributed by
358 Martin Panter in :issue:`23430`.)
Brett Cannon9fa81262016-01-22 16:39:02 -0800359
Yury Selivanovd1da5072015-05-27 22:09:10 -0400360
361Changes in the C API
362--------------------
363
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000364* :c:func:`Py_Exit` (and the main interpreter) now override the exit status
365 with 120 if flushing buffered data failed. See :issue:`5319`.