blob: c2cf524394f1712418bd49a258bb98e90b498544 [file] [log] [blame]
Giampaolo Rodolà3108f982011-02-24 20:59:48 +00001****************************
2 What's New In Python 3.3
3****************************
4
5:Author: Raymond Hettinger
6:Release: |release|
7:Date: |today|
8
9.. $Id$
10 Rules for maintenance:
11
12 * 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.
15
16 * The maintainer will go through Misc/NEWS periodically and add
17 changes; it's therefore more important to add your changes to
18 Misc/NEWS than to this file.
19
20 * This is not a complete list of every single change; completeness
21 is the purpose of Misc/NEWS. Some changes I consider too small
22 or esoteric to include. If such a change is added to the text,
23 I'll just remove it. (This is another reason you shouldn't spend
24 too much time on writing your addition.)
25
26 * If you want to draw your new text to the attention of the
27 maintainer, add 'XXX' to the beginning of the paragraph or
28 section.
29
30 * It's OK to just add a fragmentary note about a change. For
31 example: "XXX Describe the transmogrify() function added to the
32 socket module." The maintainer will research the change and
33 write the necessary text.
34
35 * You can comment out your additions if you like, but it's not
36 necessary (especially when a final release is some months away).
37
38 * Credit the author of a patch or bugfix. Just the name is
39 sufficient; the e-mail address isn't necessary.
40
41 * It's helpful to add the bug/patch number as a comment:
42
43 % Patch 12345
44 XXX Describe the transmogrify() function added to the socket
45 module.
46 (Contributed by P.Y. Developer.)
47
48 This saves the maintainer the effort of going through the SVN log
49 when researching a change.
50
51This article explains the new features in Python 3.3, compared to 3.2.
52
53
54PEP XXX: Stub
55=============
56
57
Ezio Melotti48a2f8f2011-09-29 00:18:19 +030058PEP 393: Flexible String Representation
59=======================================
60
Ezio Melotti397546a2011-09-29 08:34:36 +030061XXX Give a short introduction about :pep:`393`.
62
63PEP 393 is fully backward compatible. The legacy API should remain
64available at least five years. Applications using the legacy API will not
65fully benefit of the memory reduction, or worse may use a little bit more
66memory, because Python may have to maintain two versions of each string (in
67the legacy format and in the new efficient storage).
68
Ezio Melotti48a2f8f2011-09-29 00:18:19 +030069XXX Add list of changes introduced by :pep:`393` here:
70
Ezio Melotti397546a2011-09-29 08:34:36 +030071* Python now always supports the full range of Unicode codepoints, including
72 non-BMP ones (i.e. from ``U+0000`` to ``U+10FFFF``). The distinction between
73 narrow and wide builds no longer exists and Python now behaves like a wide
74 build.
75
76* The storage of Unicode strings now depends on the highest codepoint in the string:
77
78 * pure ASCII and Latin1 strings (``U+0000-U+00FF``) use 1 byte per codepoint;
79
80 * BMP strings (``U+0000-U+FFFF``) use 2 bytes per codepoint;
81
82 * non-BMP strings (``U+10000-U+10FFFF``) use 4 bytes per codepoint.
83
84.. The memory usage of Python 3.3 is two to three times smaller than Python 3.2,
85 and a little bit better than Python 2.7, on a `Django benchmark
86 <http://mail.python.org/pipermail/python-dev/2011-September/113714.html>`_.
87 XXX The result should be moved in the PEP and a small summary about
88 performances and a link to the PEP should be added here.
89
90* Some of the problems visible on narrow builds have been fixed, for example:
91
92 * :func:`len` now always returns 1 for non-BMP characters,
93 so ``len('\U0010FFFF') == 1``;
94
95 * surrogate pairs are not recombined in string literals,
96 so ``'\uDBFF\uDFFF' != '\U0010FFFF'``;
97
98 * indexing or slicing a non-BMP characters doesn't return surrogates anymore,
99 so ``'\U0010FFFF'[0]`` now returns ``'\U0010FFFF'`` and not ``'\uDBFF'``;
100
101 * several other functions in the stdlib now handle correctly non-BMP codepoints.
102
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300103* The value of :data:`sys.maxunicode` is now always ``1114111`` (``0x10FFFF``
104 in hexadecimal). The :c:func:`PyUnicode_GetMax` function still returns
105 either ``0xFFFF`` or ``0x10FFFF`` for backward compatibility, and it should
106 not be used with the new Unicode API (see :issue:`13054`).
107
Ezio Melotti397546a2011-09-29 08:34:36 +0300108* The :file:`./configure` flag ``--with-wide-unicode`` has been removed.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200109
Ezio Melotti397546a2011-09-29 08:34:36 +0300110XXX mention new and deprecated functions and macros
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300111
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000112Other Language Changes
113======================
114
115Some smaller changes made to the core Python language are:
116
117* Stub
118
119
120New, Improved, and Deprecated Modules
121=====================================
122
123* Stub
124
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500125array
126-----
127
128The :mod:`array` module supports the :c:type:`long long` type using ``q`` and
129``Q`` type codes.
130
131(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`)
132
133
Victor Stinner2cded9c2011-07-08 01:45:13 +0200134codecs
135------
136
137Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200138byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
139'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200140
Georg Brandl6c0929b2011-07-09 11:43:33 +0200141(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200142
143Don't reset incremental encoders of CJK codecs at each call to their encode()
Georg Brandl6c0929b2011-07-09 11:43:33 +0200144method anymore. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +0200145
146 $ ./python -q
147 >>> import codecs
148 >>> encoder = codecs.getincrementalencoder('hz')('strict')
149 >>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
150 b'~{NpJ)l6HK!#~} Bye.'
151
Georg Brandl6c0929b2011-07-09 11:43:33 +0200152This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older Python
Victor Stinner2cded9c2011-07-08 01:45:13 +0200153versions.
154
Georg Brandl6c0929b2011-07-09 11:43:33 +0200155(:issue:`12100`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200156
Éric Araujo84b8ed82011-08-29 21:42:47 +0200157crypt
158-----
159
Victor Stinnerc78fb332011-09-21 03:35:44 +0200160Addition of salt and modular crypt format and the :func:`~crypt.mksalt`
161function to the :mod:`crypt` module.
Éric Araujo84b8ed82011-08-29 21:42:47 +0200162
163(:issue:`10924`)
164
Victor Stinnera7878b72011-07-14 23:07:44 +0200165curses
166------
167
Victor Stinnerc78fb332011-09-21 03:35:44 +0200168 * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
169 method to get a wide character
170 * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
171 push a wide character so the next :meth:`~curses.window.get_wch` will return
172 it
Victor Stinnera7878b72011-07-14 23:07:44 +0200173
Victor Stinnerc78fb332011-09-21 03:35:44 +0200174(Contributed by Iñigo Serna in :issue:`6755`)
Victor Stinnera7878b72011-07-14 23:07:44 +0200175
Victor Stinner024e37a2011-03-31 01:31:06 +0200176faulthandler
177------------
178
179New module: :mod:`faulthandler`.
180
181 * :envvar:`PYTHONFAULTHANDLER`
182 * :option:`-X` ``faulthandler``
183
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200184
Victor Stinner811db3b2011-09-21 03:20:03 +0200185ftplib
186------
187
188The :class:`~ftplib.FTP_TLS` class now provides a new
189:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
190plaintex. This can be useful to take advantage of firewalls that know how to
191handle NAT with non-secure FTP without opening fixed ports.
192
193(Contributed by Giampaolo Rodolà in :issue:`12139`)
194
195
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200196math
197----
198
199The :mod:`math` module has a new function:
200
201 * :func:`~math.log2`: return the base-2 logarithm of *x*
202 (Written by Mark Dickinson in :issue:`11888`).
203
204
205nntplib
206-------
207
208The :class:`nntplib.NNTP` class now supports the context manager protocol to
209unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
210connection when done::
211
212 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +0300213 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200214 ... n.group('gmane.comp.python.committers')
215 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +0300216 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200217 >>>
218
219(Contributed by Giampaolo Rodolà in :issue:`9795`)
220
221
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000222os
223--
224
Charles-François Natalia003af12011-06-01 20:30:52 +0200225* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
226 possible to create a pipe with :data:`~os.O_CLOEXEC` or
227 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
228 avoid race conditions in multi-threaded programs.
229
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000230* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
231 an efficent "zero-copy" way for copying data from one file (or socket)
232 descriptor to another. The phrase "zero-copy" refers to the fact that all of
233 the copying of data between the two descriptors is done entirely by the
234 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
235 can be used to efficiently copy data from a file on disk to a network socket,
236 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000237
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000238 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
239
240* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
241 :func:`~os.setpriority`. They can be used to get or set process
242 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
243 processes instead of just the current one.
244
245 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000246
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000247
Éric Araujo765e94f2011-06-03 17:26:59 +0200248packaging
249---------
250
251:mod:`distutils` has undergone additions and refactoring under a new name,
252:mod:`packaging`, to allow developers to break backward compatibility.
253:mod:`distutils` is still provided in the standard library, but users are
254encouraged to transition to :mod:`packaging`. For older versions of Python, a
255backport compatible with 2.4+ and 3.1+ will be made available on PyPI under the
256name :mod:`distutils2`.
257
258.. TODO add examples and howto to the packaging docs and link to them
259
260
Victor Stinner383c3fc2011-05-25 01:35:05 +0200261pydoc
262-----
263
Victor Stinner6daa33c2011-05-25 01:41:22 +0200264The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
265:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
266in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +0200267
268
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200269sys
270---
Victor Stinner754851f2011-04-19 23:58:51 +0200271
Éric Araujo84b8ed82011-08-29 21:42:47 +0200272* The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200273 sequence` holding informations about the thread implementation.
Victor Stinner754851f2011-04-19 23:58:51 +0200274
Georg Brandl00db5822011-04-30 15:30:03 +0200275 (:issue:`11223`)
Victor Stinnera9293352011-04-30 15:21:58 +0200276
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200277
Victor Stinnera9293352011-04-30 15:21:58 +0200278signal
279------
280
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200281* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +0200282
Victor Stinnerb3e72192011-05-08 01:46:11 +0200283 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
284 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ;
285 * :func:`~signal.pthread_kill`: send a signal to a thread ;
286 * :func:`~signal.sigpending`: examine pending functions ;
287 * :func:`~signal.sigwait`: wait a signal.
Ross Lagerwallbc808222011-06-25 12:13:40 +0200288 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
289 information about it.
290 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
291 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +0200292
Victor Stinnerd49b1f12011-05-08 02:03:15 +0200293* The signal handler writes the signal number as a single byte instead of
294 a nul byte into the wakeup file descriptor. So it is possible to wait more
295 than one signal and know which signals were raised.
296
Victor Stinner388196e2011-05-10 17:13:00 +0200297* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
298 instead of a RuntimeError: OSError has an errno attribute.
299
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000300socket
301------
302
303The :class:`~socket.socket` class now exposes addititonal methods to
304process ancillary data when supported by the underlying platform:
305
306* :func:`~socket.socket.sendmsg`
307* :func:`~socket.socket.recvmsg`
308* :func:`~socket.socket.recvmsg_into`
309
310(Contributed by David Watson in :issue:`6560`, based on an earlier patch
311by Heiko Wundram)
Victor Stinner754851f2011-04-19 23:58:51 +0200312
Victor Stinner99c8b162011-05-24 12:05:19 +0200313ssl
314---
315
316The :mod:`ssl` module has new functions:
317
318 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
319 pseudo-random bytes.
320 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
321
322
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200323shutil
324------
325
Sandro Tosiaec2f212011-08-23 00:58:21 +0200326* The :mod:`shutil` module has these new fuctions:
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200327
Sandro Tosiaec2f212011-08-23 00:58:21 +0200328 * :func:`~shutil.disk_usage`: provides total, used and free disk space
329 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`)
330 * :func:`~shutil.chown`: allows one to change user and/or group of the given
331 path also specifying the user/group names and not only their numeric
332 ids. (Contributed by Sandro Tosi in :issue:`12191`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200333
334
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000335Optimizations
336=============
337
338Major performance enhancements have been added:
339
340* Stub
341
342
343Build and C API Changes
344=======================
345
346Changes to Python's build process and to the C API include:
347
348* Stub
349
350
Georg Brandl0cd25c92011-04-29 13:45:54 +0200351Unsupported Operating Systems
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200352=============================
353
Brian Curtin49a40cd2011-05-02 22:30:06 -0500354OS/2 and VMS are no longer supported due to the lack of a maintainer.
355
356Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
357are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200358
359
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000360Porting to Python 3.3
361=====================
362
363This section lists previously described changes and other bugfixes
364that may require changes to your code:
365
Victor Stinnerff3d9392011-08-20 23:39:26 +0200366* Issue #12326: On Linux, sys.platform doesn't contain the major version
367 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
368 on the Linux version used to build Python. Replace sys.platform == 'linux2'
369 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
370 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +0100371
372.. Issue #11591: When :program:`python` was started with :option:`-S`,
373 ``import site`` will not add site-specific paths to the module search
374 paths. In previous versions, it did. See changeset for doc changes in
375 various files. Contributed by Carl Meyer with editions by Éric Araujo.
Éric Araujobe3bd572011-03-26 01:55:15 +0100376
377.. Issue #10998: -Q command-line flags are related artifacts have been
378 removed. Code checking sys.flags.division_warning will need updating.
379 Contributed by Éric Araujo.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200380
381* :pep:`393`: The :c:type:`Py_UNICODE` type and all functions using this type
382 are deprecated. To fully benefit of the memory footprint reduction provided
383 by the PEP 393, you have to convert your code to the new Unicode API. Read
384 the porting guide: XXX.
385