| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 1 | **************************** |
| 2 | What's New In Python 3.4 |
| 3 | **************************** |
| 4 | |
| Georg Brandl | 3b80d34 | 2012-10-28 13:37:54 +0100 | [diff] [blame] | 5 | .. :Author: Someone <email> |
| 6 | (uncomment if there is a principal author) |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 7 | |
| 8 | .. Rules for maintenance: |
| 9 | |
| Nick Coghlan | 03074fd | 2012-09-30 18:51:53 +0530 | [diff] [blame] | 10 | * 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 Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 14 | |
| Nick Coghlan | 03074fd | 2012-09-30 18:51:53 +0530 | [diff] [blame] | 15 | * 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 Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 24 | |
| 25 | * This is not a complete list of every single change; completeness |
| Nick Coghlan | 03074fd | 2012-09-30 18:51:53 +0530 | [diff] [blame] | 26 | 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 Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 34 | |
| 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 Coghlan | 03074fd | 2012-09-30 18:51:53 +0530 | [diff] [blame] | 39 | * 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 Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 46 | |
| 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 Coghlan | 03074fd | 2012-09-30 18:51:53 +0530 | [diff] [blame] | 55 | The :ref:`~socket.transmogrify()` function was added to the |
| 56 | :mod:`socket` module. (Contributed by P.Y. Developer in :issue:`12345`.) |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 57 | |
| 58 | This saves the maintainer the effort of going through the Mercurial log |
| 59 | when researching a change. |
| 60 | |
| Nick Coghlan | 03074fd | 2012-09-30 18:51:53 +0530 | [diff] [blame] | 61 | * Cross referencing tip: :ref:`mod.attr` will display as ``mod.attr``, |
| 62 | while :ref:`~mod.attr` will display as ``attr``. |
| 63 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 64 | This article explains the new features in Python 3.4, compared to 3.3. |
| 65 | |
| Nick Coghlan | 03074fd | 2012-09-30 18:51:53 +0530 | [diff] [blame] | 66 | .. Python 3.4 was released on TBD. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 67 | |
| Ezio Melotti | 25bbe5e | 2012-11-17 19:30:48 +0200 | [diff] [blame] | 68 | For full details, see the |
| 69 | `changelog <http://docs.python.org/3.4/whatsnew/changelog.html>`_. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 70 | |
| 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 Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 78 | :pep:`429` - Python 3.4 Release Schedule |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 79 | |
| 80 | |
| 81 | Summary -- Release highlights |
| 82 | ============================= |
| 83 | |
| Kristjan Valur Jonsson | a1e8244 | 2013-03-26 13:56:14 +0000 | [diff] [blame] | 84 | .. This section singles out the most important changes in Python 3.4. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 85 | Brevity is key. |
| 86 | |
| 87 | New syntax features: |
| 88 | |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 89 | * No new syntax features are planned for Python 3.4. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 90 | |
| 91 | New library modules: |
| 92 | |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 93 | * :mod:`asyncio`: New provisonal API for asynchronous IO (:pep:`3156`). |
| 94 | * :mod:`enum`: Support for enumeration types (:pep:`435`). |
| Nick Coghlan | d0cf063 | 2013-11-11 22:11:55 +1000 | [diff] [blame] | 95 | * :mod:`ensurepip`: Bootstrapping the pip installer (:pep:`453`). |
| Antoine Pitrou | 31119e4 | 2013-11-22 17:38:12 +0100 | [diff] [blame] | 96 | * :mod:`pathlib`: Object-oriented filesystem paths (:pep:`428`). |
| Victor Stinner | 4aea4a0 | 2013-09-04 20:30:34 +0200 | [diff] [blame] | 97 | * :mod:`selectors`: High-level and efficient I/O multiplexing, built upon the |
| 98 | :mod:`select` module primitives. |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 99 | * :mod:`statistics`: A basic numerically stable statistics library (:pep:`450`). |
| Victor Stinner | d2736af | 2013-11-25 09:40:27 +0100 | [diff] [blame] | 100 | * :mod:`tracemalloc`: Trace Python memory allocations (:pep:`454`). |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 101 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 102 | New expected features for Python implementations: |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 103 | |
| R David Murray | f9909c2 | 2013-12-20 14:50:12 -0500 | [diff] [blame^] | 104 | * :pep:`446`: :ref:`Make newly created file descriptors non-inheritable <whatsnew-pep-446>`. |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 105 | * command line option for :ref:`isolated mode <using-on-misc-options>`, |
| 106 | (:issue:`16499`). |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 107 | * :ref:`improvements <codec-handling-improvements>` in the handling of |
| 108 | codecs that are not text encodings |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 109 | |
| 110 | Significantly Improved Library Modules: |
| 111 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 112 | * Single-dispatch generic functions in :mod:`functoools` (:pep:`443`) |
| Antoine Pitrou | c9dc4a2 | 2013-11-23 18:59:12 +0100 | [diff] [blame] | 113 | * New :mod:`pickle` protocol 4 (:pep:`3154`) |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 114 | * SHA-3 (Keccak) support for :mod:`hashlib`. |
| 115 | * TLSv1.1 and TLSv1.2 support for :mod:`ssl`. |
| Richard Oudkerk | 84ed9a6 | 2013-08-14 15:35:41 +0100 | [diff] [blame] | 116 | * :mod:`multiprocessing` now has option to avoid using :func:`os.fork` |
| 117 | on Unix (:issue:`8713`). |
| R David Murray | 6adb454 | 2013-12-20 13:10:43 -0500 | [diff] [blame] | 118 | * :mod:`email` has a new submodule, :mod:`~email.contentmanager`, and |
| 119 | a new :mod:`~email.message.Message` subclass |
| 120 | (:class:`~email.contentmanager.EmailMessage`) that simplify MIME handling. |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 121 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 122 | CPython implementation improvements: |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 123 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 124 | * :ref:`PEP 442: Safe object finalization <pep-442>` |
| 125 | * :ref:`PEP 445: Configurable memory allocators <pep-445>` |
| Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 126 | * :pep:`456` Secure and interchangeable hash algorithm |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 127 | * Improve finalization of Python modules to avoid setting their globals |
| 128 | to None, in most cases (:issue:`18214`). |
| 129 | * A more efficient :mod:`marshal` format (:issue:`16475`). |
| 130 | * "Argument Clinic", an initial step towards providing improved introspection |
| 131 | support for builtin and standard library extension types implemented in C |
| 132 | (:pep:`436`) |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 133 | |
| 134 | Please read on for a comprehensive list of user-facing changes. |
| 135 | |
| Nick Coghlan | d0cf063 | 2013-11-11 22:11:55 +1000 | [diff] [blame] | 136 | |
| 137 | PEP 453: Explicit bootstrapping of pip in Python installations |
| 138 | ============================================================== |
| 139 | |
| 140 | The new :mod:`ensurepip` module (defined in :pep:`453`) provides a standard |
| 141 | cross-platform mechanism to boostrap the pip installer into Python |
| 142 | installations and virtual environments. |
| 143 | |
| Nick Coghlan | 7bc4b3b | 2013-11-23 11:59:40 +1000 | [diff] [blame] | 144 | The :mod:`venv` module and the :command:`pyvenv` utility make use of this |
| 145 | module to make ``pip`` readily available in virtual environments. When |
| 146 | using the command line interface, ``pip`` is installed by default, while |
| 147 | for the module API installation of ``pip`` must be requested explicitly. |
| 148 | |
| 149 | For CPython source builds on POSIX systems, the ``make install`` and |
| 150 | ``make altinstall`` commands bootstrap ``pip`` by default. This behaviour |
| 151 | can be controlled through configure options, and overridden through |
| 152 | Makefile options. |
| 153 | |
| Ned Deily | 44a0db0 | 2013-11-22 22:39:09 -0800 | [diff] [blame] | 154 | On Windows and Mac OS X, the CPython installers now offer the option to |
| 155 | install ``pip`` along with CPython itself. |
| Nick Coghlan | 7bc4b3b | 2013-11-23 11:59:40 +1000 | [diff] [blame] | 156 | |
| Nick Coghlan | d0cf063 | 2013-11-11 22:11:55 +1000 | [diff] [blame] | 157 | .. note:: |
| 158 | |
| Nick Coghlan | 7bc4b3b | 2013-11-23 11:59:40 +1000 | [diff] [blame] | 159 | The implementation of PEP 453 is still a work in progress. Refer to |
| 160 | :issue:`19347` for the progress on additional steps: |
| Nick Coghlan | d0cf063 | 2013-11-11 22:11:55 +1000 | [diff] [blame] | 161 | |
| Nick Coghlan | 7bc4b3b | 2013-11-23 11:59:40 +1000 | [diff] [blame] | 162 | * Having the binary installers install ``pip`` by default |
| 163 | * Recommending the use of ``pip`` in the "Installing Python Module" |
| 164 | documentation. |
| Nick Coghlan | d0cf063 | 2013-11-11 22:11:55 +1000 | [diff] [blame] | 165 | |
| 166 | .. seealso:: |
| 167 | |
| 168 | :pep:`453` - Explicit bootstrapping of pip in Python installations |
| 169 | PEP written by Donald Stufft and Nick Coghlan, implemented by |
| Nick Coghlan | 7bc4b3b | 2013-11-23 11:59:40 +1000 | [diff] [blame] | 170 | Donald Stufft, Nick Coghlan, Martin von Löwis and Ned Deily. |
| Nick Coghlan | d0cf063 | 2013-11-11 22:11:55 +1000 | [diff] [blame] | 171 | |
| 172 | |
| R David Murray | f9909c2 | 2013-12-20 14:50:12 -0500 | [diff] [blame^] | 173 | .. _whatsnew-pep-446: |
| Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 174 | |
| 175 | PEP 446: Make newly created file descriptors non-inheritable |
| 176 | ============================================================ |
| 177 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 178 | :pep:`446` makes newly created file descriptors :ref:`non-inheritable |
| Georg Brandl | 5642ff9 | 2013-09-15 10:37:57 +0200 | [diff] [blame] | 179 | <fd_inheritance>`. New functions and methods: |
| Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 180 | |
| 181 | * :func:`os.get_inheritable`, :func:`os.set_inheritable` |
| 182 | * :func:`os.get_handle_inheritable`, :func:`os.set_handle_inheritable` |
| 183 | * :meth:`socket.socket.get_inheritable`, :meth:`socket.socket.set_inheritable` |
| 184 | |
| Antoine Pitrou | 796564c | 2013-07-30 19:59:21 +0200 | [diff] [blame] | 185 | .. seealso:: |
| 186 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 187 | :pep:`446` - Make newly created file descriptors non-inheritable |
| 188 | PEP written and implemented by Victor Stinner. |
| Antoine Pitrou | 796564c | 2013-07-30 19:59:21 +0200 | [diff] [blame] | 189 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 190 | |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 191 | .. _codec-handling-improvements: |
| 192 | |
| 193 | Improvements to codec handling |
| 194 | ============================== |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 195 | |
| 196 | Since it was first introduced, the :mod:`codecs` module has always been |
| 197 | intended to operate as a type-neutral dynamic encoding and decoding |
| 198 | system. However, its close coupling with the Python text model, especially |
| 199 | the type restricted convenience methods on the builtin :class:`str`, |
| 200 | :class:`bytes` and :class:`bytearray` types, has historically obscured that |
| 201 | fact. |
| 202 | |
| 203 | As a key step in clarifying the situation, the :meth:`codecs.encode` and |
| 204 | :meth:`codecs.decode` convenience functions are now properly documented in |
| 205 | Python 2.7, 3.3 and 3.4. These functions have existed in the :mod:`codecs` |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 206 | module (and have been covered by the regression test suite) since Python 2.4, |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 207 | but were previously only discoverable through runtime introspection. |
| 208 | |
| 209 | Unlike the convenience methods on :class:`str`, :class:`bytes` and |
| 210 | :class:`bytearray`, these convenience functions support arbitrary codecs |
| 211 | in both Python 2 and Python 3, rather than being limited to Unicode text |
| 212 | encodings (in Python 3) or ``basestring`` <-> ``basestring`` conversions |
| 213 | (in Python 2). |
| 214 | |
| Nick Coghlan | 8afc8f6 | 2013-11-22 23:00:22 +1000 | [diff] [blame] | 215 | In Python 3.4, the interpreter is able to identify the known non-text |
| 216 | encodings provided in the standard library and direct users towards these |
| 217 | general purpose convenience functions when appropriate:: |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 218 | |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 219 | >>> b"abcdef".decode("hex") |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 220 | Traceback (most recent call last): |
| 221 | File "<stdin>", line 1, in <module> |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 222 | LookupError: 'hex' is not a text encoding; use codecs.decode() to handle arbitrary codecs |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 223 | |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 224 | >>> "hello".encode("rot13") |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 225 | Traceback (most recent call last): |
| 226 | File "<stdin>", line 1, in <module> |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 227 | LookupError: 'rot13' is not a text encoding; use codecs.encode() to handle arbitrary codecs |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 228 | |
| 229 | In a related change, whenever it is feasible without breaking backwards |
| 230 | compatibility, exceptions raised during encoding and decoding operations |
| 231 | will be wrapped in a chained exception of the same type that mentions the |
| 232 | name of the codec responsible for producing the error:: |
| 233 | |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 234 | >>> import codecs |
| 235 | |
| 236 | >>> codecs.decode(b"abcdefgh", "hex") |
| Nick Coghlan | 8afc8f6 | 2013-11-22 23:00:22 +1000 | [diff] [blame] | 237 | binascii.Error: Non-hexadecimal digit found |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 238 | |
| 239 | The above exception was the direct cause of the following exception: |
| 240 | |
| 241 | Traceback (most recent call last): |
| 242 | File "<stdin>", line 1, in <module> |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 243 | binascii.Error: decoding with 'hex' codec failed (Error: Non-hexadecimal digit found) |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 244 | |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 245 | >>> codecs.encode("hello", "bz2") |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 246 | TypeError: 'str' does not support the buffer interface |
| 247 | |
| 248 | The above exception was the direct cause of the following exception: |
| 249 | |
| 250 | Traceback (most recent call last): |
| 251 | File "<stdin>", line 1, in <module> |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 252 | TypeError: encoding with 'bz2' codec failed (TypeError: 'str' does not support the buffer interface) |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 253 | |
| Nick Coghlan | 9c1aed8 | 2013-11-23 11:13:36 +1000 | [diff] [blame] | 254 | Finally, as the examples above show, these improvements have permitted |
| 255 | the restoration of the convenience aliases for the non-Unicode codecs that |
| 256 | were themselves restored in Python 3.2. This means that encoding binary data |
| 257 | to and from its hexadecimal representation (for example) can now be written |
| 258 | as:: |
| 259 | |
| 260 | >>> from codecs import encode, decode |
| 261 | >>> encode(b"hello", "hex") |
| 262 | b'68656c6c6f' |
| 263 | >>> decode(b"68656c6c6f", "hex") |
| 264 | b'hello' |
| 265 | |
| 266 | The binary and text transforms provided in the standard library are detailed |
| 267 | in :ref:`binary-transforms` and :ref:`text-transforms`. |
| 268 | |
| 269 | (Contributed by Nick Coghlan in :issue:`7475`, , :issue:`17827`, |
| 270 | :issue:`17828` and :issue:`19619`) |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 271 | |
| Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 272 | .. _pep-451: |
| 273 | |
| 274 | PEP 451: A ModuleSpec Type for the Import System |
| 275 | ================================================ |
| 276 | |
| 277 | :pep:`451` provides an encapsulation of the information about a module |
| 278 | that the import machinery will use to load it, (i.e. a module spec). |
| 279 | This helps simplify both the import implementation and several |
| 280 | import-related APIs. The change is also a stepping stone for several |
| 281 | future import-related improvements. |
| 282 | |
| 283 | https://mail.python.org/pipermail/python-dev/2013-November/130111.html |
| 284 | |
| 285 | The public-facing changes from the PEP are entirely backward-compatible. |
| 286 | Furthermore, they should be transparent to everyone but importer |
| 287 | authors. Key finder and loader methods have been deprecated, but they |
| 288 | will continue working. New importers should use the new methods |
| 289 | described in the PEP. Existing importers should be updated to implement |
| 290 | the new methods. |
| 291 | |
| Nick Coghlan | 8b097b4 | 2013-11-13 23:49:21 +1000 | [diff] [blame] | 292 | |
| Antoine Pitrou | c9dc4a2 | 2013-11-23 18:59:12 +0100 | [diff] [blame] | 293 | Pickle protocol 4 |
| 294 | ================= |
| 295 | |
| 296 | The new :mod:`pickle` protocol addresses a number of issues that were present |
| 297 | in previous protocols, such as the serialization of nested classes, very |
| 298 | large strings and containers, or classes whose :meth:`__new__` method takes |
| 299 | keyword-only arguments. It also brings a couple efficiency improvements. |
| 300 | |
| 301 | .. seealso:: |
| 302 | |
| 303 | :pep:`3154` - Pickle protocol 4 |
| 304 | PEP written by Antoine Pitrou and implemented by Alexandre Vassalotti. |
| 305 | |
| 306 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 307 | Other Language Changes |
| 308 | ====================== |
| 309 | |
| 310 | Some smaller changes made to the core Python language are: |
| 311 | |
| Ezio Melotti | 34808e2 | 2013-10-12 16:36:13 +0300 | [diff] [blame] | 312 | * Unicode database updated to UCD version 6.3. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 313 | |
| R David Murray | 9a2f139 | 2013-06-28 13:31:19 -0400 | [diff] [blame] | 314 | * :func:`min` and :func:`max` now accept a *default* argument that can be used |
| 315 | to specify the value they return if the iterable they are evaluating has no |
| 316 | elements. Contributed by Julian Berman in :issue:`18111`. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 317 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 318 | * Module objects are now :mod:`weakref`'able. |
| 319 | |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 320 | * Module ``__file__`` attributes (and related values) should now always |
| 321 | contain absolute paths by default, with the sole exception of |
| 322 | ``__main__.__file__`` when a script has been executed directly using |
| 323 | a relative path (Contributed by Brett Cannon in :issue:`18416`). |
| 324 | |
| Serhiy Storchaka | 58cf607 | 2013-11-19 11:32:41 +0200 | [diff] [blame] | 325 | * Now all the UTF-\* codecs (except UTF-7) reject surrogates during both |
| 326 | encoding and decoding unless the ``surrogatepass`` error handler is used, |
| 327 | with the exception of the UTF-16 decoder that accepts valid surrogate pairs, |
| 328 | and the UTF-16 encoder that produces them while encoding non-BMP characters. |
| 329 | Contributed by Victor Stinner, Kang-Hao (Kenny) Lu and Serhiy Storchaka in |
| 330 | :issue:`12892`. |
| 331 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 332 | |
| 333 | New Modules |
| 334 | =========== |
| 335 | |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 336 | |
| 337 | asyncio |
| 338 | ------- |
| 339 | |
| 340 | The new :mod:`asyncio` module (defined in :pep:`3156`) provides a standard |
| 341 | pluggable event loop model for Python, providing solid asynchronous IO |
| 342 | support in the standard library, and making it easier for other event loop |
| 343 | implementations to interoperate with the standard library and each other. |
| 344 | |
| 345 | For Python 3.4, this module is considered a :term:`provisional API`. |
| 346 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 347 | .. seealso:: |
| 348 | |
| 349 | :pep:`3156` - Asynchronous IO Support Rebooted: the "asyncio" Module |
| 350 | PEP written and implementation led by Guido van Rossum. |
| 351 | |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 352 | enum |
| 353 | ---- |
| 354 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 355 | The new :mod:`enum` module (defined in :pep:`435`) provides a standard |
| 356 | implementation of enumeration types, allowing other modules (such as |
| 357 | :mod:`socket`) to provide more informative error messages and better |
| 358 | debugging support by replacing opaque integer constants with backwards |
| 359 | compatible enumeration values. |
| 360 | |
| 361 | .. seealso:: |
| 362 | |
| 363 | :pep:`435` - Adding an Enum type to the Python standard library |
| 364 | PEP written by Barry Warsaw, Eli Bendersky and Ethan Furman, |
| 365 | implemented by Ethan Furman. |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 366 | |
| 367 | |
| Antoine Pitrou | 31119e4 | 2013-11-22 17:38:12 +0100 | [diff] [blame] | 368 | pathlib |
| 369 | ------- |
| 370 | |
| 371 | The new :mod:`pathlib` module offers classes representing filesystem paths |
| 372 | with semantics appropriate for different operating systems. Path classes are |
| 373 | divided between *pure paths*, which provide purely computational operations |
| 374 | without I/O, and *concrete paths*, which inherit from pure paths but also |
| 375 | provide I/O operations. |
| 376 | |
| 377 | For Python 3.4, this module is considered a :term:`provisional API`. |
| 378 | |
| 379 | .. seealso:: |
| 380 | |
| 381 | :pep:`428` - The pathlib module -- object-oriented filesystem paths |
| 382 | PEP written and implemented by Antoine Pitrou. |
| 383 | |
| 384 | |
| Charles-François Natali | 243d8d8 | 2013-09-04 19:02:49 +0200 | [diff] [blame] | 385 | selectors |
| 386 | --------- |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 387 | |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 388 | The new :mod:`selectors` module (created as part of implementing :pep:`3156`) |
| 389 | allows high-level and efficient I/O multiplexing, built upon the |
| 390 | :mod:`select` module primitives. |
| 391 | |
| 392 | |
| 393 | statistics |
| 394 | ---------- |
| 395 | |
| 396 | The new :mod:`statistics` module (defined in :pep:`450`) offers some core |
| 397 | statistics functionality directly in the standard library. This module |
| 398 | supports calculation of the mean, median, mode, variance and standard |
| 399 | deviation of a data series. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 400 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 401 | .. seealso:: |
| 402 | |
| 403 | :pep:`450` - Adding A Statistics Module To The Standard Library |
| 404 | PEP written and implemented by Steven D'Aprano |
| 405 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 406 | |
| Victor Stinner | d2736af | 2013-11-25 09:40:27 +0100 | [diff] [blame] | 407 | tracemalloc |
| 408 | ----------- |
| 409 | |
| 410 | The new :mod:`tracemalloc` module (defined in :pep:`454`) is a debug tool to |
| 411 | trace memory blocks allocated by Python. It provides the following information: |
| 412 | |
| 413 | * Traceback where an object was allocated |
| 414 | * Statistics on allocated memory blocks per filename and per line number: |
| 415 | total size, number and average size of allocated memory blocks |
| 416 | * Compute the differences between two snapshots to detect memory leaks |
| 417 | |
| 418 | .. seealso:: |
| 419 | |
| 420 | :pep:`454` - Add a new tracemalloc module to trace Python memory allocations |
| 421 | PEP written and implemented by Victor Stinner |
| 422 | |
| 423 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 424 | Improved Modules |
| 425 | ================ |
| 426 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 427 | aifc |
| 428 | ---- |
| 429 | |
| 430 | The :meth:`~aifc.getparams` method now returns a namedtuple rather than a |
| 431 | plain tuple. (Contributed by Claudiu Popa in :issue:`17818`.) |
| 432 | |
| 433 | |
| Serhiy Storchaka | eaea5e9 | 2013-10-19 21:10:46 +0300 | [diff] [blame] | 434 | audioop |
| 435 | ------- |
| 436 | |
| 437 | Added support for 24-bit samples (:issue:`12866`). |
| 438 | |
| Serhiy Storchaka | 3062c9a | 2013-11-23 22:26:01 +0200 | [diff] [blame] | 439 | Added the :func:`~audioop.byteswap` function to convert big-endian samples |
| 440 | to little-endian and vice versa (:issue:`19641`). |
| 441 | |
| Serhiy Storchaka | eaea5e9 | 2013-10-19 21:10:46 +0300 | [diff] [blame] | 442 | |
| Nick Coghlan | d4fdbcc | 2013-11-14 00:24:31 +1000 | [diff] [blame] | 443 | base64 |
| 444 | ------ |
| 445 | |
| 446 | The encoding and decoding functions in :mod:`base64` now accept any |
| 447 | :term:`bytes-like object` in cases where it previously required a |
| Georg Brandl | ed007d5 | 2013-11-24 16:09:26 +0100 | [diff] [blame] | 448 | :class:`bytes` or :class:`bytearray` instance (:issue:`17839`). |
| Nick Coghlan | d4fdbcc | 2013-11-14 00:24:31 +1000 | [diff] [blame] | 449 | |
| 450 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 451 | colorsys |
| 452 | -------- |
| 453 | |
| 454 | The number of digits in the coefficients for the RGB --- YIQ conversions have |
| 455 | been expanded so that they match the FCC NTSC versions. The change in |
| 456 | results should be less than 1% and may better match results found elsewhere. |
| 457 | |
| R David Murray | 8e37d5d | 2013-04-13 14:49:48 -0400 | [diff] [blame] | 458 | |
| Nick Coghlan | b4534ae | 2013-10-13 23:23:08 +1000 | [diff] [blame] | 459 | contextlib |
| 460 | ---------- |
| 461 | |
| Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 462 | The new :class:`contextlib.suppress` context manager helps to clarify the |
| 463 | intent of code that deliberately suppresses exceptions from a single |
| 464 | statement. (Contributed by Raymond Hettinger in :issue:`15806` and |
| 465 | Zero Piraeus in :issue:`19266`) |
| 466 | |
| Victor Stinner | 6633c39 | 2013-10-21 13:27:11 +0200 | [diff] [blame] | 467 | The new :func:`contextlib.redirect_stdout` context manager makes it easier |
| Nick Coghlan | b4534ae | 2013-10-13 23:23:08 +1000 | [diff] [blame] | 468 | for utility scripts to handle inflexible APIs that don't provide any |
| 469 | options to retrieve their output as a string or direct it to somewhere |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 470 | other than :data:`sys.stdout`. In conjunction with :class:`io.StringIO`, |
| 471 | this context manager is also useful for checking expected output from |
| 472 | command line utilities. (Contribute by Raymond Hettinger in :issue:`15805`) |
| 473 | |
| 474 | The :mod:`contextlib` documentation has also been updated to include a |
| 475 | :ref:`discussion <single-use-reusable-and-reentrant-cms>` of the |
| 476 | differences between single use, reusable and reentrant context managers. |
| Nick Coghlan | b4534ae | 2013-10-13 23:23:08 +1000 | [diff] [blame] | 477 | |
| 478 | |
| Nick Coghlan | b39fd0c | 2013-05-06 23:59:20 +1000 | [diff] [blame] | 479 | dis |
| 480 | --- |
| 481 | |
| Serhiy Storchaka | 98b28fd | 2013-10-13 23:12:09 +0300 | [diff] [blame] | 482 | The :mod:`dis` module is now built around an :class:`~dis.Instruction` class |
| 483 | that provides details of individual bytecode operations and a |
| 484 | :func:`~dis.get_instructions` iterator that emits the Instruction stream for a |
| Nick Coghlan | b39fd0c | 2013-05-06 23:59:20 +1000 | [diff] [blame] | 485 | given piece of Python code. The various display tools in the :mod:`dis` |
| 486 | module have been updated to be based on these new components. |
| 487 | |
| 488 | The new :class:`dis.Bytecode` class provides an object-oriented API for |
| 489 | inspecting bytecode, both in human-readable form and for iterating over |
| 490 | instructions. |
| 491 | |
| Nick Coghlan | 50c48b8 | 2013-11-23 00:57:00 +1000 | [diff] [blame] | 492 | (Contributed by Nick Coghlan, Ryan Kelly and Thomas Kluyver in :issue:`11816` |
| 493 | and Claudiu Popa in :issue:`17916`) |
| Nick Coghlan | b39fd0c | 2013-05-06 23:59:20 +1000 | [diff] [blame] | 494 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 495 | |
| R David Murray | 5a9d706 | 2012-11-21 15:09:21 -0500 | [diff] [blame] | 496 | doctest |
| 497 | ------- |
| 498 | |
| R David Murray | 5707d50 | 2013-06-23 14:24:13 -0400 | [diff] [blame] | 499 | Added :data:`~doctest.FAIL_FAST` flag to halt test running as soon as the first |
| 500 | failure is detected. (Contributed by R. David Murray and Daniel Urban in |
| 501 | :issue:`16522`.) |
| 502 | |
| 503 | Updated the doctest command line interface to use :mod:`argparse`, and added |
| 504 | ``-o`` and ``-f`` options to the interface. ``-o`` allows doctest options to |
| 505 | be specified on the command line, and ``-f`` is a shorthand for ``-o |
| 506 | FAIL_FAST`` (to parallel the similar option supported by the :mod:`unittest` |
| 507 | CLI). (Contributed by R. David Murray in :issue:`11390`.) |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 508 | |
| R David Murray | 8e37d5d | 2013-04-13 14:49:48 -0400 | [diff] [blame] | 509 | |
| R David Murray | bb17d2b | 2013-08-09 16:15:28 -0400 | [diff] [blame] | 510 | email |
| 511 | ----- |
| 512 | |
| 513 | :meth:`~email.message.Message.as_string` now accepts a *policy* argument to |
| 514 | override the default policy of the message when generating a string |
| 515 | representation of it. This means that ``as_string`` can now be used in more |
| 516 | circumstances, instead of having to create and use a :mod:`~email.generator` in |
| 517 | order to pass formatting parameters to its ``flatten`` method. |
| 518 | |
| 519 | New method :meth:`~email.message.Message.as_bytes` added to produce a bytes |
| 520 | representation of the message in a fashion similar to how ``as_string`` |
| 521 | produces a string representation. It does not accept the *maxheaderlen* |
| 522 | argument, but does accept the *unixfrom* and *policy* arguments. The |
| 523 | :class:`~email.message.Message` :meth:`~email.message.Message.__bytes__` method |
| 524 | calls it, meaning that ``bytes(mymsg)`` will now produce the intuitive |
| 525 | result: a bytes object containing the fully formatted message. |
| 526 | |
| 527 | (Contributed by R. David Murray in :issue:`18600`.) |
| 528 | |
| R David Murray | 3da240f | 2013-10-16 22:48:40 -0400 | [diff] [blame] | 529 | A pair of new subclasses of :class:`~email.message.Message` have been added, |
| 530 | along with a new sub-module, :mod:`~email.contentmanager`. All documentation |
| 531 | is currently in the new module, which is being added as part of the new |
| Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 532 | :term:`provisional <provisional package>` email API. These classes provide a |
| R David Murray | 3da240f | 2013-10-16 22:48:40 -0400 | [diff] [blame] | 533 | number of new methods that make extracting content from and inserting content |
| 534 | into email messages much easier. See the :mod:`~email.contentmanager` |
| 535 | documentation for details. |
| 536 | |
| 537 | These API additions complete the bulk of the work that was planned as part of |
| 538 | the email6 project. The currently provisional API is scheduled to become final |
| 539 | in Python 3.5 (possibly with a few minor additions in the area of error |
| 540 | handling). |
| 541 | |
| 542 | (Contributed by R. David Murray in :issue:`18891`.) |
| 543 | |
| R David Murray | bb17d2b | 2013-08-09 16:15:28 -0400 | [diff] [blame] | 544 | |
| Victor Stinner | 854ffcb | 2013-06-21 00:36:30 +0200 | [diff] [blame] | 545 | functools |
| 546 | --------- |
| 547 | |
| Nick Coghlan | f4cb48a | 2013-11-03 16:41:46 +1000 | [diff] [blame] | 548 | The new :func:`~functools.partialmethod` descriptor bring partial argument |
| 549 | application to descriptors, just as :func:`~functools.partial` provides |
| 550 | for normal callables. The new descriptor also makes it easier to get |
| 551 | arbitrary callables (including :func:`~functools.partial` instances) |
| 552 | to behave like normal instance methods when included in a class definition. |
| 553 | |
| 554 | (Contributed by Alon Horev and Nick Coghlan in :issue:`4331`) |
| 555 | |
| 556 | The new :func:`~functools.singledispatch` decorator brings support for |
| 557 | single-dispatch generic functions to the Python standard library. Where |
| 558 | object oriented programming focuses on grouping multiple operations on a |
| 559 | common set of data into a class, a generic function focuses on grouping |
| 560 | multiple implementations of an operation that allows it to work with |
| 561 | *different* kinds of data. |
| 562 | |
| 563 | .. seealso:: |
| 564 | |
| 565 | :pep:`443` - Single-dispatch generic functions |
| 566 | PEP written and implemented by Łukasz Langa. |
| Victor Stinner | 854ffcb | 2013-06-21 00:36:30 +0200 | [diff] [blame] | 567 | |
| Nick Coghlan | e8c45d6 | 2013-07-28 20:00:01 +1000 | [diff] [blame] | 568 | |
| Christian Heimes | e92ef13 | 2013-10-13 00:52:43 +0200 | [diff] [blame] | 569 | hashlib |
| 570 | ------- |
| 571 | |
| 572 | New :func:`hashlib.pbkdf2_hmac` function. |
| 573 | |
| 574 | (Contributed by Christian Heimes in :issue:`18582`) |
| 575 | |
| 576 | |
| Ezio Melotti | 250a06c | 2013-11-25 06:18:47 +0200 | [diff] [blame] | 577 | html |
| 578 | ---- |
| 579 | |
| 580 | Added a new :func:`html.unescape` function that converts HTML5 character |
| 581 | references to the corresponding Unicode characters. |
| 582 | |
| 583 | (Contributed by Ezio Melotti in :issue:`2927`) |
| 584 | |
| 585 | Added a new *convert_charrefs* keyword argument to |
| 586 | :class:`~html.parser.HTMLParser` that, when ``True``, automatically converts |
| 587 | all character references. For backward-compatibility, its value defaults |
| 588 | to ``False``, but it will change to ``True`` in future versions, so you |
| 589 | are invited to set it explicitly and update your code to use this new feature. |
| 590 | |
| 591 | (Contributed by Ezio Melotti in :issue:`13633`) |
| 592 | |
| 593 | The *strict* argument of :class:`~html.parser.HTMLParser` is now deprecated. |
| 594 | |
| 595 | (Contributed by Ezio Melotti in :issue:`15114`) |
| 596 | |
| 597 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 598 | inspect |
| 599 | ------- |
| 600 | |
| Nick Coghlan | f94a16b | 2013-09-22 22:46:49 +1000 | [diff] [blame] | 601 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 602 | The inspect module now offers a basic :ref:`command line interface |
| 603 | <inspect-module-cli>` to quickly display source code and other |
| 604 | information for modules, classes and functions. (Contributed by Claudiu Popa |
| 605 | and Nick Coghlan in :issue:`18626`) |
| Nick Coghlan | f94a16b | 2013-09-22 22:46:49 +1000 | [diff] [blame] | 606 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 607 | :func:`~inspect.unwrap` makes it easy to unravel wrapper function chains |
| 608 | created by :func:`functools.wraps` (and any other API that sets the |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 609 | ``__wrapped__`` attribute on a wrapper function). (Contributed by |
| 610 | Daniel Urban, Aaron Iles and Nick Coghlan in :issue:`13266`) |
| 611 | |
| 612 | As part of the implementation of the new :mod:`enum` module, the |
| 613 | :mod:`inspect` module now has substantially better support for custom |
| 614 | ``__dir__`` methods and dynamic class attributes provided through |
| 615 | metaclasses (Contributed by Ethan Furman in :issue:`18929` and |
| 616 | :issue:`19030`) |
| 617 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 618 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 619 | mmap |
| 620 | ---- |
| 621 | |
| 622 | mmap objects can now be weakref'ed. |
| 623 | |
| 624 | (Contributed by Valerie Lambert in :issue:`4885`.) |
| 625 | |
| 626 | |
| Richard Oudkerk | 84ed9a6 | 2013-08-14 15:35:41 +0100 | [diff] [blame] | 627 | multiprocessing |
| 628 | --------------- |
| 629 | |
| Nick Coghlan | 9a76735 | 2013-12-17 22:17:26 +1000 | [diff] [blame] | 630 | On Unix, two new *start methods* (``spawn`` and ``forkserver``) have been |
| 631 | added for starting processes using :mod:`multiprocessing`. These make |
| 632 | the mixing of processes with threads more robust, and the ``spawn`` |
| 633 | method matches the semantics that multiprocessing has always used on |
| 634 | Windows. (Contributed by Richard Oudkerk in :issue:`8713`). |
| Richard Oudkerk | 84ed9a6 | 2013-08-14 15:35:41 +0100 | [diff] [blame] | 635 | |
| 636 | Also, except when using the old *fork* start method, child processes |
| 637 | will no longer inherit unneeded handles/file descriptors from their parents. |
| 638 | |
| Nick Coghlan | 9a76735 | 2013-12-17 22:17:26 +1000 | [diff] [blame] | 639 | :mod:`multiprocessing` now relies on :mod:`runpy` (which implements the |
| 640 | ``-m`` switch) to initialise ``__main__`` appropriately in child processes |
| 641 | when using the ``spawn`` or ``forkserver`` start methods. This resolves some |
| 642 | edge cases where combining multiprocessing, the ``-m`` command line switch |
| 643 | and explicit relative imports could cause obscure failures in child |
| 644 | processes. (Contributed by Nick Coghlan in :issue:`19946`) |
| 645 | |
| Richard Oudkerk | 84ed9a6 | 2013-08-14 15:35:41 +0100 | [diff] [blame] | 646 | |
| Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 647 | os |
| 648 | -- |
| 649 | |
| Georg Brandl | c6ebbef | 2013-09-16 04:03:12 +0200 | [diff] [blame] | 650 | New functions to get and set the :ref:`inheritable flag <fd_inheritance>` of a file |
| Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 651 | descriptors or a Windows handle: |
| 652 | |
| 653 | * :func:`os.get_inheritable`, :func:`os.set_inheritable` |
| 654 | * :func:`os.get_handle_inheritable`, :func:`os.set_handle_inheritable` |
| 655 | |
| 656 | |
| R David Murray | 78d692f | 2013-10-10 17:23:26 -0400 | [diff] [blame] | 657 | pdb |
| 658 | --- |
| 659 | |
| 660 | The ``print`` command has been removed from :mod:`pdb`, restoring access to the |
| 661 | ``print`` function. |
| 662 | |
| 663 | Rationale: Python2's ``pdb`` did not have a ``print`` command; instead, |
| 664 | entering ``print`` executed the ``print`` statement. In Python3 ``print`` was |
| 665 | mistakenly made an alias for the pdb :pdbcmd:`p` command. ``p``, however, |
| 666 | prints the ``repr`` of its argument, not the ``str`` like the Python2 ``print`` |
| 667 | command did. Worse, the Python3 ``pdb print`` command shadowed the Python3 |
| 668 | ``print`` function, making it inaccessible at the ``pdb`` prompt. |
| 669 | |
| 670 | (Contributed by Connor Osborn in :issue:`18764`.) |
| 671 | |
| 672 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 673 | poplib |
| 674 | ------ |
| 675 | |
| 676 | New :meth:`~poplib.POP3.stls` method to switch a clear-text POP3 session into |
| 677 | an encrypted POP3 session. |
| 678 | |
| 679 | New :meth:`~poplib.POP3.capa` method to query the capabilities advertised by the |
| 680 | POP3 server. |
| 681 | |
| 682 | (Contributed by Lorenzo Catucci in :issue:`4473`.) |
| 683 | |
| 684 | |
| Serhiy Storchaka | 7c411a4 | 2013-10-02 11:56:18 +0300 | [diff] [blame] | 685 | pprint |
| 686 | ------ |
| 687 | |
| Christian Heimes | e1bfd3e | 2013-10-21 12:32:21 +0200 | [diff] [blame] | 688 | The :mod:`pprint` module now supports *compact* mode for formatting long |
| Serhiy Storchaka | 7c411a4 | 2013-10-02 11:56:18 +0300 | [diff] [blame] | 689 | sequences (:issue:`19132`). |
| 690 | |
| 691 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 692 | pydoc |
| 693 | ----- |
| 694 | |
| 695 | While significant changes have not been made to :mod:`pydoc` directly, |
| 696 | its handling of custom ``__dir__`` methods and various descriptor |
| 697 | behaviours has been improved substantially by the underlying changes in |
| 698 | the :mod:`inspect` module. |
| 699 | |
| 700 | |
| Serhiy Storchaka | 32eddc1 | 2013-11-23 23:20:30 +0200 | [diff] [blame] | 701 | re |
| 702 | -- |
| 703 | |
| 704 | Added :func:`re.fullmatch` function and :meth:`regex.fullmatch` method, |
| 705 | which anchor the pattern at both ends of the string to match. |
| 706 | (Contributed by Matthew Barnett in :issue:`16203`.) |
| 707 | |
| Ezio Melotti | dd7e291 | 2013-11-25 23:20:20 +0200 | [diff] [blame] | 708 | The repr of :ref:`regex objects <re-objects>` now includes the pattern |
| 709 | and the flags; the repr of :ref:`match objects <match-objects>` now |
| 710 | includes the start, end, and the part of the string that matched. |
| 711 | |
| 712 | (Contributed by Serhiy Storchaka in :issue:`13592` and :issue:`17087`.) |
| 713 | |
| 714 | |
| Christian Heimes | b7bd5df | 2013-10-22 11:21:54 +0200 | [diff] [blame] | 715 | resource |
| 716 | -------- |
| 717 | |
| 718 | New :func:`resource.prlimit` function and Linux specific constants. |
| 719 | (Contributed by Christian Heimes in :issue:`16595` and :issue:`19324`.) |
| 720 | |
| R David Murray | 8e37d5d | 2013-04-13 14:49:48 -0400 | [diff] [blame] | 721 | smtplib |
| 722 | ------- |
| 723 | |
| R David Murray | 8a34596 | 2013-04-14 06:46:35 -0400 | [diff] [blame] | 724 | :exc:`~smtplib.SMTPException` is now a subclass of :exc:`OSError`, which allows |
| R David Murray | 8e37d5d | 2013-04-13 14:49:48 -0400 | [diff] [blame] | 725 | both socket level errors and SMTP protocol level errors to be caught in one |
| 726 | try/except statement by code that only cares whether or not an error occurred. |
| 727 | (:issue:`2118`). |
| 728 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 729 | |
| Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 730 | socket |
| 731 | ------ |
| 732 | |
| Georg Brandl | 5642ff9 | 2013-09-15 10:37:57 +0200 | [diff] [blame] | 733 | Socket objects have new methods to get or set their :ref:`inheritable flag |
| 734 | <fd_inheritance>`: |
| Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 735 | |
| 736 | * :meth:`socket.socket.get_inheritable`, :meth:`socket.socket.set_inheritable` |
| 737 | |
| Eli Bendersky | 34567ec | 2013-08-31 15:18:48 -0700 | [diff] [blame] | 738 | The ``socket.AF_*`` and ``socket.SOCK_*`` constants are enumeration values, |
| 739 | using the new :mod:`enum` module. This allows descriptive reporting during |
| 740 | debugging, instead of seeing integer "magic numbers". |
| Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 741 | |
| Christian Heimes | 24cd4cf | 2013-06-22 19:31:58 +0200 | [diff] [blame] | 742 | ssl |
| 743 | --- |
| 744 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 745 | TLSv1.1 and TLSv1.2 support. |
| Christian Heimes | 70833a8 | 2013-06-22 19:34:17 +0200 | [diff] [blame] | 746 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 747 | (Contributed by Michele Orrù and Antoine Pitrou in :issue:`16692`) |
| Christian Heimes | 24cd4cf | 2013-06-22 19:31:58 +0200 | [diff] [blame] | 748 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 749 | * New diagnostic functions :func:`~ssl.get_default_verify_paths`, |
| 750 | :meth:`~ssl.SSLContext.cert_store_stats` and |
| 751 | :meth:`~ssl.SSLContext.get_ca_certs` |
| 752 | |
| 753 | * Add :func:`ssl.enum_cert_store` to retrieve certificates and CRL from Windows' |
| 754 | cert store. |
| Christian Heimes | 24cd4cf | 2013-06-22 19:31:58 +0200 | [diff] [blame] | 755 | |
| 756 | (Contributed by Christian Heimes in :issue:`18143`, :issue:`18147` and |
| Serhiy Storchaka | 6de88b3 | 2013-12-02 20:31:00 +0200 | [diff] [blame] | 757 | :issue:`17134`.) |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 758 | |
| 759 | Support for server-side SNI using the new |
| 760 | :meth:`ssl.SSLContext.set_servername_callback` method. |
| 761 | |
| 762 | (Contributed by Daniel Black in :issue:`8109`.) |
| 763 | |
| 764 | |
| Antoine Pitrou | d6cbd34 | 2013-08-12 20:48:15 +0200 | [diff] [blame] | 765 | stat |
| 766 | ---- |
| 767 | |
| 768 | The :mod:`stat` module is now backed by a C implementation in :mod:`_stat`. A C |
| 769 | implementation is required as most of the values aren't standardized and |
| 770 | platform-dependent. (Contributed by Christian Heimes in :issue:`11016`.) |
| 771 | |
| 772 | The module supports new file types: door, event port and whiteout. |
| 773 | |
| 774 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 775 | struct |
| 776 | ------ |
| 777 | |
| 778 | Streaming struct unpacking using :func:`struct.iter_unpack`. |
| 779 | |
| 780 | (Contributed by Antoine Pitrou in :issue:`17804`.) |
| 781 | |
| 782 | |
| Serhiy Storchaka | e06a896 | 2013-09-04 00:43:03 +0300 | [diff] [blame] | 783 | sunau |
| 784 | ----- |
| 785 | |
| 786 | The :meth:`~sunau.getparams` method now returns a namedtuple rather than a |
| 787 | plain tuple. (Contributed by Claudiu Popa in :issue:`18901`.) |
| 788 | |
| Serhiy Storchaka | 34d2013 | 2013-09-05 17:01:53 +0300 | [diff] [blame] | 789 | :meth:`sunau.open` now supports the context manager protocol (:issue:`18878`). |
| 790 | |
| Serhiy Storchaka | e06a896 | 2013-09-04 00:43:03 +0300 | [diff] [blame] | 791 | |
| Andrew Kuchling | 173a157 | 2013-09-15 18:15:56 -0400 | [diff] [blame] | 792 | traceback |
| 793 | --------- |
| 794 | |
| 795 | A new :func:`traceback.clear_frames` function takes a traceback object |
| 796 | and clears the local variables in all of the frames it references, |
| 797 | reducing the amount of memory consumed (:issue:`1565525`). |
| 798 | |
| 799 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 800 | urllib |
| 801 | ------ |
| 802 | |
| 803 | Add support.for ``data:`` URLs in :mod:`urllib.request`. |
| 804 | |
| 805 | (Contributed by Mathias Panzenböck in :issue:`16423`.) |
| 806 | |
| 807 | |
| 808 | unittest |
| 809 | -------- |
| 810 | |
| 811 | Support for easy dynamically-generated subtests using the |
| 812 | :meth:`~unittest.TestCase.subTest` context manager. |
| 813 | |
| 814 | (Contributed by Antoine Pitrou in :issue:`16997`.) |
| 815 | |
| R David Murray | 8e37d5d | 2013-04-13 14:49:48 -0400 | [diff] [blame] | 816 | |
| R David Murray | 671cd32 | 2013-04-10 12:31:43 -0400 | [diff] [blame] | 817 | wave |
| 818 | ---- |
| 819 | |
| 820 | The :meth:`~wave.getparams` method now returns a namedtuple rather than a |
| 821 | plain tuple. (Contributed by Claudiu Popa in :issue:`17487`.) |
| 822 | |
| R David Murray | c91d5ee | 2013-07-31 13:46:08 -0400 | [diff] [blame] | 823 | :meth:`wave.open` now supports the context manager protocol. (Contributed |
| 824 | by Claudiu Popa in :issue:`17616`.) |
| 825 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 826 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 827 | weakref |
| 828 | ------- |
| 829 | |
| 830 | New :class:`~weakref.WeakMethod` class simulates weak references to bound |
| Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 831 | methods. (Contributed by Antoine Pitrou in :issue:`14631`.) |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 832 | |
| Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 833 | New :class:`~weakref.finalize` class makes it possible to register a callback |
| 834 | to be invoked when an object is garbage collected, without needing to |
| 835 | carefully manage the lifecycle of the weak reference itself. (Contributed by |
| 836 | Richard Oudkerk in :issue:`15528`) |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 837 | |
| 838 | |
| 839 | xml.etree |
| 840 | --------- |
| 841 | |
| 842 | Add an event-driven parser for non-blocking applications, |
| Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 843 | :class:`~xml.etree.ElementTree.XMLPullParser`. |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 844 | |
| Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 845 | (Contributed by Antoine Pitrou in :issue:`17741`.) |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 846 | |
| Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 847 | |
| 848 | zipfile.PyZipfile |
| 849 | ----------------- |
| 850 | |
| 851 | Add a filter function to ignore some packages (tests for instance), |
| 852 | :meth:`~zipfile.PyZipFile.writepy`. |
| 853 | |
| 854 | (Contributed by Christian Tismer in :issue:`19274`.) |
| 855 | |
| 856 | |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 857 | Other improvements |
| 858 | ================== |
| 859 | |
| 860 | Tab-completion is now enabled by default in the interactive interpreter. |
| 861 | |
| 862 | (Contributed by Antoine Pitrou and Éric Araujo in :issue:`5845`.) |
| 863 | |
| Eli Bendersky | 96d848a | 2013-09-06 06:55:58 -0700 | [diff] [blame] | 864 | Python invocation changes |
| 865 | ========================= |
| 866 | |
| 867 | Invoking the Python interpreter with ``--version`` now outputs the version to |
| 868 | standard output instead of standard error (:issue:`18338`). Similar changes |
| 869 | were made to :mod:`argparse` (:issue:`18920`) and other modules that have |
| 870 | script-like invocation capabilities (:issue:`18922`). |
| Antoine Pitrou | f89aa9a | 2013-08-12 20:46:47 +0200 | [diff] [blame] | 871 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 872 | Optimizations |
| 873 | ============= |
| 874 | |
| 875 | Major performance enhancements have been added: |
| 876 | |
| Victor Stinner | e64322e | 2012-10-30 23:12:47 +0100 | [diff] [blame] | 877 | * The UTF-32 decoder is now 3x to 4x faster. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 878 | |
| Raymond Hettinger | c301b55 | 2013-08-19 09:12:20 -0700 | [diff] [blame] | 879 | * The cost of hash collisions for sets is now reduced. Each hash table |
| Raymond Hettinger | 8408dc5 | 2013-09-15 14:57:15 -0700 | [diff] [blame] | 880 | probe now checks a series of consecutive, adjacent key/hash pairs before |
| 881 | continuing to make random probes through the hash table. This exploits |
| 882 | cache locality to make collision resolution less expensive. |
| 883 | |
| 884 | The collision resolution scheme can be described as a hybrid of linear |
| 885 | probing and open addressing. The number of additional linear probes |
| 886 | defaults to nine. This can be changed at compile-time by defining |
| 887 | LINEAR_PROBES to be any value. Set LINEAR_PROBES=0 to turn-off |
| 888 | linear probing entirely. |
| Raymond Hettinger | c301b55 | 2013-08-19 09:12:20 -0700 | [diff] [blame] | 889 | |
| Christian Heimes | 086b1af | 2013-10-22 11:49:34 +0200 | [diff] [blame] | 890 | (Contributed by Raymond Hettinger in :issue:`18771`.) |
| Raymond Hettinger | c301b55 | 2013-08-19 09:12:20 -0700 | [diff] [blame] | 891 | |
| Christian Heimes | 17ecd1d | 2013-10-13 03:10:06 +0200 | [diff] [blame] | 892 | * The interpreter starts about 30% faster. A couple of measures lead to the |
| Eric V. Smith | 57841dd | 2013-10-13 00:36:08 -0400 | [diff] [blame] | 893 | speedup. The interpreter loads fewer modules on startup, e.g. the :mod:`re`, |
| Christian Heimes | 17ecd1d | 2013-10-13 03:10:06 +0200 | [diff] [blame] | 894 | :mod:`collections` and :mod:`locale` modules and their dependencies are no |
| 895 | longer imported by default. The marshal module has been improved to load |
| 896 | compiled Python code faster. |
| 897 | |
| 898 | (Contributed by Antoine Pitrou, Christian Heimes and Victor Stinner in |
| 899 | :issue:`19219`, :issue:`19218`, :issue:`19209`, :issue:`19205` and |
| 900 | :issue:`9548`) |
| 901 | |
| 902 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 903 | CPython Implementation Changes |
| 904 | ============================== |
| 905 | |
| 906 | |
| 907 | .. _pep-445: |
| 908 | |
| 909 | PEP 445: Customization of CPython memory allocators |
| 910 | --------------------------------------------------- |
| 911 | |
| 912 | :pep:`445` adds new C level interfaces to customize memory allocation in |
| 913 | the CPython interpreter. |
| 914 | |
| 915 | .. seealso:: |
| 916 | |
| 917 | :pep:`445` - Add new APIs to customize Python memory allocators |
| 918 | PEP written and implemented by Victor Stinner. |
| 919 | |
| 920 | |
| 921 | .. _pep-442: |
| 922 | |
| 923 | PEP 442: Safe object finalization |
| 924 | --------------------------------- |
| 925 | |
| 926 | :pep:`442` removes the current limitations and quirks of object finalization |
| 927 | in CPython. With it, objects with :meth:`__del__` methods, as well as |
| 928 | generators with :keyword:`finally` clauses, can be finalized when they are |
| 929 | part of a reference cycle. |
| 930 | |
| 931 | As part of this change, module globals are no longer forcibly set to |
| 932 | :const:`None` during interpreter shutdown in most cases, instead relying |
| 933 | on the normal operation of the cyclic garbage collector. |
| 934 | |
| 935 | .. seealso:: |
| 936 | |
| 937 | :pep:`442` - Safe object finalization |
| 938 | PEP written and implemented by Antoine Pitrou. |
| 939 | |
| 940 | |
| 941 | Other build and C API changes |
| 942 | ----------------------------- |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 943 | |
| 944 | Changes to Python's build process and to the C API include: |
| 945 | |
| Nick Coghlan | 7d270ee | 2013-10-17 22:35:35 +1000 | [diff] [blame] | 946 | * The new :c:func:`Py_SetStandardStreamEncoding` pre-initialization API |
| 947 | allows applications embedding the CPython interpreter to reliably force |
| 948 | a particular encoding and error handler for the standard streams |
| 949 | (Contributed by Bastien Montagne and Nick Coghlan in :issue:`16129`) |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 950 | |
| Nick Coghlan | 0acceb7 | 2013-10-20 13:22:21 +1000 | [diff] [blame] | 951 | * Most Python C APIs that don't mutate string arguments are now correctly |
| 952 | marked as accepting ``const char *`` rather than ``char *`` (Contributed |
| 953 | by Serhiy Storchaka in :issue:`1772673`). |
| 954 | |
| 955 | * "Argument Clinic" (:pep:`436`) is now part of the CPython build process |
| 956 | and can be used to simplify the process of defining and maintaining |
| 957 | accurate signatures for builtins and standard library extension modules |
| 958 | implemented in C. |
| 959 | |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 960 | .. note:: |
| 961 | The Argument Clinic PEP is not fully up to date with the state of the |
| 962 | implementation. This has been deemed acceptable by the release manager |
| 963 | and core development team in this case, as Argument Clinic will not |
| 964 | be made available as a public API for third party use in Python 3.4. |
| 965 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 966 | |
| 967 | Deprecated |
| 968 | ========== |
| 969 | |
| 970 | Unsupported Operating Systems |
| 971 | ----------------------------- |
| 972 | |
| Victor Stinner | f3fd13b | 2013-08-04 10:30:57 +0200 | [diff] [blame] | 973 | * OS/2 |
| Victor Stinner | f3fd13b | 2013-08-04 10:30:57 +0200 | [diff] [blame] | 974 | * Windows 2000 |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 975 | |
| 976 | |
| 977 | Deprecated Python modules, functions and methods |
| 978 | ------------------------------------------------ |
| 979 | |
| Terry Jan Reedy | 2b6c26e | 2013-03-21 19:36:26 -0400 | [diff] [blame] | 980 | * :meth:`difflib.SequenceMatcher.isbjunk` and |
| Andrew Kuchling | 0d0813a | 2013-06-15 13:29:09 -0400 | [diff] [blame] | 981 | :meth:`difflib.SequenceMatcher.isbpopular` were removed: use ``x in sm.bjunk`` and |
| 982 | ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object. |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 983 | |
| Brett Cannon | 82b3d6a | 2013-06-14 22:37:11 -0400 | [diff] [blame] | 984 | * :func:`importlib.util.module_for_loader` is pending deprecation. Using |
| 985 | :func:`importlib.util.module_to_load` and |
| 986 | :meth:`importlib.abc.Loader.init_module_attrs` allows subclasses of a loader |
| 987 | to more easily customize module loading. |
| 988 | |
| Brett Cannon | e4f41de | 2013-06-16 13:13:40 -0400 | [diff] [blame] | 989 | * The :mod:`imp` module is pending deprecation. To keep compatibility with |
| 990 | Python 2/3 code bases, the module's removal is currently not scheduled. |
| 991 | |
| Brett Cannon | 1448ecf | 2013-10-04 11:38:59 -0400 | [diff] [blame] | 992 | * The :mod:`formatter` module is pending deprecation and is slated for removal |
| 993 | in Python 3.6. |
| 994 | |
| Christian Heimes | 634919a | 2013-11-20 17:23:06 +0100 | [diff] [blame] | 995 | * MD5 as default digestmod for :mod:`hmac` is deprecated. Python 3.6 will |
| 996 | require an explicit digest name or constructor as *digestmod* argument. |
| 997 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 998 | |
| 999 | Deprecated functions and types of the C API |
| 1000 | ------------------------------------------- |
| 1001 | |
| Victor Stinner | 3dd263f | 2013-10-23 18:54:43 +0200 | [diff] [blame] | 1002 | * The ``PyThreadState.tick_counter`` field has been removed: its value was |
| 1003 | meaningless since Python 3.2 ("new GIL"). |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 1004 | |
| 1005 | |
| 1006 | Deprecated features |
| 1007 | ------------------- |
| 1008 | |
| Antoine Pitrou | 3b2f0f0 | 2013-10-25 21:39:26 +0200 | [diff] [blame] | 1009 | * The site module adding a "site-python" directory to sys.path, if it |
| 1010 | exists, is deprecated (:issue:`19375`). |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 1011 | |
| 1012 | |
| Benjamin Peterson | 88f3b23 | 2012-10-04 12:45:10 -0400 | [diff] [blame] | 1013 | Porting to Python 3.4 |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 1014 | ===================== |
| 1015 | |
| Victor Stinner | 774b2e0 | 2013-12-13 14:33:01 +0100 | [diff] [blame] | 1016 | Changes in the Python API |
| 1017 | ------------------------- |
| 1018 | |
| Georg Brandl | b80f511 | 2012-09-30 09:11:58 +0200 | [diff] [blame] | 1019 | This section lists previously described changes and other bugfixes |
| 1020 | that may require changes to your code. |
| 1021 | |
| Brett Cannon | 777622b | 2013-04-09 17:03:10 -0400 | [diff] [blame] | 1022 | * The ABCs defined in :mod:`importlib.abc` now either raise the appropriate |
| 1023 | exception or return a default value instead of raising |
| 1024 | :exc:`NotImplementedError` blindly. This will only affect code calling |
| 1025 | :func:`super` and falling through all the way to the ABCs. For compatibility, |
| 1026 | catch both :exc:`NotImplementedError` or the appropriate exception as needed. |
| Brett Cannon | 4c14b5d | 2013-05-04 13:56:58 -0400 | [diff] [blame] | 1027 | |
| 1028 | * The module type now initializes the :attr:`__package__` and :attr:`__loader__` |
| 1029 | attributes to ``None`` by default. To determine if these attributes were set |
| 1030 | in a backwards-compatible fashion, use e.g. |
| Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 1031 | ``getattr(module, '__loader__', None) is not None``. |
| 1032 | |
| 1033 | * :meth:`importlib.util.module_for_loader` now sets ``__loader__`` and |
| 1034 | ``__package__`` unconditionally to properly support reloading. If this is not |
| 1035 | desired then you will need to set these attributes manually. You can use |
| Brett Cannon | 028d512 | 2013-05-31 18:02:11 -0400 | [diff] [blame] | 1036 | :func:`importlib.util.module_to_load` for module management. |
| Brett Cannon | 3e0651b | 2013-05-31 23:18:39 -0400 | [diff] [blame] | 1037 | |
| 1038 | * Import now resets relevant attributes (e.g. ``__name__``, ``__loader__``, |
| 1039 | ``__package__``, ``__file__``, ``__cached__``) unconditionally when reloading. |
| 1040 | |
| Brett Cannon | 1448ecf | 2013-10-04 11:38:59 -0400 | [diff] [blame] | 1041 | * Frozen packages no longer set ``__path__`` to a list containing the package |
| 1042 | name but an empty list instead. Determing if a module is a package should be |
| 1043 | done using ``hasattr(module, '__path__')``. |
| Brett Cannon | 8f5ac51 | 2013-06-12 23:29:18 -0400 | [diff] [blame] | 1044 | |
| Brett Cannon | 33915eb | 2013-06-14 18:33:00 -0400 | [diff] [blame] | 1045 | * :func:`py_compile.compile` now raises :exc:`FileExistsError` if the file path |
| 1046 | it would write to is a symlink or a non-regular file. This is to act as a |
| 1047 | warning that import will overwrite those files with a regular file regardless |
| 1048 | of what type of file path they were originally. |
| Brett Cannon | f4375ef | 2013-06-16 18:05:54 -0400 | [diff] [blame] | 1049 | |
| 1050 | * :meth:`importlib.abc.SourceLoader.get_source` no longer raises |
| 1051 | :exc:`ImportError` when the source code being loaded triggers a |
| 1052 | :exc:`SyntaxError` or :exc:`UnicodeDecodeError`. As :exc:`ImportError` is |
| 1053 | meant to be raised only when source code cannot be found but it should, it was |
| 1054 | felt to be over-reaching/overloading of that meaning when the source code is |
| 1055 | found but improperly structured. If you were catching ImportError before and |
| 1056 | wish to continue to ignore syntax or decoding issues, catch all three |
| Victor Stinner | 84e33c8 | 2013-06-21 00:31:55 +0200 | [diff] [blame] | 1057 | exceptions now. |
| Nick Coghlan | 24c05bc | 2013-07-15 21:13:08 +1000 | [diff] [blame] | 1058 | |
| 1059 | * :func:`functools.update_wrapper` and :func:`functools.wraps` now correctly |
| Nick Coghlan | 367df12 | 2013-10-27 01:57:34 +1000 | [diff] [blame] | 1060 | set the ``__wrapped__`` attribute to the function being wrapper, even if |
| 1061 | that function also had its ``__wrapped__`` attribute set. This means |
| 1062 | ``__wrapped__`` attributes now correctly link a stack of decorated |
| 1063 | functions rather than every ``__wrapped__`` attribute in the chain |
| 1064 | referring to the innermost function. Introspection libraries that |
| 1065 | assumed the previous behaviour was intentional can use |
| 1066 | :func:`inspect.unwrap` to access the first function in the chain that has |
| 1067 | no ``__wrapped__`` attribute. |
| Victor Stinner | 2fe9bac | 2013-10-10 16:18:20 +0200 | [diff] [blame] | 1068 | |
| Georg Brandl | 0f5bff2 | 2013-10-19 17:46:38 +0200 | [diff] [blame] | 1069 | * :class:`importlib.machinery.PathFinder` now passes on the current working |
| Brett Cannon | 27e27f7 | 2013-10-18 11:39:04 -0400 | [diff] [blame] | 1070 | directory to objects in :data:`sys.path_hooks` for the empty string. This |
| 1071 | results in :data:`sys.path_importer_cache` never containing ``''``, thus |
| 1072 | iterating through :data:`sys.path_importer_cache` based on :data:`sys.path` |
| 1073 | will not find all keys. A module's ``__file__`` when imported in the current |
| 1074 | working directory will also now have an absolute path, including when using |
| 1075 | ``-m`` with the interpreter (this does not influence when the path to a file |
| 1076 | is specified on the command-line). |
| Victor Stinner | 2748bc7 | 2013-12-13 10:57:04 +0100 | [diff] [blame] | 1077 | |
| Victor Stinner | 774b2e0 | 2013-12-13 14:33:01 +0100 | [diff] [blame] | 1078 | Changes in the C API |
| 1079 | -------------------- |
| 1080 | |
| 1081 | * :c:func:`PyErr_SetImportError` now sets :exc:`TypeError` when its **msg** |
| 1082 | argument is not set. Previously only ``NULL`` was returned with no exception |
| 1083 | set. |
| 1084 | |
| 1085 | * The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must |
| 1086 | now be a string allocated by :c:func:`PyMem_RawMalloc` or |
| 1087 | :c:func:`PyMem_RawRealloc`, or *NULL* if an error occurred, instead of a |
| 1088 | string allocated by :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`. |
| 1089 | |
| 1090 | * :c:func:`PyThread_set_key_value` now always set the value. In Python |
| Victor Stinner | 2748bc7 | 2013-12-13 10:57:04 +0100 | [diff] [blame] | 1091 | 3.3, the function did nothing if the key already exists (if the current |
| 1092 | value is a non-NULL pointer). |
| 1093 | |
| Victor Stinner | 774b2e0 | 2013-12-13 14:33:01 +0100 | [diff] [blame] | 1094 | * The ``f_tstate`` (thread state) field of the :c:type:`PyFrameObject` |
| 1095 | structure has been removed to fix a bug: see :issue:`14432` for the |
| 1096 | rationale. |
| 1097 | |