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