blob: b7d14f2952655664331696765ebe0a55b2335902 [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
65* None yet.
66
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
83Other Language Changes
84======================
85
86* None yet.
87
88
89New Modules
90===========
91
92* None yet.
93
94
95Improved Modules
96================
97
Berker Peksagb6c95722015-10-08 13:58:49 +030098datetime
99--------
100
Martin Panterfad4b602015-11-14 01:29:17 +0000101The :meth:`datetime.strftime() <datetime.datetime.strftime>` and
102:meth:`date.strftime() <datetime.date.strftime>` methods now support ISO 8601 date
Berker Peksagb6c95722015-10-08 13:58:49 +0300103directives ``%G``, ``%u`` and ``%V``.
104(Contributed by Ashley Anderson in :issue:`12006`.)
105
106
Serhiy Storchakaffe96ae2016-02-11 13:21:30 +0200107os
108--
109
110A new :meth:`~os.scandir.close` method allows explicitly closing a
111:func:`~os.scandir` iterator. The :func:`~os.scandir` iterator now
112supports the :term:`context manager` protocol. If a :func:`scandir`
113iterator is neither exhausted nor explicitly closed a :exc:`ResourceWarning`
114will be emitted in its destructor.
115(Contributed by Serhiy Storchaka in :issue:`25994`.)
116
117
Serhiy Storchaka0d554d72015-10-10 22:42:18 +0300118pickle
119------
120
Martin Panterfad4b602015-11-14 01:29:17 +0000121Objects that need calling ``__new__`` with keyword arguments can now be pickled
Serhiy Storchaka0d554d72015-10-10 22:42:18 +0300122using :ref:`pickle protocols <pickle-protocols>` older than protocol version 4.
123Protocol version 4 already supports this case. (Contributed by Serhiy
124Storchaka in :issue:`24164`.)
125
126
Martin Panterfad4b602015-11-14 01:29:17 +0000127rlcompleter
128-----------
Serhiy Storchakaab824222015-09-27 13:43:50 +0300129
130Private and special attribute names now are omitted unless the prefix starts
Martin Panterfad4b602015-11-14 01:29:17 +0000131with underscores. A space or a colon is added after some completed keywords.
Serhiy Storchakaab824222015-09-27 13:43:50 +0300132(Contributed by Serhiy Storchaka in :issue:`25011` and :issue:`25209`.)
133
Martin Panter6fe39262015-11-13 23:54:02 +0000134Names of most attributes listed by :func:`dir` are now completed.
135Previously, names of properties and slots which were not yet created on
136an instance were excluded. (Contributed by Martin Panter in :issue:`25590`.)
137
Serhiy Storchakaab824222015-09-27 13:43:50 +0300138
R David Murray4f098062015-11-28 12:24:52 -0500139telnetlib
140---------
141
142:class:`~telnetlib.Telnet` is now a context manager (contributed by
143Stéphane Wirtel in :issue:`25485`).
144
145
Berker Peksag960e8482015-10-08 12:27:06 +0300146urllib.robotparser
147------------------
148
Martin Panterfad4b602015-11-14 01:29:17 +0000149:class:`~urllib.robotparser.RobotFileParser` now supports the ``Crawl-delay`` and
Berker Peksag960e8482015-10-08 12:27:06 +0300150``Request-rate`` extensions.
151(Contributed by Nikolay Bogoychev in :issue:`16099`.)
152
153
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200154zipfile
155-------
156
157A new :meth:`ZipInfo.from_file() <zipfile.ZipInfo.from_file>` class method
Martin Panter288ed032016-02-10 05:45:55 +0000158allows making a :class:`~zipfile.ZipInfo` instance from a filesystem file.
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200159A new :meth:`ZipInfo.is_dir() <zipfile.ZipInfo.is_dir>` method can be used
160to check if the :class:`~zipfile.ZipInfo` instance represents a directory.
161(Contributed by Thomas Kluyver in :issue:`26039`.)
162
163
Martin Panter1fe0d132016-02-10 10:06:36 +0000164zlib
165----
166
167The :func:`~zlib.compress` function now accepts keyword arguments.
168(Contributed by Aviv Palivoda in :issue:`26243`.)
169
170
Yury Selivanovd1da5072015-05-27 22:09:10 -0400171Optimizations
172=============
173
Martin Panterfad4b602015-11-14 01:29:17 +0000174* The ASCII decoder is now up to 60 times as fast for error handlers
Victor Stinnerebcf9ed2015-10-14 10:10:00 +0200175 ``surrogateescape``, ``ignore`` and ``replace`` (Contributed
176 by Victor Stinner in :issue:`24870`).
Yury Selivanovd1da5072015-05-27 22:09:10 -0400177
Terry Jan Reedy6dc9ce12015-10-20 01:07:53 -0400178* The ASCII and the Latin1 encoders are now up to 3 times as fast for the
Martin Panterfad4b602015-11-14 01:29:17 +0000179 error handler ``surrogateescape`` (Contributed by Victor Stinner in :issue:`25227`).
Victor Stinnerc3713e92015-09-29 12:32:13 +0200180
Martin Panterfad4b602015-11-14 01:29:17 +0000181* The UTF-8 encoder is now up to 75 times as fast for error handlers
Victor Stinnerebcf9ed2015-10-14 10:10:00 +0200182 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass`` (Contributed
183 by Victor Stinner in :issue:`25267`).
Victor Stinner01ada392015-10-01 21:54:51 +0200184
Martin Panterfad4b602015-11-14 01:29:17 +0000185* The UTF-8 decoder is now up to 15 times as fast for error handlers
Victor Stinnerebcf9ed2015-10-14 10:10:00 +0200186 ``ignore``, ``replace`` and ``surrogateescape`` (Contributed
187 by Victor Stinner in :issue:`25301`).
188
189* ``bytes % args`` is now up to 2 times faster. (Contributed by Victor Stinner
190 in :issue:`25349`).
191
192* ``bytearray % args`` is now between 2.5 and 5 times faster. (Contributed by
193 Victor Stinner in :issue:`25399`).
Victor Stinner1d65d912015-10-05 13:43:50 +0200194
Victor Stinner2bf89932015-10-14 11:25:33 +0200195* Optimize :meth:`bytes.fromhex` and :meth:`bytearray.fromhex`: they are now
196 between 2x and 3.5x faster. (Contributed by Victor Stinner in :issue:`25401`).
197
Yury Selivanovd1da5072015-05-27 22:09:10 -0400198
199Build and C API Changes
200=======================
201
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000202* New :c:func:`Py_FinalizeEx` API which indicates if flushing buffered data
203 failed (:issue:`5319`).
Yury Selivanovd1da5072015-05-27 22:09:10 -0400204
205
206Deprecated
207==========
208
Yury Selivanov7a219112015-05-28 17:10:29 -0400209New Keywords
210------------
211
Yury Selivanov62f27b52015-08-03 14:57:21 -0400212``async`` and ``await`` are not recommended to be used as variable, class,
213function or module names. Introduced by :pep:`492` in Python 3.5, they will
214become proper keywords in Python 3.7.
Yury Selivanov7a219112015-05-28 17:10:29 -0400215
216
Yury Selivanovd1da5072015-05-27 22:09:10 -0400217Deprecated Python modules, functions and methods
218------------------------------------------------
219
Brett Cannoneae30792015-12-28 17:55:27 -0800220* :meth:`importlib.machinery.SourceFileLoader` and
221 :meth:`importlib.machinery.SourcelessFileLoader` are now deprecated. They
222 were the only remaining implementations of
223 :meth:`importlib.abc.Loader.load_module` in :mod:`importlib` that had not
224 been deprecated in previous versions of Python in favour of
225 :meth:`importlib.abc.Loader.exec_module`.
Yury Selivanovd1da5072015-05-27 22:09:10 -0400226
227
228Deprecated functions and types of the C API
229-------------------------------------------
230
231* None yet.
232
233
234Deprecated features
235-------------------
236
Brett Cannon9b638682015-10-16 15:14:27 -0700237* The ``pyvenv`` script has been deprecated in favour of ``python3 -m venv``.
238 This prevents confusion as to what Python interpreter ``pyvenv`` is
239 connected to and thus what Python interpreter will be used by the virtual
Brett Cannon63b85052016-01-15 13:33:03 -0800240 environment. (Contributed by Brett Cannon in :issue:`25154`.)
241
242* When performing a relative import, falling back on ``__name__`` and
243 ``__path__`` from the calling module when ``__spec__`` or
244 ``__package__`` are not defined now raises an :exc:`ImportWarning`.
245 (Contributed by Rose Ames in :issue:`25791`.)
Yury Selivanovd1da5072015-05-27 22:09:10 -0400246
247
Martin Panter7e3a91a2016-02-10 04:40:48 +0000248Deprecated Python behavior
249--------------------------
250
251* Raising the :exc:`StopIteration` exception inside a generator will now generate a
252 :exc:`DeprecationWarning`, and will trigger a :exc:`RuntimeError` in Python 3.7.
253 See :ref:`whatsnew-pep-479` for details.
254
255
Yury Selivanovd1da5072015-05-27 22:09:10 -0400256Removed
257=======
258
259API and Feature Removals
260------------------------
261
Yury Selivanov56613162015-07-23 17:51:34 +0300262* ``inspect.getmoduleinfo()`` was removed (was deprecated since CPython 3.3).
Yury Selivanov6dfbc5d2015-07-23 17:49:00 +0300263 :func:`inspect.getmodulename` should be used for obtaining the module
264 name for a given path.
265
Senthil Kumaran613065b2016-01-17 20:12:16 -0800266* ``traceback.Ignore`` class and ``traceback.usage``, ``traceback.modname``,
267 ``traceback.fullmodname``, ``traceback.find_lines_from_code``,
268 ``traceback.find_lines``, ``traceback.find_strings``,
269 ``traceback.find_executable_lines`` methods were removed from the
270 :mod:`traceback` module. They were undocumented methods deprecated since
271 Python 3.2 and equivalent functionality is available from private methods.
272
Yury Selivanovd1da5072015-05-27 22:09:10 -0400273
274Porting to Python 3.6
275=====================
276
277This section lists previously described changes and other bugfixes
278that may require changes to your code.
279
280Changes in the Python API
281-------------------------
282
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100283* The format of the ``co_lnotab`` attribute of code objects changed to support
284 negative line number delta. By default, Python does not emit bytecode with
285 negative line number delta. Functions using ``frame.f_lineno``,
286 ``PyFrame_GetLineNumber()`` or ``PyCode_Addr2Line()`` are not affected.
287 Functions decoding directly ``co_lnotab`` should be updated to use a signed
288 8-bit integer type for the line number delta, but it's only required to
289 support applications using negative line number delta. See
290 ``Objects/lnotab_notes.txt`` for the ``co_lnotab`` format and how to decode
291 it, and see the :pep:`511` for the rationale.
292
Brett Cannon1e3c3e92015-12-27 13:17:04 -0800293* The functions in the :mod:`compileall` module now return booleans instead
294 of ``1`` or ``0`` to represent success or failure, respectively. Thanks to
295 booleans being a subclass of integers, this should only be an issue if you
296 were doing identity checks for ``1`` or ``0``. See :issue:`25768`.
297
Robert Collinsdfa95c92015-08-10 09:53:30 +1200298* Reading the :attr:`~urllib.parse.SplitResult.port` attribute of
299 :func:`urllib.parse.urlsplit` and :func:`~urllib.parse.urlparse` results
300 now raises :exc:`ValueError` for out-of-range values, rather than
301 returning :const:`None`. See :issue:`20059`.
Yury Selivanovd1da5072015-05-27 22:09:10 -0400302
Brett Cannonc0d91af2015-10-16 12:21:37 -0700303* The :mod:`imp` module now raises a :exc:`DeprecationWarning` instead of
304 :exc:`PendingDeprecationWarning`.
305
Martin Panter28a465c2015-11-14 12:52:08 +0000306* The following modules have had missing APIs added to their :attr:`__all__`
Martin Pantere8afd012016-01-16 07:01:46 +0000307 attributes to match the documented APIs: :mod:`calendar`, :mod:`csv`,
308 :mod:`enum`, :mod:`fileinput`, :mod:`ftplib`, :mod:`logging`,
309 :mod:`optparse`, :mod:`tarfile`, :mod:`threading` and
Martin Panter28a465c2015-11-14 12:52:08 +0000310 :mod:`wave`. This means they will export new symbols when ``import *``
311 is used. See :issue:`23883`.
312
Brett Cannon849113a2016-01-22 15:25:50 -0800313* When performing a relative import, if ``__package__`` does not compare equal
314 to ``__spec__.parent`` then :exc:`ImportWarning` is raised.
315 (Contributed by Brett Cannon in :issue:`25791`.)
Brett Cannon63b85052016-01-15 13:33:03 -0800316
Brett Cannon9fa81262016-01-22 16:39:02 -0800317* When a relative import is performed and no parent package is known, then
318 :exc:`ImportError` will be raised. Previously, :exc:`SystemError` could be
319 raised. (Contribute by Brett Cannon in :issue:`18018`.)
320
Yury Selivanovd1da5072015-05-27 22:09:10 -0400321
322Changes in the C API
323--------------------
324
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000325* :c:func:`Py_Exit` (and the main interpreter) now override the exit status
326 with 120 if flushing buffered data failed. See :issue:`5319`.