Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 1 | **************************** |
| 2 | What's New In Python 3.7 |
| 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 | |
| 48 | This article explains the new features in Python 3.7, compared to 3.6. |
| 49 | |
Steve Dower | 3e7d93d | 2016-09-22 17:11:53 -0700 | [diff] [blame] | 50 | For full details, see the :ref:`changelog <changelog>`. |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 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.7 moves towards release, |
| 56 | so it's worth checking back even after reading earlier versions. |
| 57 | |
| 58 | |
| 59 | Summary -- Release highlights |
| 60 | ============================= |
| 61 | |
| 62 | .. This section singles out the most important changes in Python 3.7. |
| 63 | Brevity is key. |
| 64 | |
| 65 | |
| 66 | .. PEP-sized items next. |
| 67 | |
| 68 | |
| 69 | |
| 70 | New Features |
| 71 | ============ |
| 72 | |
Nick Coghlan | 6ea4186 | 2017-06-11 13:16:15 +1000 | [diff] [blame] | 73 | .. _whatsnew37-pep538: |
| 74 | |
| 75 | PEP 538: Legacy C Locale Coercion |
| 76 | --------------------------------- |
| 77 | |
| 78 | An ongoing challenge within the Python 3 series has been determining a sensible |
| 79 | default strategy for handling the "7-bit ASCII" text encoding assumption |
| 80 | currently implied by the use of the default C locale on non-Windows platforms. |
| 81 | |
| 82 | :pep:`538` updates the default interpreter command line interface to |
| 83 | automatically coerce that locale to an available UTF-8 based locale as |
| 84 | described in the documentation of the new :envvar:`PYTHONCOERCECLOCALE` |
| 85 | environment variable. Automatically setting ``LC_CTYPE`` this way means that |
| 86 | both the core interpreter and locale-aware C extensions (such as |
| 87 | :mod:`readline`) will assume the use of UTF-8 as the default text encoding, |
| 88 | rather than ASCII. |
| 89 | |
| 90 | The platform support definition in :pep:`11` has also been updated to limit |
| 91 | full text handling support to suitably configured non-ASCII based locales. |
| 92 | |
| 93 | As part of this change, the default error handler for ``stdin`` and ``stdout`` |
| 94 | is now ``surrogateescape`` (rather than ``strict``) when using any of the |
| 95 | defined coercion target locales (currently ``C.UTF-8``, ``C.utf8``, and |
| 96 | ``UTF-8``). The default error handler for ``stderr`` continues to be |
| 97 | ``backslashreplace``, regardless of locale. |
| 98 | |
Nick Coghlan | eb81795 | 2017-06-18 12:29:42 +1000 | [diff] [blame] | 99 | Locale coercion is silent by default, but to assist in debugging potentially |
| 100 | locale related integration problems, explicit warnings (emitted directly on |
| 101 | ``stderr`` can be requested by setting ``PYTHONCOERCECLOCALE=warn``. This |
| 102 | setting will also cause the Python runtime to emit a warning if the legacy C |
| 103 | locale remains active when the core interpreter is initialized. |
Nick Coghlan | 6ea4186 | 2017-06-11 13:16:15 +1000 | [diff] [blame] | 104 | |
| 105 | .. seealso:: |
| 106 | |
| 107 | :pep:`538` -- Coercing the legacy C locale to a UTF-8 based locale |
| 108 | PEP written and implemented by Nick Coghlan. |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 109 | |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 110 | .. _whatsnew37-pep553: |
| 111 | |
| 112 | PEP 553: Built-in breakpoint() |
| 113 | ------------------------------ |
| 114 | |
| 115 | :pep:`553` describes a new built-in called ``breakpoint()`` which makes it |
| 116 | easy and consistent to enter the Python debugger. Built-in ``breakpoint()`` |
| 117 | calls ``sys.breakpointhook()``. By default, this latter imports ``pdb`` and |
| 118 | then calls ``pdb.set_trace()``, but by binding ``sys.breakpointhook()`` to the |
| 119 | function of your choosing, ``breakpoint()`` can enter any debugger. Or, the |
| 120 | environment variable :envvar:`PYTHONBREAKPOINT` can be set to the callable of |
| 121 | your debugger of choice. Set ``PYTHONBREAKPOINT=0`` to completely disable |
| 122 | built-in ``breakpoint()``. |
| 123 | |
| 124 | .. seealso:: |
| 125 | |
| 126 | :pep:`553` -- Built-in breakpoint() |
| 127 | PEP written and implemented by Barry Warsaw |
| 128 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 129 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 130 | .. _whatsnew37-pep539: |
| 131 | |
| 132 | PEP 539: A New C-API for Thread-Local Storage in CPython |
| 133 | -------------------------------------------------------- |
| 134 | |
| 135 | While Python provides a C API for thread-local storage support; the existing |
| 136 | :ref:`Thread Local Storage (TLS) API <thread-local-storage-api>` has used |
| 137 | :c:type:`int` to represent TLS keys across all platforms. This has not |
| 138 | generally been a problem for officially-support platforms, but that is neither |
| 139 | POSIX-compliant, nor portable in any practical sense. |
| 140 | |
| 141 | :pep:`539` changes this by providing a new :ref:`Thread Specific Storage (TSS) |
| 142 | API <thread-specific-storage-api>` to CPython which supersedes use of the |
| 143 | existing TLS API within the CPython interpreter, while deprecating the existing |
| 144 | API. The TSS API uses a new type :c:type:`Py_tss_t` instead of :c:type:`int` |
| 145 | to represent TSS keys--an opaque type the definition of which may depend on |
| 146 | the underlying TLS implementation. Therefore, this will allow to build CPython |
| 147 | on platforms where the native TLS key is defined in a way that cannot be safely |
| 148 | cast to :c:type:`int`. |
| 149 | |
| 150 | Note that on platforms where the native TLS key is defined in a way that cannot |
| 151 | be safely cast to :c:type:`int`, all functions of the existing TLS API will be |
| 152 | no-op and immediately return failure. This indicates clearly that the old API |
| 153 | is not supported on platforms where it cannot be used reliably, and that no |
| 154 | effort will be made to add such support. |
| 155 | |
| 156 | .. seealso:: |
| 157 | |
| 158 | :pep:`539` -- A New C-API for Thread-Local Storage in CPython |
| 159 | PEP written by Erik M. Bray; implementation by Masayuki Yamamoto. |
| 160 | |
| 161 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 162 | Other Language Changes |
| 163 | ====================== |
| 164 | |
Serhiy Storchaka | 5bb8b91 | 2016-12-16 19:19:02 +0200 | [diff] [blame] | 165 | * More than 255 arguments can now be passed to a function, and a function can |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 166 | now have more than 255 parameters. (Contributed by Serhiy Storchaka in |
| 167 | :issue:`12844` and :issue:`18896`.) |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 168 | |
Serhiy Storchaka | dd1da7f | 2016-12-19 18:51:37 +0200 | [diff] [blame] | 169 | * :meth:`bytes.fromhex` and :meth:`bytearray.fromhex` now ignore all ASCII |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 170 | whitespace, not only spaces. (Contributed by Robert Xiao in :issue:`28927`.) |
Serhiy Storchaka | dd1da7f | 2016-12-19 18:51:37 +0200 | [diff] [blame] | 171 | |
Matthias Bussonnier | 1bc1564 | 2017-02-22 07:06:50 -0800 | [diff] [blame] | 172 | * :exc:`ImportError` now displays module name and module ``__file__`` path when |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 173 | ``from ... import ...`` fails. (Contributed by Matthias Bussonnier in :issue:`29546`.) |
Matthias Bussonnier | 1bc1564 | 2017-02-22 07:06:50 -0800 | [diff] [blame] | 174 | |
Serhiy Storchaka | f93234b | 2017-05-09 22:31:05 +0300 | [diff] [blame] | 175 | * Circular imports involving absolute imports with binding a submodule to |
| 176 | a name are now supported. |
| 177 | (Contributed by Serhiy Storchaka in :issue:`30024`.) |
| 178 | |
Serhiy Storchaka | 7e19dbc | 2017-05-13 12:40:52 +0300 | [diff] [blame] | 179 | * ``object.__format__(x, '')`` is now equivalent to ``str(x)`` rather than |
| 180 | ``format(str(self), '')``. |
| 181 | (Contributed by Serhiy Storchaka in :issue:`28974`.) |
| 182 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 183 | |
| 184 | New Modules |
| 185 | =========== |
| 186 | |
| 187 | * None yet. |
| 188 | |
| 189 | |
| 190 | Improved Modules |
| 191 | ================ |
| 192 | |
Pierre Quentel | cc3fa20 | 2017-05-08 14:08:34 +0200 | [diff] [blame] | 193 | |
R. David Murray | 0f6b9d2 | 2017-09-06 20:25:40 -0400 | [diff] [blame] | 194 | argparse |
| 195 | -------- |
| 196 | |
| 197 | The :meth:`~argparse.ArgumentParser.parse_intermixed_args` supports letting |
| 198 | the user intermix options and positional arguments on the command line, |
| 199 | as is possible in many unix commands. It supports most but not all |
| 200 | argparse features. (Contributed by paul.j3 in :issue:`14191`.) |
| 201 | |
| 202 | |
Xiang Zhang | 13f1f42 | 2017-05-03 11:16:21 +0800 | [diff] [blame] | 203 | binascii |
| 204 | -------- |
| 205 | |
| 206 | The :func:`~binascii.b2a_uu` function now accepts an optional *backtick* |
| 207 | keyword argument. When it's true, zeros are represented by ``'`'`` |
| 208 | instead of spaces. (Contributed by Xiang Zhang in :issue:`30103`.) |
| 209 | |
Oz N Tiram | 8b7a4cc | 2017-06-06 11:35:59 +0200 | [diff] [blame] | 210 | |
| 211 | calendar |
| 212 | -------- |
| 213 | |
Walter Dörwald | f5c58c7 | 2017-06-26 18:31:52 +0200 | [diff] [blame] | 214 | The class :class:`~calendar.HTMLCalendar` has new class attributes which ease |
| 215 | the customisation of the CSS classes in the produced HTML calendar. |
Oz N Tiram | 8b7a4cc | 2017-06-06 11:35:59 +0200 | [diff] [blame] | 216 | (Contributed by Oz Tiram in :issue:`30095`.) |
| 217 | |
| 218 | cgi |
| 219 | --- |
| 220 | |
| 221 | :func:`~cgi.parse_multipart` returns the same results as |
| 222 | :class:`~FieldStorage` : for non-file fields, the value associated to a key |
| 223 | is a list of strings, not bytes. |
| 224 | (Contributed by Pierre Quentel in :issue:`29979`.) |
| 225 | |
Jelle Zijlstra | 2e62469 | 2017-04-30 18:25:58 -0700 | [diff] [blame] | 226 | contextlib |
| 227 | ---------- |
| 228 | |
| 229 | :func:`contextlib.asynccontextmanager` has been added. (Contributed by |
| 230 | Jelle Zijlstra in :issue:`29679`.) |
| 231 | |
Serhiy Storchaka | 1efbf92 | 2017-06-11 14:09:39 +0300 | [diff] [blame] | 232 | dis |
| 233 | --- |
| 234 | |
| 235 | The :func:`~dis.dis` function now is able to |
| 236 | disassemble nested code objects (the code of comprehensions, generator |
| 237 | expressions and nested functions, and the code used for building nested |
| 238 | classes). (Contributed by Serhiy Storchaka in :issue:`11822`.) |
| 239 | |
Ryan Gonzalez | f9f87f0 | 2017-04-14 04:00:25 -0500 | [diff] [blame] | 240 | distutils |
| 241 | --------- |
| 242 | |
| 243 | README.rst is now included in the list of distutils standard READMEs and |
| 244 | therefore included in source distributions. |
| 245 | (Contributed by Ryan Gonzalez in :issue:`11913`.) |
| 246 | |
Pierre Quentel | 351adda | 2017-04-02 12:26:12 +0200 | [diff] [blame] | 247 | http.server |
| 248 | ----------- |
| 249 | |
| 250 | :class:`~http.server.SimpleHTTPRequestHandler` supports the HTTP |
| 251 | If-Modified-Since header. The server returns the 304 response status if the |
| 252 | target file was not modified after the time specified in the header. |
| 253 | (Contributed by Pierre Quentel in :issue:`29654`.) |
| 254 | |
Stéphane Wirtel | a17a2f5 | 2017-05-24 09:29:06 +0200 | [diff] [blame] | 255 | Add the parameter ``directory`` to the :class:`~http.server.SimpleHTTPRequestHandler` |
| 256 | and the ``--directory`` to the command line of the module :mod:`~http.server`. |
| 257 | With this parameter, the server serves the specified directory, by default it uses the current working directory. |
| 258 | (Contributed by Stéphane Wirtel and Julien Palard in :issue:`28707`.) |
| 259 | |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 260 | locale |
| 261 | ------ |
| 262 | |
| 263 | Added another argument *monetary* in :meth:`format_string` of :mod:`locale`. |
| 264 | If *monetary* is true, the conversion uses monetary thousands separator and |
| 265 | grouping strings. (Contributed by Garvit in :issue:`10379`.) |
| 266 | |
Mark Dickinson | a0ce375 | 2017-04-05 18:34:27 +0100 | [diff] [blame] | 267 | math |
| 268 | ---- |
| 269 | |
| 270 | New :func:`~math.remainder` function, implementing the IEEE 754-style remainder |
| 271 | operation. (Contributed by Mark Dickinson in :issue:`29962`.) |
| 272 | |
Serhiy Storchaka | 8f6b344 | 2017-03-07 14:33:21 +0200 | [diff] [blame] | 273 | os |
| 274 | -- |
| 275 | |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 276 | Added support for :class:`bytes` paths in :func:`~os.fwalk`. (Contributed by |
| 277 | Serhiy Storchaka in :issue:`28682`.) |
Serhiy Storchaka | 8f6b344 | 2017-03-07 14:33:21 +0200 | [diff] [blame] | 278 | |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 279 | Added support for :ref:`file descriptors <path_fd>` in :func:`~os.scandir` |
| 280 | on Unix. (Contributed by Serhiy Storchaka in :issue:`25996`.) |
| 281 | |
Antoine Pitrou | f7ecfac | 2017-05-28 11:35:14 +0200 | [diff] [blame] | 282 | New function :func:`os.register_at_fork` allows registering Python callbacks |
| 283 | to be executed on a process fork. (Contributed by Antoine Pitrou in |
| 284 | :issue:`16500`.) |
| 285 | |
Barry Warsaw | 35425d6 | 2017-09-22 12:29:42 -0400 | [diff] [blame] | 286 | pdb |
| 287 | --- |
| 288 | |
| 289 | :func:`~pdb.set_trace` now takes an optional ``header`` keyword-only |
| 290 | argument. If given, this is printed to the console just before debugging |
| 291 | begins. |
| 292 | |
Barry Warsaw | 973b901 | 2017-09-04 17:29:27 -0400 | [diff] [blame] | 293 | string |
| 294 | ------ |
| 295 | |
| 296 | :class:`string.Template` now lets you to optionally modify the regular |
| 297 | expression pattern for braced placeholders and non-braced placeholders |
| 298 | separately. (Contributed by Barry Warsaw in :issue:`1198569`.) |
| 299 | |
Serhiy Storchaka | d9c956f | 2017-01-11 20:13:03 +0200 | [diff] [blame] | 300 | unittest.mock |
| 301 | ------------- |
| 302 | |
| 303 | The :const:`~unittest.mock.sentinel` attributes now preserve their identity |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 304 | when they are :mod:`copied <copy>` or :mod:`pickled <pickle>`. (Contributed by |
| 305 | Serhiy Storchaka in :issue:`20804`.) |
Serhiy Storchaka | d9c956f | 2017-01-11 20:13:03 +0200 | [diff] [blame] | 306 | |
Xiang Zhang | 267b9d2 | 2017-02-28 17:12:52 +0800 | [diff] [blame] | 307 | xmlrpc.server |
| 308 | ------------- |
| 309 | |
| 310 | :meth:`register_function` of :class:`xmlrpc.server.SimpleXMLRPCDispatcher` and |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 311 | its subclasses can be used as a decorator. (Contributed by Xiang Zhang in |
| 312 | :issue:`7769`.) |
Xiang Zhang | 267b9d2 | 2017-02-28 17:12:52 +0800 | [diff] [blame] | 313 | |
Benjamin Peterson | 279a962 | 2017-06-22 22:31:08 -0700 | [diff] [blame] | 314 | unicodedata |
| 315 | ----------- |
| 316 | |
| 317 | The internal :mod:`unicodedata` database has been upgraded to use `Unicode 10 |
| 318 | <http://www.unicode.org/versions/Unicode10.0.0/>`_. (Contributed by Benjamin |
| 319 | Peterson.) |
| 320 | |
Ratnadeep Debnath | 21024f0 | 2017-02-25 14:30:28 +0530 | [diff] [blame] | 321 | urllib.parse |
| 322 | ------------ |
| 323 | |
Daniel Himmelstein | dadca48 | 2017-08-10 21:45:12 -0400 | [diff] [blame] | 324 | :func:`urllib.parse.quote` has been updated from RFC 2396 to RFC 3986, |
Ratnadeep Debnath | 21024f0 | 2017-02-25 14:30:28 +0530 | [diff] [blame] | 325 | adding `~` to the set of characters that is never quoted by default. |
| 326 | (Contributed by Christian Theune and Ratnadeep Debnath in :issue:`16285`.) |
| 327 | |
Xiang Zhang | 13f1f42 | 2017-05-03 11:16:21 +0800 | [diff] [blame] | 328 | uu |
| 329 | -- |
| 330 | |
| 331 | Function :func:`~uu.encode` now accepts an optional *backtick* |
| 332 | keyword argument. When it's true, zeros are represented by ``'`'`` |
| 333 | instead of spaces. (Contributed by Xiang Zhang in :issue:`30103`.) |
| 334 | |
scoder | 101a5e8 | 2017-09-30 15:35:21 +0200 | [diff] [blame] | 335 | xml.etree |
| 336 | --------- |
| 337 | |
| 338 | :ref:`ElementPath <elementtree-xpath>` predicates in the :meth:`find` |
| 339 | methods can now compare text of the current node with ``[. = "text"]``, |
| 340 | not only text in children. Predicates also allow adding spaces for |
| 341 | better readability. (Contributed by Stefan Behnel in :issue:`31648`.) |
| 342 | |
Paul Moore | 0780bf7 | 2017-08-26 18:04:12 +0100 | [diff] [blame] | 343 | zipapp |
| 344 | ------ |
| 345 | |
| 346 | Function :func:`zipapp.create_archive` now accepts an optional *filter* |
Zhiming Wang | d87b105 | 2017-09-29 13:31:52 -0400 | [diff] [blame] | 347 | argument to allow the user to select which files should be included in the |
| 348 | archive, and an optional *compressed* argument to generate a compressed |
Paul Moore | 0780bf7 | 2017-08-26 18:04:12 +0100 | [diff] [blame] | 349 | archive. |
| 350 | |
Zhiming Wang | d87b105 | 2017-09-29 13:31:52 -0400 | [diff] [blame] | 351 | A command line option ``--compress`` has also been added to support |
| 352 | compression. |
| 353 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 354 | |
| 355 | Optimizations |
| 356 | ============= |
| 357 | |
Yury Selivanov | f239213 | 2016-12-13 19:03:51 -0500 | [diff] [blame] | 358 | * Added two new opcodes: ``LOAD_METHOD`` and ``CALL_METHOD`` to avoid |
| 359 | instantiation of bound method objects for method calls, which results |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 360 | in method calls being faster up to 20%. (Contributed by Yury Selivanov and |
| 361 | INADA Naoki in :issue:`26110`.) |
Yury Selivanov | f239213 | 2016-12-13 19:03:51 -0500 | [diff] [blame] | 362 | |
Serhiy Storchaka | 0a58f72 | 2017-03-30 09:11:10 +0300 | [diff] [blame] | 363 | * Searching some unlucky Unicode characters (like Ukrainian capital "Є") |
| 364 | in a string was to 25 times slower than searching other characters. |
| 365 | Now it is slower only by 3 times in worst case. |
| 366 | (Contributed by Serhiy Storchaka in :issue:`24821`.) |
| 367 | |
Serhiy Storchaka | 97553fd | 2017-03-11 23:37:16 +0200 | [diff] [blame] | 368 | * Fast implementation from standard C library is now used for functions |
Paul Romano | 992f613 | 2017-09-15 12:00:57 -0500 | [diff] [blame] | 369 | :func:`~math.erf` and :func:`~math.erfc` in the :mod:`math` module. |
| 370 | (Contributed by Serhiy Storchaka in :issue:`26121`.) |
Serhiy Storchaka | 97553fd | 2017-03-11 23:37:16 +0200 | [diff] [blame] | 371 | |
Serhiy Storchaka | ea720fe | 2017-03-30 09:12:31 +0300 | [diff] [blame] | 372 | * The :func:`os.fwalk` function has been sped up by 2 times. This was done |
| 373 | using the :func:`os.scandir` function. |
| 374 | (Contributed by Serhiy Storchaka in :issue:`25996`.) |
| 375 | |
Serhiy Storchaka | 6d336a0 | 2017-05-09 23:37:14 +0300 | [diff] [blame] | 376 | * Optimized case-insensitive matching and searching of :mod:`regular |
| 377 | expressions <re>`. Searching some patterns can now be up to 20 times faster. |
| 378 | (Contributed by Serhiy Storchaka in :issue:`30285`.) |
| 379 | |
INADA Naoki | c1c47c1 | 2017-10-05 17:19:26 +0900 | [diff] [blame] | 380 | * :func:`re.compile` now converts ``flags`` parameter to int object if |
| 381 | it is ``RegexFlag``. It is now as fast as Python 3.5, and faster than |
| 382 | Python 3.6 about 10% depending on the pattern. |
| 383 | (Contributed by INADA Naoki in :issue:`31671`.) |
| 384 | |
Giampaolo Rodola | fbfaa6f | 2017-06-09 22:20:41 +0200 | [diff] [blame] | 385 | * :meth:`selectors.EpollSelector.modify`, :meth:`selectors.PollSelector.modify` |
| 386 | and :meth:`selectors.DevpollSelector.modify` may be around 10% faster under |
| 387 | heavy loads. (Contributed by Giampaolo Rodola' in :issue:`30014`) |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 388 | |
| 389 | Build and C API Changes |
| 390 | ======================= |
| 391 | |
Zachary Ware | f40d4dd | 2016-09-17 01:25:24 -0500 | [diff] [blame] | 392 | * A full copy of libffi is no longer bundled for use when building the |
| 393 | :mod:`_ctypes <ctypes>` module on non-OSX UNIX platforms. An installed copy |
| 394 | of libffi is now required when building ``_ctypes`` on such platforms. |
| 395 | Contributed by Zachary Ware in :issue:`27979`. |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 396 | |
Serhiy Storchaka | 007d7ff | 2016-11-22 07:58:08 +0200 | [diff] [blame] | 397 | * The fields :c:member:`name` and :c:member:`doc` of structures |
| 398 | :c:type:`PyMemberDef`, :c:type:`PyGetSetDef`, |
| 399 | :c:type:`PyStructSequence_Field`, :c:type:`PyStructSequence_Desc`, |
| 400 | and :c:type:`wrapperbase` are now of type ``const char *`` rather of |
| 401 | ``char *``. (Contributed by Serhiy Storchaka in :issue:`28761`.) |
| 402 | |
Serhiy Storchaka | 2a404b6 | 2017-01-22 23:07:07 +0200 | [diff] [blame] | 403 | * The result of :c:func:`PyUnicode_AsUTF8AndSize` and :c:func:`PyUnicode_AsUTF8` |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 404 | is now of type ``const char *`` rather of ``char *``. (Contributed by Serhiy |
| 405 | Storchaka in :issue:`28769`.) |
Serhiy Storchaka | 2a404b6 | 2017-01-22 23:07:07 +0200 | [diff] [blame] | 406 | |
Oren Milman | 0ccc0f6 | 2017-10-08 11:17:46 +0300 | [diff] [blame^] | 407 | * The result of :c:func:`PyMapping_Keys`, :c:func:`PyMapping_Values` and |
| 408 | :c:func:`PyMapping_Items` is now always a list, rather than a list or a |
| 409 | tuple. (Contributed by Oren Milman in :issue:`28280`.) |
| 410 | |
Serhiy Storchaka | 6e08baf | 2017-01-25 13:27:44 +0200 | [diff] [blame] | 411 | * Added functions :c:func:`PySlice_Unpack` and :c:func:`PySlice_AdjustIndices`. |
| 412 | (Contributed by Serhiy Storchaka in :issue:`27867`.) |
| 413 | |
Antoine Pitrou | f7ecfac | 2017-05-28 11:35:14 +0200 | [diff] [blame] | 414 | * :c:func:`PyOS_AfterFork` is deprecated in favour of the new functions |
| 415 | :c:func:`PyOS_BeforeFork`, :c:func:`PyOS_AfterFork_Parent` and |
| 416 | :c:func:`PyOS_AfterFork_Child`. (Contributed by Antoine Pitrou in |
| 417 | :issue:`16500`.) |
| 418 | |
Zachary Ware | cb8c048 | 2017-06-15 22:34:59 -0500 | [diff] [blame] | 419 | * The Windows build process no longer depends on Subversion to pull in external |
| 420 | sources, a Python script is used to download zipfiles from GitHub instead. |
| 421 | If Python 3.6 is not found on the system (via ``py -3.6``), NuGet is used to |
| 422 | download a copy of 32-bit Python for this purpose. (Contributed by Zachary |
| 423 | Ware in :issue:`30450`.) |
| 424 | |
Antoine Pitrou | a6a4dc8 | 2017-09-07 18:56:24 +0200 | [diff] [blame] | 425 | * Support for building ``--without-threads`` is removed. |
| 426 | (Contributed by Antoine Pitrou in :issue:`31370`.). |
| 427 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 428 | |
Nick Coghlan | 5a85167 | 2017-09-08 10:14:16 +1000 | [diff] [blame] | 429 | Other CPython Implementation Changes |
| 430 | ==================================== |
| 431 | |
| 432 | * Trace hooks may now opt out of receiving ``line`` events from the interpreter |
| 433 | by setting the new ``f_trace_lines`` attribute to :const:`False` on the frame |
| 434 | being traced. (Contributed by Nick Coghlan in :issue:`31344`.) |
| 435 | |
| 436 | * Trace hooks may now opt in to receiving ``opcode`` events from the interpreter |
| 437 | by setting the new ``f_trace_opcodes`` attribute to :const:`True` on the frame |
| 438 | being traced. (Contributed by Nick Coghlan in :issue:`31344`.) |
| 439 | |
| 440 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 441 | Deprecated |
| 442 | ========== |
| 443 | |
Serhiy Storchaka | 6e08baf | 2017-01-25 13:27:44 +0200 | [diff] [blame] | 444 | - Function :c:func:`PySlice_GetIndicesEx` is deprecated and replaced with |
| 445 | a macro if ``Py_LIMITED_API`` is not set or set to the value between |
| 446 | ``0x03050400`` and ``0x03060000`` (not including) or ``0x03060100`` or |
| 447 | higher. (Contributed by Serhiy Storchaka in :issue:`27867`.) |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 448 | |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 449 | - Deprecated :meth:`format` from :mod:`locale`, use the :meth:`format_string` |
| 450 | instead. (Contributed by Garvit in :issue:`10379`.) |
| 451 | |
Matthias Bussonnier | 1d4601c | 2017-02-15 18:00:32 -0800 | [diff] [blame] | 452 | - Methods |
| 453 | :meth:`MetaPathFinder.find_module() <importlib.abc.MetaPathFinder.find_module>` |
| 454 | (replaced by |
| 455 | :meth:`MetaPathFinder.find_spec() <importlib.abc.MetaPathFinder.find_spec>` |
| 456 | ) and |
| 457 | :meth:`PathEntryFinder.find_loader() <importlib.abc.PathEntryFinder.find_loader>` |
| 458 | (replaced by |
| 459 | :meth:`PathEntryFinder.find_spec() <importlib.abc.PathEntryFinder.find_spec>`) |
| 460 | both deprecated in Python 3.4 now emit :exc:`DeprecationWarning`. (Contributed |
| 461 | by Matthias Bussonnier in :issue:`29576`) |
| 462 | |
Serhiy Storchaka | f659598 | 2017-03-12 13:15:01 +0200 | [diff] [blame] | 463 | - Using non-integer value for selecting a plural form in :mod:`gettext` is |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 464 | now deprecated. It never correctly worked. (Contributed by Serhiy Storchaka |
| 465 | in :issue:`28692`.) |
Serhiy Storchaka | f659598 | 2017-03-12 13:15:01 +0200 | [diff] [blame] | 466 | |
Victor Stinner | 89a1c93 | 2017-05-15 11:01:21 +0200 | [diff] [blame] | 467 | - The :mod:`macpath` is now deprecated and will be removed in Python 3.8. |
| 468 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 469 | |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 470 | Changes in the C API |
| 471 | -------------------- |
| 472 | |
| 473 | - The type of results of :c:func:`PyThread_start_new_thread` and |
| 474 | :c:func:`PyThread_get_thread_ident`, and the *id* parameter of |
| 475 | :c:func:`PyThreadState_SetAsyncExc` changed from :c:type:`long` to |
| 476 | :c:type:`unsigned long`. |
| 477 | (Contributed by Serhiy Storchaka in :issue:`6532`.) |
| 478 | |
Serhiy Storchaka | e613e6a | 2017-06-27 16:03:14 +0300 | [diff] [blame] | 479 | - :c:func:`PyUnicode_AsWideCharString` now raises a :exc:`ValueError` if the |
| 480 | second argument is *NULL* and the :c:type:`wchar_t*` string contains null |
| 481 | characters. (Contributed by Serhiy Storchaka in :issue:`30708`.) |
| 482 | |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 483 | |
Steve (Gadget) Barnes | 5b8f972 | 2017-06-28 20:14:52 +0100 | [diff] [blame] | 484 | Windows Only |
| 485 | ------------ |
| 486 | - The python launcher, (py.exe), can accept 32 & 64 bit specifiers **without** |
| 487 | having to specify a minor version as well. So ``py -3-32`` and ``py -3-64`` |
| 488 | become valid as well as ``py -3.7-32``, also the -*m*-64 and -*m.n*-64 forms |
| 489 | are now accepted to force 64 bit python even if 32 bit would have otherwise |
| 490 | been used. If the specified version is not available py.exe will error exit. |
| 491 | (Contributed by Steve Barnes in :issue:`30291`.) |
| 492 | |
| 493 | - The launcher can be run as "py -0" to produce a list of the installed pythons, |
| 494 | *with default marked with an asterix*. Running "py -0p" will include the paths. |
| 495 | If py is run with a version specifier that cannot be matched it will also print |
| 496 | the *short form* list of available specifiers. |
| 497 | (Contributed by Steve Barnes in :issue:`30362`.) |
| 498 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 499 | Removed |
| 500 | ======= |
| 501 | |
Serhiy Storchaka | ff3dbe9 | 2016-12-06 19:25:19 +0200 | [diff] [blame] | 502 | API and Feature Removals |
| 503 | ------------------------ |
| 504 | |
| 505 | * Unknown escapes consisting of ``'\'`` and an ASCII letter in replacement |
Serhiy Storchaka | b2d6179 | 2017-01-13 21:14:40 +0200 | [diff] [blame] | 506 | templates for :func:`re.sub` were deprecated in Python 3.5, and will now |
| 507 | cause an error. |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 508 | |
Serhiy Storchaka | 4f76fb1 | 2017-01-13 13:25:24 +0200 | [diff] [blame] | 509 | * Removed support of the *exclude* argument in :meth:`tarfile.TarFile.add`. |
Serhiy Storchaka | b2d6179 | 2017-01-13 21:14:40 +0200 | [diff] [blame] | 510 | It was deprecated in Python 2.7 and 3.2. Use the *filter* argument instead. |
Serhiy Storchaka | 4f76fb1 | 2017-01-13 13:25:24 +0200 | [diff] [blame] | 511 | |
Serhiy Storchaka | 9ed707e | 2017-01-13 20:55:05 +0200 | [diff] [blame] | 512 | * The ``splitunc()`` function in the :mod:`ntpath` module was deprecated in |
| 513 | Python 3.1, and has now been removed. Use the :func:`~os.path.splitdrive` |
| 514 | function instead. |
| 515 | |
Raymond Hettinger | 8b57d73 | 2017-09-10 10:23:36 -0700 | [diff] [blame] | 516 | * :func:`collections.namedtuple` no longer supports the *verbose* parameter |
| 517 | or ``_source`` attribute which showed the generated source code for the |
| 518 | named tuple class. This was part of an optimization designed to speed-up |
| 519 | class creation. (Contributed by Jelle Zijlstra with further improvements |
| 520 | by INADA Naoki, Serhiy Storchaka, and Raymond Hettinger in :issue:`28638`.) |
| 521 | |
Serhiy Storchaka | 2e56424 | 2017-03-06 17:01:06 +0200 | [diff] [blame] | 522 | * Functions :func:`bool`, :func:`float`, :func:`list` and :func:`tuple` no |
| 523 | longer take keyword arguments. The first argument of :func:`int` can now |
Daniel Porteous | 77f68e3 | 2017-06-21 10:21:48 +1000 | [diff] [blame] | 524 | be passed only as positional argument. |
Serhiy Storchaka | 2e56424 | 2017-03-06 17:01:06 +0200 | [diff] [blame] | 525 | |
Serhiy Storchaka | edef358 | 2017-05-15 13:21:31 +0300 | [diff] [blame] | 526 | * Removed previously deprecated in Python 2.4 classes ``Plist``, ``Dict`` and |
| 527 | ``_InternalDict`` in the :mod:`plistlib` module. Dict values in the result |
| 528 | of functions :func:`~plistlib.readPlist` and |
| 529 | :func:`~plistlib.readPlistFromBytes` are now normal dicts. You no longer |
| 530 | can use attribute access to access items of these dictionaries. |
| 531 | |
Ned Deily | 4829bc6 | 2016-09-12 17:29:04 -0400 | [diff] [blame] | 532 | |
| 533 | Porting to Python 3.7 |
| 534 | ===================== |
| 535 | |
| 536 | This section lists previously described changes and other bugfixes |
| 537 | that may require changes to your code. |
| 538 | |
| 539 | |
Serhiy Storchaka | 009b0a1 | 2017-01-13 09:10:51 +0200 | [diff] [blame] | 540 | Changes in the Python API |
| 541 | ------------------------- |
| 542 | |
Sanyam Khurana | b9c3da5 | 2017-06-13 22:41:14 +0530 | [diff] [blame] | 543 | * :meth:`pkgutil.walk_packages` now raises ValueError if *path* is a string. |
| 544 | Previously an empty list was returned. (Contributed by Sanyam Khurana in |
| 545 | :issue:`24744`.) |
| 546 | |
Serhiy Storchaka | 009b0a1 | 2017-01-13 09:10:51 +0200 | [diff] [blame] | 547 | * A format string argument for :meth:`string.Formatter.format` |
| 548 | is now :ref:`positional-only <positional-only_parameter>`. |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 549 | Passing it as a keyword argument was deprecated in Python 3.5. (Contributed |
| 550 | by Serhiy Storchaka in :issue:`29193`.) |
Serhiy Storchaka | cc28337 | 2017-01-13 09:23:15 +0200 | [diff] [blame] | 551 | |
| 552 | * Attributes :attr:`~http.cookies.Morsel.key`, |
| 553 | :attr:`~http.cookies.Morsel.value` and |
| 554 | :attr:`~http.cookies.Morsel.coded_value` of class |
| 555 | :class:`http.cookies.Morsel` are now read-only. |
Serhiy Storchaka | b2d6179 | 2017-01-13 21:14:40 +0200 | [diff] [blame] | 556 | Assigning to them was deprecated in Python 3.5. |
Serhiy Storchaka | cc28337 | 2017-01-13 09:23:15 +0200 | [diff] [blame] | 557 | Use the :meth:`~http.cookies.Morsel.set` method for setting them. |
| 558 | (Contributed by Serhiy Storchaka in :issue:`29192`.) |
INADA Naoki | 015bce6 | 2017-01-16 17:23:30 +0900 | [diff] [blame] | 559 | |
INADA Naoki | cb41b27 | 2017-02-23 00:31:59 +0900 | [diff] [blame] | 560 | * ``Module``, ``FunctionDef``, ``AsyncFunctionDef``, and |
| 561 | ``ClassDef`` AST nodes now have a new ``docstring`` field. |
| 562 | The first statement in their body is not considered as a docstring |
| 563 | anymore. ``co_firstlineno`` and ``co_lnotab`` of code object for class |
Garvit Khatri | 1cf93a7 | 2017-03-28 23:43:38 +0800 | [diff] [blame] | 564 | and module are affected by this change. (Contributed by INADA Naoki and |
| 565 | Eugene Toder in :issue:`29463`.) |
INADA Naoki | 015bce6 | 2017-01-16 17:23:30 +0900 | [diff] [blame] | 566 | |
Serhiy Storchaka | e304e33 | 2017-03-24 13:27:42 +0200 | [diff] [blame] | 567 | * The *mode* argument of :func:`os.makedirs` no longer affects the file |
| 568 | permission bits of newly-created intermediate-level directories. |
| 569 | To set their file permission bits you can set the umask before invoking |
| 570 | ``makedirs()``. |
| 571 | (Contributed by Serhiy Storchaka in :issue:`19930`.) |
| 572 | |
Victor Stinner | f87b85f | 2017-06-23 15:11:12 +0200 | [diff] [blame] | 573 | * The :attr:`struct.Struct.format` type is now :class:`str` instead of |
| 574 | :class:`bytes`. (Contributed by Victor Stinner in :issue:`21071`.) |
| 575 | |
Segev Finer | 9f3bdcb | 2017-06-28 23:51:00 +0300 | [diff] [blame] | 576 | * Due to internal changes in :mod:`socket` you won't be able to |
| 577 | :func:`socket.fromshare` a socket :func:`~socket.socket.share`-ed in older |
| 578 | Python versions. |
| 579 | |
Utkarsh Upadhyay | 8e45318 | 2017-07-28 14:42:56 +0200 | [diff] [blame] | 580 | * ``repr`` for :class:`datetime.timedelta` has changed to include keyword arguments |
| 581 | in the output. (Contributed by Utkarsh Upadhyay in :issue:`30302`.) |
| 582 | |
Serhiy Storchaka | e304e33 | 2017-03-24 13:27:42 +0200 | [diff] [blame] | 583 | |
INADA Naoki | 015bce6 | 2017-01-16 17:23:30 +0900 | [diff] [blame] | 584 | CPython bytecode changes |
| 585 | ------------------------ |
| 586 | |
Martin Panter | 91a8866 | 2017-01-24 00:30:06 +0000 | [diff] [blame] | 587 | * Added two new opcodes: :opcode:`LOAD_METHOD` and :opcode:`CALL_METHOD`. |
INADA Naoki | 015bce6 | 2017-01-16 17:23:30 +0900 | [diff] [blame] | 588 | (Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.) |