blob: 044d7beea6cd9ca75567ddbebd4c8b33495268a2 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001****************************
Georg Brandl48310cd2009-01-03 21:18:54 +00002 What's New In Python 3.0
Georg Brandl116aa622007-08-15 14:28:22 +00003****************************
4
Guido van Rossum715287f2008-12-02 22:34:15 +00005.. XXX Add trademark info for Apple, Microsoft.
Georg Brandl116aa622007-08-15 14:28:22 +00006
Guido van Rossum4a98a2a2008-11-21 18:35:43 +00007:Author: Guido van Rossum
Guido van Rossum4a98a2a2008-11-21 18:35:43 +00008
9.. $Id$
10 Rules for maintenance:
Georg Brandl48310cd2009-01-03 21:18:54 +000011
Georg Brandl5a165582007-08-31 06:15:01 +000012 * Anyone can add text to this document. Do not spend very much time
13 on the wording of your changes, because your text will probably
14 get rewritten to some degree.
Georg Brandl48310cd2009-01-03 21:18:54 +000015
Georg Brandl5a165582007-08-31 06:15:01 +000016 * The maintainer will go through Misc/NEWS periodically and add
17 changes; it's therefore more important to add your changes to
Guido van Rossum67d75ba2008-12-03 02:31:31 +000018 Misc/NEWS than to this file. (Note: I didn't get to this for 3.0.
19 GvR.)
Georg Brandl48310cd2009-01-03 21:18:54 +000020
Georg Brandl5a165582007-08-31 06:15:01 +000021 * This is not a complete list of every single change; completeness
22 is the purpose of Misc/NEWS. Some changes I consider too small
23 or esoteric to include. If such a change is added to the text,
24 I'll just remove it. (This is another reason you shouldn't spend
25 too much time on writing your addition.)
Georg Brandl48310cd2009-01-03 21:18:54 +000026
Georg Brandl5a165582007-08-31 06:15:01 +000027 * If you want to draw your new text to the attention of the
28 maintainer, add 'XXX' to the beginning of the paragraph or
29 section.
Georg Brandl48310cd2009-01-03 21:18:54 +000030
Georg Brandl5a165582007-08-31 06:15:01 +000031 * It's OK to just add a fragmentary note about a change. For
32 example: "XXX Describe the transmogrify() function added to the
33 socket module." The maintainer will research the change and
34 write the necessary text.
Georg Brandl48310cd2009-01-03 21:18:54 +000035
Georg Brandl5a165582007-08-31 06:15:01 +000036 * You can comment out your additions if you like, but it's not
37 necessary (especially when a final release is some months away).
Georg Brandl48310cd2009-01-03 21:18:54 +000038
Georg Brandl5a165582007-08-31 06:15:01 +000039 * Credit the author of a patch or bugfix. Just the name is
Guido van Rossum67d75ba2008-12-03 02:31:31 +000040 sufficient; the e-mail address isn't necessary. (Due to time
41 constraints I haven't managed to do this for 3.0. GvR.)
Georg Brandl48310cd2009-01-03 21:18:54 +000042
Georg Brandl5a165582007-08-31 06:15:01 +000043 * It's helpful to add the bug/patch number as a comment:
Georg Brandl48310cd2009-01-03 21:18:54 +000044
Georg Brandl5a165582007-08-31 06:15:01 +000045 % Patch 12345
46 XXX Describe the transmogrify() function added to the socket
47 module.
48 (Contributed by P.Y. Developer.)
Georg Brandl48310cd2009-01-03 21:18:54 +000049
Georg Brandl5a165582007-08-31 06:15:01 +000050 This saves the maintainer the effort of going through the SVN log
Guido van Rossum67d75ba2008-12-03 02:31:31 +000051 when researching a change. (Again, I didn't get to this for 3.0.
52 GvR.)
Georg Brandl116aa622007-08-15 14:28:22 +000053
Guido van Rossumeb3d8d42008-12-02 00:56:25 +000054This article explains the new features in Python 3.0, compared to 2.6.
Guido van Rossumc46ee542008-12-02 23:46:46 +000055Python 3.0, also known as "Python 3000" or "Py3K", is the first ever
Guido van Rossum08388ef2008-12-03 05:39:28 +000056*intentionally backwards incompatible* Python release. There are more
57changes than in a typical release, and more that are important for all
58Python users. Nevertheless, after digesting the changes, you'll find
59that Python really hasn't changed all that much -- by and large, we're
60mostly fixing well-known annoyances and warts, and removing a lot of
61old cruft.
Guido van Rossumb197f3c2007-08-31 00:37:00 +000062
63This article doesn't attempt to provide a complete specification of
Guido van Rossum08388ef2008-12-03 05:39:28 +000064all new features, but instead tries to give a convenient overview.
65For full details, you should refer to the documentation for Python
663.0, and/or the many PEPs referenced in the text. If you want to
67understand the complete implementation and design rationale for a
68particular feature, PEPs usually have more details than the regular
69documentation; but note that PEPs usually are not kept up-to-date once
70a feature has been fully implemented.
71
72Due to time constraints this document is not as complete as it should
73have been. As always for a new release, the ``Misc/NEWS`` file in the
74source distribution contains a wealth of detailed information about
75every small thing that was changed.
Georg Brandl116aa622007-08-15 14:28:22 +000076
Georg Brandl5a165582007-08-31 06:15:01 +000077.. Compare with previous release in 2 - 3 sentences here.
78.. add hyperlink when the documentation becomes available online.
Georg Brandl116aa622007-08-15 14:28:22 +000079
Georg Brandl5a165582007-08-31 06:15:01 +000080.. ======================================================================
81.. Large, PEP-level features and changes should be described here.
82.. Should there be a new section here for 3k migration?
83.. Or perhaps a more general section describing module changes/deprecation?
84.. sets module deprecated
85.. ======================================================================
Georg Brandl116aa622007-08-15 14:28:22 +000086
87
Guido van Rossumb197f3c2007-08-31 00:37:00 +000088Common Stumbling Blocks
89=======================
90
Guido van Rossum715287f2008-12-02 22:34:15 +000091This section lists those few changes that are most likely to trip you
92up if you're used to Python 2.5.
Guido van Rossumb197f3c2007-08-31 00:37:00 +000093
Guido van Rossumeb3d8d42008-12-02 00:56:25 +000094Print Is A Function
95-------------------
Guido van Rossumdff1c312007-09-06 14:46:41 +000096
Georg Brandl375aec22011-01-15 17:03:02 +000097The ``print`` statement has been replaced with a :func:`print`
Guido van Rossum715287f2008-12-02 22:34:15 +000098function, with keyword arguments to replace most of the special syntax
Georg Brandl375aec22011-01-15 17:03:02 +000099of the old ``print`` statement (:pep:`3105`). Examples::
Guido van Rossumdff1c312007-09-06 14:46:41 +0000100
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000101 Old: print "The answer is", 2*2
102 New: print("The answer is", 2*2)
Guido van Rossumdff1c312007-09-06 14:46:41 +0000103
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000104 Old: print x, # Trailing comma suppresses newline
105 New: print(x, end=" ") # Appends a space instead of a newline
Guido van Rossumdff1c312007-09-06 14:46:41 +0000106
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000107 Old: print # Prints a newline
108 New: print() # You must call the function!
Guido van Rossumdff1c312007-09-06 14:46:41 +0000109
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000110 Old: print >>sys.stderr, "fatal error"
111 New: print("fatal error", file=sys.stderr)
Guido van Rossumdff1c312007-09-06 14:46:41 +0000112
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000113 Old: print (x, y) # prints repr((x, y))
114 New: print((x, y)) # Not the same as print(x, y)!
Guido van Rossumdff1c312007-09-06 14:46:41 +0000115
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000116You can also customize the separator between items, e.g.::
Guido van Rossumdff1c312007-09-06 14:46:41 +0000117
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000118 print("There are <", 2**32, "> possibilities!", sep="")
Guido van Rossumdff1c312007-09-06 14:46:41 +0000119
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000120which produces::
Guido van Rossumdff1c312007-09-06 14:46:41 +0000121
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000122 There are <4294967296> possibilities!
Guido van Rossumdff1c312007-09-06 14:46:41 +0000123
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000124Note:
Guido van Rossumdff1c312007-09-06 14:46:41 +0000125
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000126* The :func:`print` function doesn't support the "softspace" feature of
Georg Brandl375aec22011-01-15 17:03:02 +0000127 the old ``print`` statement. For example, in Python 2.x,
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000128 ``print "A\n", "B"`` would write ``"A\nB\n"``; but in Python 3.0,
129 ``print("A\n", "B")`` writes ``"A\n B\n"``.
Guido van Rossumdff1c312007-09-06 14:46:41 +0000130
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000131* Initially, you'll be finding yourself typing the old ``print x``
132 a lot in interactive mode. Time to retrain your fingers to type
133 ``print(x)`` instead!
Guido van Rossumdff1c312007-09-06 14:46:41 +0000134
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000135* When using the ``2to3`` source-to-source conversion tool, all
Georg Brandl375aec22011-01-15 17:03:02 +0000136 ``print`` statements are automatically converted to
Guido van Rossum715287f2008-12-02 22:34:15 +0000137 :func:`print` function calls, so this is mostly a non-issue for
138 larger projects.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000139
Gregory P. Smithf3655c42008-12-02 23:52:53 +0000140Views And Iterators Instead Of Lists
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000141-------------------------------------
142
143Some well-known APIs no longer return lists:
144
145* :class:`dict` methods :meth:`dict.keys`, :meth:`dict.items` and
146 :meth:`dict.values` return "views" instead of lists. For example,
147 this no longer works: ``k = d.keys(); k.sort()``. Use ``k =
Raymond Hettingerab4c51c2008-12-03 15:04:01 +0000148 sorted(d)`` instead (this works in Python 2.5 too and is just
Guido van Rossum73961352008-12-03 00:54:52 +0000149 as efficient).
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000150
151* Also, the :meth:`dict.iterkeys`, :meth:`dict.iteritems` and
152 :meth:`dict.itervalues` methods are no longer supported.
Guido van Rossum4a98a2a2008-11-21 18:35:43 +0000153
Guido van Rossum08388ef2008-12-03 05:39:28 +0000154* :func:`map` and :func:`filter` return iterators. If you really need
Jason R. Coombsdf9a5f52011-08-01 17:51:34 -0400155 a list and the input sequences are all of equal length, a quick
156 fix is to wrap :func:`map` in :func:`list`, e.g. ``list(map(...))``,
157 but a better fix is
Guido van Rossum08388ef2008-12-03 05:39:28 +0000158 often to use a list comprehension (especially when the original code
159 uses :keyword:`lambda`), or rewriting the code so it doesn't need a
160 list at all. Particularly tricky is :func:`map` invoked for the
161 side effects of the function; the correct transformation is to use a
162 regular :keyword:`for` loop (since creating a list would just be
163 wasteful).
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000164
Jason R. Coombsdf9a5f52011-08-01 17:51:34 -0400165 If the input sequences are not of equal length, :func:`map` will
166 stop at the termination of the shortest of the sequences. For full
Georg Brandl93a56cd2014-10-30 22:25:41 +0100167 compatibility with :func:`map` from Python 2.x, also wrap the sequences in
Jason R. Coombsdf9a5f52011-08-01 17:51:34 -0400168 :func:`itertools.zip_longest`, e.g. ``map(func, *sequences)`` becomes
169 ``list(map(func, itertools.zip_longest(*sequences)))``.
170
Guido van Rossum73961352008-12-03 00:54:52 +0000171* :func:`range` now behaves like :func:`xrange` used to behave, except
172 it works with values of arbitrary size. The latter no longer
173 exists.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000174
175* :func:`zip` now returns an iterator.
176
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000177Ordering Comparisons
178--------------------
179
180Python 3.0 has simplified the rules for ordering comparisons:
181
182* The ordering comparison operators (``<``, ``<=``, ``>=``, ``>``)
183 raise a TypeError exception when the operands don't have a
184 meaningful natural ordering. Thus, expressions like ``1 < ''``, ``0
Guido van Rossum08388ef2008-12-03 05:39:28 +0000185 > None`` or ``len <= len`` are no longer valid, and e.g. ``None <
186 None`` raises :exc:`TypeError` instead of returning
Georg Brandl375aec22011-01-15 17:03:02 +0000187 ``False``. A corollary is that sorting a heterogeneous list
Guido van Rossum08388ef2008-12-03 05:39:28 +0000188 no longer makes sense -- all the elements must be comparable to each
189 other. Note that this does not apply to the ``==`` and ``!=``
190 operators: objects of different incomparable types always compare
Guido van Rossum815427c2008-12-03 15:24:50 +0000191 unequal to each other.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000192
Guido van Rossumfedd1402008-12-03 04:15:35 +0000193* :meth:`builtin.sorted` and :meth:`list.sort` no longer accept the
194 *cmp* argument providing a comparison function. Use the *key*
195 argument instead. N.B. the *key* and *reverse* arguments are now
196 "keyword-only".
Kurt B. Kaisera1401012008-02-13 16:09:27 +0000197
Georg Brandl40c509d2008-12-06 08:14:46 +0000198* The :func:`cmp` function should be treated as gone, and the :meth:`__cmp__`
199 special method is no longer supported. Use :meth:`__lt__` for sorting,
200 :meth:`__eq__` with :meth:`__hash__`, and other rich comparisons as needed.
201 (If you really need the :func:`cmp` functionality, you could use the
202 expression ``(a > b) - (a < b)`` as the equivalent for ``cmp(a, b)``.)
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000203
204Integers
205--------
206
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300207* :pep:`237`: Essentially, :class:`long` renamed to :class:`int`.
Guido van Rossum73961352008-12-03 00:54:52 +0000208 That is, there is only one built-in integral type, named
209 :class:`int`; but it behaves mostly like the old :class:`long` type.
Guido van Rossum4a98a2a2008-11-21 18:35:43 +0000210
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300211* :pep:`238`: An expression like ``1/2`` returns a float. Use
Guido van Rossum73961352008-12-03 00:54:52 +0000212 ``1//2`` to get the truncating behavior. (The latter syntax has
213 existed for years, at least since Python 2.2.)
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000214
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000215* The :data:`sys.maxint` constant was removed, since there is no
Guido van Rossum08388ef2008-12-03 05:39:28 +0000216 longer a limit to the value of integers. However, :data:`sys.maxsize`
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000217 can be used as an integer larger than any practical list or string
218 index. It conforms to the implementation's "natural" integer size
219 and is typically the same as :data:`sys.maxint` in previous releases
220 on the same platform (assuming the same build options).
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000221
Guido van Rossum73961352008-12-03 00:54:52 +0000222* The :func:`repr` of a long integer doesn't include the trailing ``L``
223 anymore, so code that unconditionally strips that character will
224 chop off the last digit instead. (Use :func:`str` instead.)
225
226* Octal literals are no longer of the form ``0720``; use ``0o720``
227 instead.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000228
Guido van Rossumfedd1402008-12-03 04:15:35 +0000229Text Vs. Data Instead Of Unicode Vs. 8-bit
230------------------------------------------
231
232Everything you thought you knew about binary data and Unicode has
233changed.
234
235* Python 3.0 uses the concepts of *text* and (binary) *data* instead
236 of Unicode strings and 8-bit strings. All text is Unicode; however
237 *encoded* Unicode is represented as binary data. The type used to
238 hold text is :class:`str`, the type used to hold data is
239 :class:`bytes`. The biggest difference with the 2.x situation is
240 that any attempt to mix text and data in Python 3.0 raises
Guido van Rossumb768d4f2008-12-03 04:18:17 +0000241 :exc:`TypeError`, whereas if you were to mix Unicode and 8-bit
Guido van Rossumfedd1402008-12-03 04:15:35 +0000242 strings in Python 2.x, it would work if the 8-bit string happened to
243 contain only 7-bit (ASCII) bytes, but you would get
Guido van Rossumb768d4f2008-12-03 04:18:17 +0000244 :exc:`UnicodeDecodeError` if it contained non-ASCII values. This
Guido van Rossumfedd1402008-12-03 04:15:35 +0000245 value-specific behavior has caused numerous sad faces over the
246 years.
247
248* As a consequence of this change in philosophy, pretty much all code
249 that uses Unicode, encodings or binary data most likely has to
250 change. The change is for the better, as in the 2.x world there
251 were numerous bugs having to do with mixing encoded and unencoded
252 text. To be prepared in Python 2.x, start using :class:`unicode`
253 for all unencoded text, and :class:`str` for binary or encoded data
254 only. Then the ``2to3`` tool will do most of the work for you.
255
256* You can no longer use ``u"..."`` literals for Unicode text.
257 However, you must use ``b"..."`` literals for binary data.
258
259* As the :class:`str` and :class:`bytes` types cannot be mixed, you
260 must always explicitly convert between them. Use :meth:`str.encode`
261 to go from :class:`str` to :class:`bytes`, and :meth:`bytes.decode`
262 to go from :class:`bytes` to :class:`str`. You can also use
263 ``bytes(s, encoding=...)`` and ``str(b, encoding=...)``,
264 respectively.
265
266* Like :class:`str`, the :class:`bytes` type is immutable. There is a
267 separate *mutable* type to hold buffered binary data,
268 :class:`bytearray`. Nearly all APIs that accept :class:`bytes` also
269 accept :class:`bytearray`. The mutable API is based on
270 :class:`collections.MutableSequence`.
271
272* All backslashes in raw string literals are interpreted literally.
273 This means that ``'\U'`` and ``'\u'`` escapes in raw strings are not
274 treated specially. For example, ``r'\u20ac'`` is a string of 6
275 characters in Python 3.0, whereas in 2.6, ``ur'\u20ac'`` was the
276 single "euro" character. (Of course, this change only affects raw
277 string literals; the euro character is ``'\u20ac'`` in Python 3.0.)
278
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000279* The built-in :class:`basestring` abstract type was removed. Use
Guido van Rossumfedd1402008-12-03 04:15:35 +0000280 :class:`str` instead. The :class:`str` and :class:`bytes` types
281 don't have functionality enough in common to warrant a shared base
282 class. The ``2to3`` tool (see below) replaces every occurrence of
283 :class:`basestring` with :class:`str`.
284
285* Files opened as text files (still the default mode for :func:`open`)
286 always use an encoding to map between strings (in memory) and bytes
287 (on disk). Binary files (opened with a ``b`` in the mode argument)
288 always use bytes in memory. This means that if a file is opened
289 using an incorrect mode or encoding, I/O will likely fail loudly,
290 instead of silently producing incorrect data. It also means that
291 even Unix users will have to specify the correct mode (text or
292 binary) when opening a file. There is a platform-dependent default
293 encoding, which on Unixy platforms can be set with the ``LANG``
294 environment variable (and sometimes also with some other
295 platform-specific locale-related environment variables). In many
296 cases, but not all, the system default is UTF-8; you should never
297 count on this default. Any application reading or writing more than
298 pure ASCII text should probably have a way to override the encoding.
299 There is no longer any need for using the encoding-aware streams
300 in the :mod:`codecs` module.
301
Antoine Pitrou08c08eb2011-12-21 11:24:15 +0100302* The initial values of :data:`sys.stdin`, :data:`sys.stdout` and
303 :data:`sys.stderr` are now unicode-only text files (i.e., they are
304 instances of :class:`io.TextIOBase`). To read and write bytes data
305 with these streams, you need to use their :data:`io.TextIOBase.buffer`
306 attribute.
307
Guido van Rossumfedd1402008-12-03 04:15:35 +0000308* Filenames are passed to and returned from APIs as (Unicode) strings.
309 This can present platform-specific problems because on some
310 platforms filenames are arbitrary byte strings. (On the other hand,
311 on Windows filenames are natively stored as Unicode.) As a
312 work-around, most APIs (e.g. :func:`open` and many functions in the
313 :mod:`os` module) that take filenames accept :class:`bytes` objects
314 as well as strings, and a few APIs have a way to ask for a
315 :class:`bytes` return value. Thus, :func:`os.listdir` returns a
316 list of :class:`bytes` instances if the argument is a :class:`bytes`
Georg Brandl83ebf382008-12-04 18:21:46 +0000317 instance, and :func:`os.getcwdb` returns the current working
Guido van Rossumfedd1402008-12-03 04:15:35 +0000318 directory as a :class:`bytes` instance. Note that when
319 :func:`os.listdir` returns a list of strings, filenames that
320 cannot be decoded properly are omitted rather than raising
321 :exc:`UnicodeError`.
322
323* Some system APIs like :data:`os.environ` and :data:`sys.argv` can
324 also present problems when the bytes made available by the system is
325 not interpretable using the default encoding. Setting the ``LANG``
326 variable and rerunning the program is probably the best approach.
327
328* :pep:`3138`: The :func:`repr` of a string no longer escapes
329 non-ASCII characters. It still escapes control characters and code
330 points with non-printable status in the Unicode standard, however.
331
332* :pep:`3120`: The default source encoding is now UTF-8.
333
334* :pep:`3131`: Non-ASCII letters are now allowed in identifiers.
335 (However, the standard library remains ASCII-only with the exception
336 of contributor names in comments.)
337
338* The :mod:`StringIO` and :mod:`cStringIO` modules are gone. Instead,
339 import the :mod:`io` module and use :class:`io.StringIO` or
340 :class:`io.BytesIO` for text and data respectively.
341
342* See also the :ref:`unicode-howto`, which was updated for Python 3.0.
343
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000344
Guido van Rossum73961352008-12-03 00:54:52 +0000345Overview Of Syntax Changes
346==========================
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000347
Guido van Rossum73961352008-12-03 00:54:52 +0000348This section gives a brief overview of every *syntactic* change in
349Python 3.0.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000350
Guido van Rossum38287682008-12-03 02:03:19 +0000351New Syntax
352----------
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000353
Guido van Rossum73961352008-12-03 00:54:52 +0000354* :pep:`3107`: Function argument and return value annotations. This
355 provides a standardized way of annotating a function's parameters
356 and return value. There are no semantics attached to such
357 annotations except that they can be introspected at runtime using
358 the :attr:`__annotations__` attribute. The intent is to encourage
359 experimentation through metaclasses, decorators or frameworks.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000360
Guido van Rossum715287f2008-12-02 22:34:15 +0000361* :pep:`3102`: Keyword-only arguments. Named parameters occurring
362 after ``*args`` in the parameter list *must* be specified using
363 keyword syntax in the call. You can also use a bare ``*`` in the
364 parameter list to indicate that you don't accept a variable-length
365 argument list, but you do have keyword-only arguments.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000366
367* Keyword arguments are allowed after the list of base classes in a
368 class definition. This is used by the new convention for specifying
Guido van Rossumfedd1402008-12-03 04:15:35 +0000369 a metaclass (see next section), but can be used for other purposes
370 as well, as long as the metaclass supports it.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000371
Guido van Rossum715287f2008-12-02 22:34:15 +0000372* :pep:`3104`: :keyword:`nonlocal` statement. Using ``nonlocal x``
373 you can now assign directly to a variable in an outer (but
374 non-global) scope. :keyword:`nonlocal` is a new reserved word.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000375
Guido van Rossum715287f2008-12-02 22:34:15 +0000376* :pep:`3132`: Extended Iterable Unpacking. You can now write things
377 like ``a, b, *rest = some_sequence``. And even ``*rest, a =
378 stuff``. The ``rest`` object is always a (possibly empty) list; the
379 right-hand side may be any iterable. Example::
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000380
Guido van Rossum715287f2008-12-02 22:34:15 +0000381 (a, *rest, b) = range(5)
382
Georg Brandlbadc7ab2008-12-05 18:31:51 +0000383 This sets *a* to ``0``, *b* to ``4``, and *rest* to ``[1, 2, 3]``.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000384
385* Dictionary comprehensions: ``{k: v for k, v in stuff}`` means the
Guido van Rossum73961352008-12-03 00:54:52 +0000386 same thing as ``dict(stuff)`` but is more flexible. (This is
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300387 :pep:`274` vindicated. :-)
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000388
389* Set literals, e.g. ``{1, 2}``. Note that ``{}`` is an empty
Guido van Rossum715287f2008-12-02 22:34:15 +0000390 dictionary; use ``set()`` for an empty set. Set comprehensions are
Guido van Rossum73961352008-12-03 00:54:52 +0000391 also supported; e.g., ``{x for x in stuff}`` means the same thing as
Guido van Rossum715287f2008-12-02 22:34:15 +0000392 ``set(stuff)`` but is more flexible.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000393
394* New octal literals, e.g. ``0o720`` (already in 2.6). The old octal
Walter Dörwaldeab34c92008-12-02 11:58:09 +0000395 literals (``0720``) are gone.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000396
Georg Brandla2361d92008-12-04 18:19:41 +0000397* New binary literals, e.g. ``0b1010`` (already in 2.6), and
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000398 there is a new corresponding built-in function, :func:`bin`.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000399
Raymond Hettingerab4c51c2008-12-03 15:04:01 +0000400* Bytes literals are introduced with a leading ``b`` or ``B``, and
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000401 there is a new corresponding built-in function, :func:`bytes`.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000402
Guido van Rossum38287682008-12-03 02:03:19 +0000403Changed Syntax
404--------------
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000405
Guido van Rossumfedd1402008-12-03 04:15:35 +0000406* :pep:`3109` and :pep:`3134`: new :keyword:`raise` statement syntax:
Georg Brandlbadc7ab2008-12-05 18:31:51 +0000407 :samp:`raise [{expr} [from {expr}]]`. See below.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000408
Guido van Rossum715287f2008-12-02 22:34:15 +0000409* :keyword:`as` and :keyword:`with` are now reserved words. (Since
410 2.6, actually.)
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000411
Georg Brandl375aec22011-01-15 17:03:02 +0000412* ``True``, ``False``, and ``None`` are reserved words. (2.6 partially enforced
413 the restrictions on ``None`` already.)
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000414
Guido van Rossum715287f2008-12-02 22:34:15 +0000415* Change from :keyword:`except` *exc*, *var* to
416 :keyword:`except` *exc* :keyword:`as` *var*. See :pep:`3110`.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000417
Guido van Rossumfedd1402008-12-03 04:15:35 +0000418* :pep:`3115`: New Metaclass Syntax. Instead of::
419
420 class C:
421 __metaclass__ = M
422 ...
423
424 you must now use::
425
426 class C(metaclass=M):
427 ...
428
429 The module-global :data:`__metaclass__` variable is no longer
430 supported. (It was a crutch to make it easier to default to
431 new-style classes without deriving every class from
432 :class:`object`.)
433
Guido van Rossum715287f2008-12-02 22:34:15 +0000434* List comprehensions no longer support the syntactic form
Georg Brandlbadc7ab2008-12-05 18:31:51 +0000435 :samp:`[... for {var} in {item1}, {item2}, ...]`. Use
436 :samp:`[... for {var} in ({item1}, {item2}, ...)]` instead.
Guido van Rossum715287f2008-12-02 22:34:15 +0000437 Also note that list comprehensions have different semantics: they
438 are closer to syntactic sugar for a generator expression inside a
439 :func:`list` constructor, and in particular the loop control
440 variables are no longer leaked into the surrounding scope.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000441
Guido van Rossum715287f2008-12-02 22:34:15 +0000442* The *ellipsis* (``...``) can be used as an atomic expression
443 anywhere. (Previously it was only allowed in slices.) Also, it
444 *must* now be spelled as ``...``. (Previously it could also be
445 spelled as ``. . .``, by a mere accident of the grammar.)
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000446
Guido van Rossum38287682008-12-03 02:03:19 +0000447Removed Syntax
448--------------
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000449
Guido van Rossum715287f2008-12-02 22:34:15 +0000450* :pep:`3113`: Tuple parameter unpacking removed. You can no longer
451 write ``def foo(a, (b, c)): ...``.
452 Use ``def foo(a, b_c): b, c = b_c`` instead.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000453
Guido van Rossum715287f2008-12-02 22:34:15 +0000454* Removed backticks (use :func:`repr` instead).
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000455
Guido van Rossum715287f2008-12-02 22:34:15 +0000456* Removed ``<>`` (use ``!=`` instead).
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000457
458* Removed keyword: :func:`exec` is no longer a keyword; it remains as
459 a function. (Fortunately the function syntax was also accepted in
Guido van Rossum715287f2008-12-02 22:34:15 +0000460 2.x.) Also note that :func:`exec` no longer takes a stream argument;
461 instead of ``exec(f)`` you can use ``exec(f.read())``.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000462
463* Integer literals no longer support a trailing ``l`` or ``L``.
464
465* String literals no longer support a leading ``u`` or ``U``.
466
Guido van Rossum715287f2008-12-02 22:34:15 +0000467* The :keyword:`from` *module* :keyword:`import` ``*`` syntax is only
468 allowed at the module level, no longer inside functions.
469
Georg Brandlbadc7ab2008-12-05 18:31:51 +0000470* The only acceptable syntax for relative imports is :samp:`from .[{module}]
471 import {name}`. All :keyword:`import` forms not starting with ``.`` are
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300472 interpreted as absolute imports. (:pep:`328`)
Guido van Rossum715287f2008-12-02 22:34:15 +0000473
Guido van Rossumfedd1402008-12-03 04:15:35 +0000474* Classic classes are gone.
475
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000476
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000477Changes Already Present In Python 2.6
478=====================================
479
Guido van Rossum715287f2008-12-02 22:34:15 +0000480Since many users presumably make the jump straight from Python 2.5 to
481Python 3.0, this section reminds the reader of new features that were
482originally designed for Python 3.0 but that were back-ported to Python
4832.6. The corresponding sections in :ref:`whats-new-in-2.6` should be
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000484consulted for longer descriptions.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000485
Guido van Rossum715287f2008-12-02 22:34:15 +0000486* :ref:`pep-0343`. The :keyword:`with` statement is now a standard
Georg Brandlffd1a752008-12-03 06:44:59 +0000487 feature and no longer needs to be imported from the :mod:`__future__`.
Guido van Rossum715287f2008-12-02 22:34:15 +0000488 Also check out :ref:`new-26-context-managers` and
489 :ref:`new-module-contextlib`.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000490
Guido van Rossum715287f2008-12-02 22:34:15 +0000491* :ref:`pep-0366`. This enhances the usefulness of the :option:`-m`
492 option when the referenced module lives in a package.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000493
Guido van Rossum715287f2008-12-02 22:34:15 +0000494* :ref:`pep-0370`.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000495
Guido van Rossum715287f2008-12-02 22:34:15 +0000496* :ref:`pep-0371`.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000497
Guido van Rossum715287f2008-12-02 22:34:15 +0000498* :ref:`pep-3101`. Note: the 2.6 description mentions the
499 :meth:`format` method for both 8-bit and Unicode strings. In 3.0,
500 only the :class:`str` type (text strings with Unicode support)
501 supports this method; the :class:`bytes` type does not. The plan is
502 to eventually make this the only API for string formatting, and to
503 start deprecating the ``%`` operator in Python 3.1.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000504
Guido van Rossum715287f2008-12-02 22:34:15 +0000505* :ref:`pep-3105`. This is now a standard feature and no longer needs
Guido van Rossum67d75ba2008-12-03 02:31:31 +0000506 to be imported from :mod:`__future__`. More details were given above.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000507
Guido van Rossum715287f2008-12-02 22:34:15 +0000508* :ref:`pep-3110`. The :keyword:`except` *exc* :keyword:`as` *var*
509 syntax is now standard and :keyword:`except` *exc*, *var* is no
510 longer supported. (Of course, the :keyword:`as` *var* part is still
511 optional.)
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000512
Guido van Rossum715287f2008-12-02 22:34:15 +0000513* :ref:`pep-3112`. The ``b"..."`` string literal notation (and its
514 variants like ``b'...'``, ``b"""..."""``, and ``br"..."``) now
Guido van Rossum38287682008-12-03 02:03:19 +0000515 produces a literal of type :class:`bytes`.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000516
Guido van Rossum715287f2008-12-02 22:34:15 +0000517* :ref:`pep-3116`. The :mod:`io` module is now the standard way of
Antoine Pitrou08c08eb2011-12-21 11:24:15 +0100518 doing file I/O. The built-in :func:`open` function is now an
Guido van Rossum715287f2008-12-02 22:34:15 +0000519 alias for :func:`io.open` and has additional keyword arguments
520 *encoding*, *errors*, *newline* and *closefd*. Also note that an
521 invalid *mode* argument now raises :exc:`ValueError`, not
Guido van Rossum38287682008-12-03 02:03:19 +0000522 :exc:`IOError`. The binary file object underlying a text file
523 object can be accessed as :attr:`f.buffer` (but beware that the
524 text object maintains a buffer of itself in order to speed up
525 the encoding and decoding operations).
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000526
Guido van Rossum715287f2008-12-02 22:34:15 +0000527* :ref:`pep-3118`. The old builtin :func:`buffer` is now really gone;
528 the new builtin :func:`memoryview` provides (mostly) similar
529 functionality.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000530
Guido van Rossum715287f2008-12-02 22:34:15 +0000531* :ref:`pep-3119`. The :mod:`abc` module and the ABCs defined in the
Guido van Rossum38287682008-12-03 02:03:19 +0000532 :mod:`collections` module plays a somewhat more prominent role in
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000533 the language now, and built-in collection types like :class:`dict`
Guido van Rossum715287f2008-12-02 22:34:15 +0000534 and :class:`list` conform to the :class:`collections.MutableMapping`
Raymond Hettingerab4c51c2008-12-03 15:04:01 +0000535 and :class:`collections.MutableSequence` ABCs, respectively.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000536
Guido van Rossum715287f2008-12-02 22:34:15 +0000537* :ref:`pep-3127`. As mentioned above, the new octal literal
538 notation is the only one supported, and binary literals have been
539 added.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000540
Guido van Rossum38287682008-12-03 02:03:19 +0000541* :ref:`pep-3129`.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000542
Guido van Rossum715287f2008-12-02 22:34:15 +0000543* :ref:`pep-3141`. The :mod:`numbers` module is another new use of
544 ABCs, defining Python's "numeric tower". Also note the new
Guido van Rossum38287682008-12-03 02:03:19 +0000545 :mod:`fractions` module which implements :class:`numbers.Rational`.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000546
547
548Library Changes
549===============
550
Guido van Rossumc46ee542008-12-02 23:46:46 +0000551Due to time constraints, this document does not exhaustively cover the
552very extensive changes to the standard library. :pep:`3108` is the
553reference for the major changes to the library. Here's a capsule
554review:
Guido van Rossum56076da2008-12-02 22:58:36 +0000555
Guido van Rossumc46ee542008-12-02 23:46:46 +0000556* Many old modules were removed. Some, like :mod:`gopherlib` (no
557 longer used) and :mod:`md5` (replaced by :mod:`hashlib`), were
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300558 already deprecated by :pep:`4`. Others were removed as a result
Guido van Rossumc46ee542008-12-02 23:46:46 +0000559 of the removal of support for various platforms such as Irix, BeOS
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300560 and Mac OS 9 (see :pep:`11`). Some modules were also selected for
Guido van Rossumc46ee542008-12-02 23:46:46 +0000561 removal in Python 3.0 due to lack of use or because a better
562 replacement exists. See :pep:`3108` for an exhaustive list.
Guido van Rossum5b78dd92008-12-02 17:31:14 +0000563
Guido van Rossumc46ee542008-12-02 23:46:46 +0000564* The :mod:`bsddb3` package was removed because its presence in the
565 core standard library has proved over time to be a particular burden
Guido van Rossum08388ef2008-12-03 05:39:28 +0000566 for the core developers due to testing instability and Berkeley DB's
Guido van Rossumc46ee542008-12-02 23:46:46 +0000567 release schedule. However, the package is alive and well,
Georg Brandl5d941342016-02-26 19:37:12 +0100568 externally maintained at https://www.jcea.es/programacion/pybsddb.htm.
Guido van Rossumc46ee542008-12-02 23:46:46 +0000569
Andrew M. Kuchling2982c322008-12-04 15:07:14 +0000570* Some modules were renamed because their old name disobeyed
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300571 :pep:`8`, or for various other reasons. Here's the list:
Guido van Rossumc46ee542008-12-02 23:46:46 +0000572
573 ======================= =======================
574 Old Name New Name
575 ======================= =======================
576 _winreg winreg
577 ConfigParser configparser
578 copy_reg copyreg
579 Queue queue
580 SocketServer socketserver
581 markupbase _markupbase
582 repr reprlib
583 test.test_support test.support
584 ======================= =======================
585
586* A common pattern in Python 2.x is to have one version of a module
587 implemented in pure Python, with an optional accelerated version
588 implemented as a C extension; for example, :mod:`pickle` and
589 :mod:`cPickle`. This places the burden of importing the accelerated
590 version and falling back on the pure Python version on each user of
591 these modules. In Python 3.0, the accelerated versions are
592 considered implementation details of the pure Python versions.
593 Users should always import the standard version, which attempts to
594 import the accelerated version and falls back to the pure Python
Guido van Rossumfedd1402008-12-03 04:15:35 +0000595 version. The :mod:`pickle` / :mod:`cPickle` pair received this
596 treatment. The :mod:`profile` module is on the list for 3.1. The
597 :mod:`StringIO` module has been turned into a class in the :mod:`io`
598 module.
Guido van Rossumc46ee542008-12-02 23:46:46 +0000599
600* Some related modules have been grouped into packages, and usually
601 the submodule names have been simplified. The resulting new
602 packages are:
603
604 * :mod:`dbm` (:mod:`anydbm`, :mod:`dbhash`, :mod:`dbm`,
605 :mod:`dumbdbm`, :mod:`gdbm`, :mod:`whichdb`).
606
607 * :mod:`html` (:mod:`HTMLParser`, :mod:`htmlentitydefs`).
608
609 * :mod:`http` (:mod:`httplib`, :mod:`BaseHTTPServer`,
610 :mod:`CGIHTTPServer`, :mod:`SimpleHTTPServer`, :mod:`Cookie`,
611 :mod:`cookielib`).
612
613 * :mod:`tkinter` (all :mod:`Tkinter`-related modules except
614 :mod:`turtle`). The target audience of :mod:`turtle` doesn't
615 really care about :mod:`tkinter`. Also note that as of Python
616 2.6, the functionality of :mod:`turtle` has been greatly enhanced.
617
Andrew M. Kuchling2982c322008-12-04 15:07:14 +0000618 * :mod:`urllib` (:mod:`urllib`, :mod:`urllib2`, :mod:`urlparse`,
Guido van Rossumc46ee542008-12-02 23:46:46 +0000619 :mod:`robotparse`).
620
621 * :mod:`xmlrpc` (:mod:`xmlrpclib`, :mod:`DocXMLRPCServer`,
622 :mod:`SimpleXMLRPCServer`).
Christian Heimes6e72b9e2008-12-03 13:39:03 +0000623
Guido van Rossum08388ef2008-12-03 05:39:28 +0000624Some other changes to standard library modules, not covered by
Guido van Rossumfedd1402008-12-03 04:15:35 +0000625:pep:`3108`:
Guido van Rossum715287f2008-12-02 22:34:15 +0000626
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000627* Killed :mod:`sets`. Use the built-in :func:`set` class.
Guido van Rossum715287f2008-12-02 22:34:15 +0000628
Guido van Rossumc46ee542008-12-02 23:46:46 +0000629* Cleanup of the :mod:`sys` module: removed :func:`sys.exitfunc`,
630 :func:`sys.exc_clear`, :data:`sys.exc_type`, :data:`sys.exc_value`,
631 :data:`sys.exc_traceback`. (Note that :data:`sys.last_type`
Guido van Rossum715287f2008-12-02 22:34:15 +0000632 etc. remain.)
633
Guido van Rossumc46ee542008-12-02 23:46:46 +0000634* Cleanup of the :class:`array.array` type: the :meth:`read` and
635 :meth:`write` methods are gone; use :meth:`fromfile` and
Georg Brandld2aa7e62008-12-06 08:12:11 +0000636 :meth:`tofile` instead. Also, the ``'c'`` typecode for array is
637 gone -- use either ``'b'`` for bytes or ``'u'`` for Unicode
638 characters.
Guido van Rossum715287f2008-12-02 22:34:15 +0000639
Guido van Rossumc46ee542008-12-02 23:46:46 +0000640* Cleanup of the :mod:`operator` module: removed
641 :func:`sequenceIncludes` and :func:`isCallable`.
Guido van Rossum715287f2008-12-02 22:34:15 +0000642
Guido van Rossumc46ee542008-12-02 23:46:46 +0000643* Cleanup of the :mod:`thread` module: :func:`acquire_lock` and
644 :func:`release_lock` are gone; use :func:`acquire` and
645 :func:`release` instead.
Guido van Rossum715287f2008-12-02 22:34:15 +0000646
Guido van Rossumc46ee542008-12-02 23:46:46 +0000647* Cleanup of the :mod:`random` module: removed the :func:`jumpahead` API.
Guido van Rossum715287f2008-12-02 22:34:15 +0000648
Guido van Rossumfedd1402008-12-03 04:15:35 +0000649* The :mod:`new` module is gone.
650
651* The functions :func:`os.tmpnam`, :func:`os.tempnam` and
652 :func:`os.tmpfile` have been removed in favor of the :mod:`tempfile`
653 module.
654
655* The :mod:`tokenize` module has been changed to work with bytes. The
656 main entry point is now :func:`tokenize.tokenize`, instead of
657 generate_tokens.
658
659* :data:`string.letters` and its friends (:data:`string.lowercase` and
660 :data:`string.uppercase`) are gone. Use
661 :data:`string.ascii_letters` etc. instead. (The reason for the
Andrew M. Kuchling2982c322008-12-04 15:07:14 +0000662 removal is that :data:`string.letters` and friends had
Guido van Rossumfedd1402008-12-03 04:15:35 +0000663 locale-specific behavior, which is a bad idea for such
664 attractively-named global "constants".)
665
666* Renamed module :mod:`__builtin__` to :mod:`builtins` (removing the
667 underscores, adding an 's'). The :data:`__builtins__` variable
668 found in most global namespaces is unchanged. To modify a builtin,
669 you should use :mod:`builtins`, not :data:`__builtins__`!
670
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000671
Guido van Rossum715287f2008-12-02 22:34:15 +0000672:pep:`3101`: A New Approach To String Formatting
673================================================
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000674
Guido van Rossum4a98a2a2008-11-21 18:35:43 +0000675* A new system for built-in string formatting operations replaces the
676 ``%`` string formatting operator. (However, the ``%`` operator is
677 still supported; it will be deprecated in Python 3.1 and removed
Guido van Rossum38287682008-12-03 02:03:19 +0000678 from the language at some later time.) Read :pep:`3101` for the full
679 scoop.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000680
681
Guido van Rossumfedd1402008-12-03 04:15:35 +0000682Changes To Exceptions
683=====================
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000684
Guido van Rossumfedd1402008-12-03 04:15:35 +0000685The APIs for raising and catching exception have been cleaned up and
686new powerful features added:
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000687
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300688* :pep:`352`: All exceptions must be derived (directly or indirectly)
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000689 from :exc:`BaseException`. This is the root of the exception
Guido van Rossumfedd1402008-12-03 04:15:35 +0000690 hierarchy. This is not new as a recommendation, but the
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000691 *requirement* to inherit from :exc:`BaseException` is new. (Python
692 2.6 still allowed classic classes to be raised, and placed no
Guido van Rossumfedd1402008-12-03 04:15:35 +0000693 restriction on what you can catch.) As a consequence, string
694 exceptions are finally truly and utterly dead.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000695
Guido van Rossumfedd1402008-12-03 04:15:35 +0000696* Almost all exceptions should actually derive from :exc:`Exception`;
697 :exc:`BaseException` should only be used as a base class for
698 exceptions that should only be handled at the top level, such as
699 :exc:`SystemExit` or :exc:`KeyboardInterrupt`. The recommended
700 idiom for handling all exceptions except for this latter category is
701 to use :keyword:`except` :exc:`Exception`.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000702
Georg Brandl0a7b2c72009-02-06 18:11:01 +0000703* :exc:`StandardError` was removed.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000704
Guido van Rossumfedd1402008-12-03 04:15:35 +0000705* Exceptions no longer behave as sequences. Use the :attr:`args`
706 attribute instead.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000707
Georg Brandl8f9cd6a2008-12-15 09:16:15 +0000708* :pep:`3109`: Raising exceptions. You must now use :samp:`raise
709 {Exception}({args})` instead of :samp:`raise {Exception}, {args}`.
Guido van Rossumfedd1402008-12-03 04:15:35 +0000710 Additionally, you can no longer explicitly specify a traceback;
711 instead, if you *have* to do this, you can assign directly to the
712 :attr:`__traceback__` attribute (see below).
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000713
Guido van Rossumfedd1402008-12-03 04:15:35 +0000714* :pep:`3110`: Catching exceptions. You must now use
Georg Brandl8f9cd6a2008-12-15 09:16:15 +0000715 :samp:`except {SomeException} as {variable}` instead
716 of :samp:`except {SomeException}, {variable}`. Moreover, the
Guido van Rossumfedd1402008-12-03 04:15:35 +0000717 *variable* is explicitly deleted when the :keyword:`except` block
718 is left.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000719
Guido van Rossumfedd1402008-12-03 04:15:35 +0000720* :pep:`3134`: Exception chaining. There are two cases: implicit
721 chaining and explicit chaining. Implicit chaining happens when an
722 exception is raised in an :keyword:`except` or :keyword:`finally`
723 handler block. This usually happens due to a bug in the handler
724 block; we call this a *secondary* exception. In this case, the
725 original exception (that was being handled) is saved as the
726 :attr:`__context__` attribute of the secondary exception.
727 Explicit chaining is invoked with this syntax::
728
729 raise SecondaryException() from primary_exception
730
731 (where *primary_exception* is any expression that produces an
732 exception object, probably an exception that was previously caught).
733 In this case, the primary exception is stored on the
734 :attr:`__cause__` attribute of the secondary exception. The
735 traceback printed when an unhandled exception occurs walks the chain
736 of :attr:`__cause__` and :attr:`__context__` attributes and prints a
737 separate traceback for each component of the chain, with the primary
Fred Drake9baee312008-12-04 15:28:51 +0000738 exception at the top. (Java users may recognize this behavior.)
Guido van Rossumfedd1402008-12-03 04:15:35 +0000739
740* :pep:`3134`: Exception objects now store their traceback as the
741 :attr:`__traceback__` attribute. This means that an exception
742 object now contains all the information pertaining to an exception,
743 and there are fewer reasons to use :func:`sys.exc_info` (though the
744 latter is not removed).
745
746* A few exception messages are improved when Windows fails to load an
747 extension module. For example, ``error code 193`` is now ``%1 is
748 not a valid Win32 application``. Strings now deal with non-English
749 locales.
Georg Brandl396ef802008-02-02 10:30:18 +0000750
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000751
Guido van Rossumfedd1402008-12-03 04:15:35 +0000752Miscellaneous Other Changes
753===========================
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000754
Guido van Rossumfedd1402008-12-03 04:15:35 +0000755Operators And Special Methods
756-----------------------------
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000757
Georg Brandl396ef802008-02-02 10:30:18 +0000758* ``!=`` now returns the opposite of ``==``, unless ``==`` returns
Guido van Rossumfedd1402008-12-03 04:15:35 +0000759 :data:`NotImplemented`.
Georg Brandl396ef802008-02-02 10:30:18 +0000760
Guido van Rossumfedd1402008-12-03 04:15:35 +0000761* The concept of "unbound methods" has been removed from the language.
Guido van Rossum715287f2008-12-02 22:34:15 +0000762 When referencing a method as a class attribute, you now get a plain
763 function object.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000764
Guido van Rossum715287f2008-12-02 22:34:15 +0000765* :meth:`__getslice__`, :meth:`__setslice__` and :meth:`__delslice__`
766 were killed. The syntax ``a[i:j]`` now translates to
767 ``a.__getitem__(slice(i, j))`` (or :meth:`__setitem__` or
768 :meth:`__delitem__`, when used as an assignment or deletion target,
769 respectively).
Georg Brandl396ef802008-02-02 10:30:18 +0000770
Guido van Rossumfedd1402008-12-03 04:15:35 +0000771* :pep:`3114`: the standard :meth:`next` method has been renamed to
Ezio Melotti7fa82222012-10-12 13:42:08 +0300772 :meth:`~iterator.__next__`.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000773
Guido van Rossumfedd1402008-12-03 04:15:35 +0000774* The :meth:`__oct__` and :meth:`__hex__` special methods are removed
775 -- :func:`oct` and :func:`hex` use :meth:`__index__` now to convert
776 the argument to an integer.
777
778* Removed support for :attr:`__members__` and :attr:`__methods__`.
779
780* The function attributes named :attr:`func_X` have been renamed to
781 use the :data:`__X__` form, freeing up these names in the function
782 attribute namespace for user-defined attributes. To wit,
783 :attr:`func_closure`, :attr:`func_code`, :attr:`func_defaults`,
784 :attr:`func_dict`, :attr:`func_doc`, :attr:`func_globals`,
785 :attr:`func_name` were renamed to :attr:`__closure__`,
786 :attr:`__code__`, :attr:`__defaults__`, :attr:`__dict__`,
787 :attr:`__doc__`, :attr:`__globals__`, :attr:`__name__`,
788 respectively.
789
790* :meth:`__nonzero__` is now :meth:`__bool__`.
791
792Builtins
793--------
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000794
Guido van Rossum715287f2008-12-02 22:34:15 +0000795* :pep:`3135`: New :func:`super`. You can now invoke :func:`super`
Guido van Rossumfedd1402008-12-03 04:15:35 +0000796 without arguments and (assuming this is in a regular instance method
797 defined inside a :keyword:`class` statement) the right class and
798 instance will automatically be chosen. With arguments, the behavior
799 of :func:`super` is unchanged.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000800
Guido van Rossumfedd1402008-12-03 04:15:35 +0000801* :pep:`3111`: :func:`raw_input` was renamed to :func:`input`. That
802 is, the new :func:`input` function reads a line from
803 :data:`sys.stdin` and returns it with the trailing newline stripped.
804 It raises :exc:`EOFError` if the input is terminated prematurely.
805 To get the old behavior of :func:`input`, use ``eval(input())``.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000806
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000807* A new built-in function :func:`next` was added to call the
Ezio Melotti7fa82222012-10-12 13:42:08 +0300808 :meth:`~iterator.__next__` method on an object.
Guido van Rossumfedd1402008-12-03 04:15:35 +0000809
Mark Dickinsonf4112e22010-06-17 18:24:52 +0000810* The :func:`round` function rounding strategy and return type have
811 changed. Exact halfway cases are now rounded to the nearest even
812 result instead of away from zero. (For example, ``round(2.5)`` now
Andrew Svetlova2fe3342012-08-11 21:14:08 +0300813 returns ``2`` rather than ``3``.) ``round(x[, n])`` now
Mark Dickinsonf4112e22010-06-17 18:24:52 +0000814 delegates to ``x.__round__([n])`` instead of always returning a
815 float. It generally returns an integer when called with a single
816 argument and a value of the same type as ``x`` when called with two
817 arguments.
818
Guido van Rossumfedd1402008-12-03 04:15:35 +0000819* Moved :func:`intern` to :func:`sys.intern`.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000820
Guido van Rossum715287f2008-12-02 22:34:15 +0000821* Removed: :func:`apply`. Instead of ``apply(f, args)`` use
822 ``f(*args)``.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000823
Guido van Rossum715287f2008-12-02 22:34:15 +0000824* Removed :func:`callable`. Instead of ``callable(f)`` you can use
Benjamin Peterson36e0d0e2009-10-03 15:13:15 +0000825 ``isinstance(f, collections.Callable)``. The :func:`operator.isCallable`
826 function is also gone.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000827
Guido van Rossum715287f2008-12-02 22:34:15 +0000828* Removed :func:`coerce`. This function no longer serves a purpose
829 now that classic classes are gone.
Guido van Rossumb197f3c2007-08-31 00:37:00 +0000830
Guido van Rossum715287f2008-12-02 22:34:15 +0000831* Removed :func:`execfile`. Instead of ``execfile(fn)`` use
832 ``exec(open(fn).read())``.
Georg Brandl396ef802008-02-02 10:30:18 +0000833
Benjamin Peterson30364202009-03-23 02:49:51 +0000834* Removed the :class:`file` type. Use :func:`open`. There are now several
835 different kinds of streams that open can return in the :mod:`io` module.
Georg Brandl396ef802008-02-02 10:30:18 +0000836
Guido van Rossum715287f2008-12-02 22:34:15 +0000837* Removed :func:`reduce`. Use :func:`functools.reduce` if you really
838 need it; however, 99 percent of the time an explicit :keyword:`for`
839 loop is more readable.
Georg Brandl396ef802008-02-02 10:30:18 +0000840
Georg Brandl48310cd2009-01-03 21:18:54 +0000841* Removed :func:`reload`. Use :func:`imp.reload`.
Guido van Rossum715287f2008-12-02 22:34:15 +0000842
843* Removed. :meth:`dict.has_key` -- use the :keyword:`in` operator
844 instead.
845
Guido van Rossumfedd1402008-12-03 04:15:35 +0000846.. ======================================================================
Guido van Rossum715287f2008-12-02 22:34:15 +0000847
Guido van Rossumfedd1402008-12-03 04:15:35 +0000848
849Build and C API Changes
850=======================
851
852Due to time constraints, here is a *very* incomplete list of changes
853to the C API.
854
855* Support for several platforms was dropped, including but not limited
856 to Mac OS 9, BeOS, RISCOS, Irix, and Tru64.
857
858* :pep:`3118`: New Buffer API.
859
860* :pep:`3121`: Extension Module Initialization & Finalization.
861
Georg Brandl60203b42010-10-06 10:11:56 +0000862* :pep:`3123`: Making :c:macro:`PyObject_HEAD` conform to standard C.
Guido van Rossumfedd1402008-12-03 04:15:35 +0000863
864* No more C API support for restricted execution.
865
Georg Brandl60203b42010-10-06 10:11:56 +0000866* :c:func:`PyNumber_Coerce`, :c:func:`PyNumber_CoerceEx`,
867 :c:func:`PyMember_Get`, and :c:func:`PyMember_Set` C APIs are removed.
Guido van Rossumfedd1402008-12-03 04:15:35 +0000868
Georg Brandl60203b42010-10-06 10:11:56 +0000869* New C API :c:func:`PyImport_ImportModuleNoBlock`, works like
870 :c:func:`PyImport_ImportModule` but won't block on the import lock
Guido van Rossumfedd1402008-12-03 04:15:35 +0000871 (returning an error instead).
Guido van Rossum715287f2008-12-02 22:34:15 +0000872
873* Renamed the boolean conversion C-level slot and method:
Guido van Rossumfedd1402008-12-03 04:15:35 +0000874 ``nb_nonzero`` is now ``nb_bool``.
Guido van Rossum715287f2008-12-02 22:34:15 +0000875
Georg Brandl60203b42010-10-06 10:11:56 +0000876* Removed :c:macro:`METH_OLDARGS` and :c:macro:`WITH_CYCLE_GC` from the C API.
Georg Brandl116aa622007-08-15 14:28:22 +0000877
Georg Brandl5a165582007-08-31 06:15:01 +0000878.. ======================================================================
Georg Brandl116aa622007-08-15 14:28:22 +0000879
880
Guido van Rossumfedd1402008-12-03 04:15:35 +0000881Performance
882===========
Georg Brandl116aa622007-08-15 14:28:22 +0000883
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000884The net result of the 3.0 generalizations is that Python 3.0 runs the
Guido van Rossum715287f2008-12-02 22:34:15 +0000885pystone benchmark around 10% slower than Python 2.5. Most likely the
886biggest cause is the removal of special-casing for small integers.
887There's room for improvement, but it will happen after 3.0 is
888released!
Georg Brandl116aa622007-08-15 14:28:22 +0000889
Georg Brandl5a165582007-08-31 06:15:01 +0000890.. ======================================================================
Georg Brandl116aa622007-08-15 14:28:22 +0000891
892
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000893Porting To Python 3.0
Georg Brandl116aa622007-08-15 14:28:22 +0000894=====================
895
Guido van Rossum56076da2008-12-02 22:58:36 +0000896For porting existing Python 2.5 or 2.6 source code to Python 3.0, the
897best strategy is the following:
Georg Brandl116aa622007-08-15 14:28:22 +0000898
Guido van Rossum56076da2008-12-02 22:58:36 +00008990. (Prerequisite:) Start with excellent test coverage.
Georg Brandl116aa622007-08-15 14:28:22 +0000900
Guido van Rossum56076da2008-12-02 22:58:36 +00009011. Port to Python 2.6. This should be no more work than the average
902 port from Python 2.x to Python 2.(x+1). Make sure all your tests
903 pass.
Christian Heimesf78b1c62007-12-02 16:52:32 +0000904
Guido van Rossum56076da2008-12-02 22:58:36 +00009052. (Still using 2.6:) Turn on the :option:`-3` command line switch.
906 This enables warnings about features that will be removed (or
907 change) in 3.0. Run your test suite again, and fix code that you
908 get warnings about until there are no warnings left, and all your
909 tests still pass.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000910
Guido van Rossum56076da2008-12-02 22:58:36 +00009113. Run the ``2to3`` source-to-source translator over your source code
912 tree. (See :ref:`2to3-reference` for more on this tool.) Run the
913 result of the translation under Python 3.0. Manually fix up any
914 remaining issues, fixing problems until all tests pass again.
915
916It is not recommended to try to write source code that runs unchanged
917under both Python 2.6 and 3.0; you'd have to use a very contorted
Georg Brandl375aec22011-01-15 17:03:02 +0000918coding style, e.g. avoiding ``print`` statements, metaclasses,
Guido van Rossum56076da2008-12-02 22:58:36 +0000919and much more. If you are maintaining a library that needs to support
920both Python 2.6 and Python 3.0, the best approach is to modify step 3
921above by editing the 2.6 version of the source code and running the
922``2to3`` translator again, rather than editing the 3.0 version of the
923source code.
924
925For porting C extensions to Python 3.0, please see :ref:`cporting-howto`.
Guido van Rossumeb3d8d42008-12-02 00:56:25 +0000926
Georg Brandl5a165582007-08-31 06:15:01 +0000927.. ======================================================================