Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 1 | **************************** |
| 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 | |
| 48 | This article explains the new features in Python 3.6, compared to 3.5. |
| 49 | |
| 50 | For 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 | |
| 59 | Summary -- 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 | |
| 83 | Other Language Changes |
| 84 | ====================== |
| 85 | |
| 86 | * None yet. |
| 87 | |
| 88 | |
| 89 | New Modules |
| 90 | =========== |
| 91 | |
| 92 | * None yet. |
| 93 | |
| 94 | |
| 95 | Improved Modules |
| 96 | ================ |
| 97 | |
Berker Peksag | b6c9572 | 2015-10-08 13:58:49 +0300 | [diff] [blame] | 98 | datetime |
| 99 | -------- |
| 100 | |
| 101 | :meth:`datetime.stftime <datetime.datetime.stftime>` and |
| 102 | :meth:`date.stftime <datetime.date.stftime>` methods now support ISO 8601 date |
| 103 | directives ``%G``, ``%u`` and ``%V``. |
| 104 | (Contributed by Ashley Anderson in :issue:`12006`.) |
| 105 | |
| 106 | |
Raymond Hettinger | 47d159f | 2015-08-16 19:43:34 -0700 | [diff] [blame] | 107 | operator |
| 108 | -------- |
| 109 | |
Berker Peksag | b6c9572 | 2015-10-08 13:58:49 +0300 | [diff] [blame] | 110 | New object :data:`operator.subscript` makes it easier to create complex |
| 111 | indexers. For example: ``subscript[0:10:2] == slice(0, 10, 2)`` |
| 112 | (Contributed by Joe Jevnik in :issue:`24379`.) |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 113 | |
| 114 | |
Serhiy Storchaka | ab82422 | 2015-09-27 13:43:50 +0300 | [diff] [blame] | 115 | rlcomplete |
| 116 | ---------- |
| 117 | |
| 118 | Private and special attribute names now are omitted unless the prefix starts |
| 119 | with underscores. A space or a colon can be added after completed keyword. |
| 120 | (Contributed by Serhiy Storchaka in :issue:`25011` and :issue:`25209`.) |
| 121 | |
| 122 | |
Berker Peksag | 960e848 | 2015-10-08 12:27:06 +0300 | [diff] [blame] | 123 | urllib.robotparser |
| 124 | ------------------ |
| 125 | |
| 126 | :class:`~urllib.robotparser.RobotFileParser` now supports ``Crawl-delay`` and |
| 127 | ``Request-rate`` extensions. |
| 128 | (Contributed by Nikolay Bogoychev in :issue:`16099`.) |
| 129 | |
| 130 | |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 131 | Optimizations |
| 132 | ============= |
| 133 | |
Victor Stinner | f96418d | 2015-09-21 23:06:27 +0200 | [diff] [blame] | 134 | * The ASCII decoder is now up to 60 times as fast for error handlers: |
| 135 | ``surrogateescape``, ``ignore`` and ``replace``. |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 136 | |
Victor Stinner | c3713e9 | 2015-09-29 12:32:13 +0200 | [diff] [blame] | 137 | * The ASCII and the Latin1 encoders are now up to 3 times as fast for the error |
| 138 | error ``surrogateescape``. |
| 139 | |
Victor Stinner | 01ada39 | 2015-10-01 21:54:51 +0200 | [diff] [blame] | 140 | * The UTF-8 encoder is now up to 75 times as fast for error handlers: |
| 141 | ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. |
| 142 | |
Victor Stinner | 1d65d91 | 2015-10-05 13:43:50 +0200 | [diff] [blame] | 143 | * The UTF-8 decoder is now up to 15 times as fast for error handlers: |
| 144 | ``ignore``, ``replace`` and ``surrogateescape``. |
| 145 | |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 146 | |
| 147 | Build and C API Changes |
| 148 | ======================= |
| 149 | |
| 150 | * None yet. |
| 151 | |
| 152 | |
| 153 | Deprecated |
| 154 | ========== |
| 155 | |
Yury Selivanov | 7a21911 | 2015-05-28 17:10:29 -0400 | [diff] [blame] | 156 | New Keywords |
| 157 | ------------ |
| 158 | |
Yury Selivanov | 62f27b5 | 2015-08-03 14:57:21 -0400 | [diff] [blame] | 159 | ``async`` and ``await`` are not recommended to be used as variable, class, |
| 160 | function or module names. Introduced by :pep:`492` in Python 3.5, they will |
| 161 | become proper keywords in Python 3.7. |
Yury Selivanov | 7a21911 | 2015-05-28 17:10:29 -0400 | [diff] [blame] | 162 | |
| 163 | |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 164 | Deprecated Python modules, functions and methods |
| 165 | ------------------------------------------------ |
| 166 | |
| 167 | * None yet. |
| 168 | |
| 169 | |
| 170 | Deprecated functions and types of the C API |
| 171 | ------------------------------------------- |
| 172 | |
| 173 | * None yet. |
| 174 | |
| 175 | |
| 176 | Deprecated features |
| 177 | ------------------- |
| 178 | |
| 179 | * None yet. |
| 180 | |
| 181 | |
| 182 | Removed |
| 183 | ======= |
| 184 | |
| 185 | API and Feature Removals |
| 186 | ------------------------ |
| 187 | |
Yury Selivanov | f1b5ccb | 2015-07-23 17:36:02 +0300 | [diff] [blame] | 188 | * ``inspect.getargspec()`` was removed (was deprecated since CPython 3.0). |
| 189 | :func:`inspect.getfullargspec` is an almost drop in replacement. |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 190 | |
Yury Selivanov | 5661316 | 2015-07-23 17:51:34 +0300 | [diff] [blame] | 191 | * ``inspect.getmoduleinfo()`` was removed (was deprecated since CPython 3.3). |
Yury Selivanov | 6dfbc5d | 2015-07-23 17:49:00 +0300 | [diff] [blame] | 192 | :func:`inspect.getmodulename` should be used for obtaining the module |
| 193 | name for a given path. |
| 194 | |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 195 | |
| 196 | Porting to Python 3.6 |
| 197 | ===================== |
| 198 | |
| 199 | This section lists previously described changes and other bugfixes |
| 200 | that may require changes to your code. |
| 201 | |
| 202 | Changes in the Python API |
| 203 | ------------------------- |
| 204 | |
Robert Collins | dfa95c9 | 2015-08-10 09:53:30 +1200 | [diff] [blame] | 205 | * Reading the :attr:`~urllib.parse.SplitResult.port` attribute of |
| 206 | :func:`urllib.parse.urlsplit` and :func:`~urllib.parse.urlparse` results |
| 207 | now raises :exc:`ValueError` for out-of-range values, rather than |
| 208 | returning :const:`None`. See :issue:`20059`. |
Yury Selivanov | d1da507 | 2015-05-27 22:09:10 -0400 | [diff] [blame] | 209 | |
| 210 | |
| 211 | Changes in the C API |
| 212 | -------------------- |
| 213 | |
| 214 | * None yet. |