blob: dd2968131b3217aeaa1f66d31adc7b4e3bea9096 [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
Éric Araujob07b97f2011-10-05 01:03:34 +02009.. Rules for maintenance:
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000010
11 * Anyone can add text to this document. Do not spend very much time
12 on the wording of your changes, because your text will probably
13 get rewritten to some degree.
14
15 * The maintainer will go through Misc/NEWS periodically and add
16 changes; it's therefore more important to add your changes to
17 Misc/NEWS than to this file.
18
19 * This is not a complete list of every single change; completeness
20 is the purpose of Misc/NEWS. Some changes I consider too small
21 or esoteric to include. If such a change is added to the text,
22 I'll just remove it. (This is another reason you shouldn't spend
23 too much time on writing your addition.)
24
25 * If you want to draw your new text to the attention of the
26 maintainer, add 'XXX' to the beginning of the paragraph or
27 section.
28
29 * It's OK to just add a fragmentary note about a change. For
30 example: "XXX Describe the transmogrify() function added to the
31 socket module." The maintainer will research the change and
32 write the necessary text.
33
34 * You can comment out your additions if you like, but it's not
35 necessary (especially when a final release is some months away).
36
37 * Credit the author of a patch or bugfix. Just the name is
38 sufficient; the e-mail address isn't necessary.
39
40 * It's helpful to add the bug/patch number as a comment:
41
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000042 XXX Describe the transmogrify() function added to the socket
43 module.
Éric Araujob07b97f2011-10-05 01:03:34 +020044 (Contributed by P.Y. Developer in :issue:`12345`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000045
Éric Araujob07b97f2011-10-05 01:03:34 +020046 This saves the maintainer the effort of going through the Mercurial log
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000047 when researching a change.
48
49This article explains the new features in Python 3.3, compared to 3.2.
50
51
Antoine Pitrou037ffbf2011-10-24 00:25:41 +020052.. _pep-393:
53
Ezio Melotti48a2f8f2011-09-29 00:18:19 +030054PEP 393: Flexible String Representation
55=======================================
56
Antoine Pitroufd9b4162011-10-24 00:14:43 +020057The Unicode string type is changed to support multiple internal
58representations, depending on the character with the largest Unicode ordinal
59(1, 2, or 4 bytes) in the represented string. This allows a space-efficient
60representation in common cases, but gives access to full UCS-4 on all
61systems. For compatibility with existing APIs, several representations may
62exist in parallel; over time, this compatibility should be phased out.
Ezio Melotti397546a2011-09-29 08:34:36 +030063
Antoine Pitroufd9b4162011-10-24 00:14:43 +020064On the Python side, there should be no downside to this change.
Ezio Melotti397546a2011-09-29 08:34:36 +030065
Antoine Pitroufd9b4162011-10-24 00:14:43 +020066On the C API side, PEP 393 is fully backward compatible. The legacy API
67should remain available at least five years. Applications using the legacy
68API will not fully benefit of the memory reduction, or - worse - may use
69a bit more memory, because Python may have to maintain two versions of each
70string (in the legacy format and in the new efficient storage).
71
Antoine Pitrou0599b5b2011-11-29 22:45:07 +010072Functionality
73-------------
74
Antoine Pitroufd9b4162011-10-24 00:14:43 +020075Changes introduced by :pep:`393` are the following:
Ezio Melotti48a2f8f2011-09-29 00:18:19 +030076
Ezio Melotti397546a2011-09-29 08:34:36 +030077* Python now always supports the full range of Unicode codepoints, including
78 non-BMP ones (i.e. from ``U+0000`` to ``U+10FFFF``). The distinction between
79 narrow and wide builds no longer exists and Python now behaves like a wide
Antoine Pitroufd9b4162011-10-24 00:14:43 +020080 build, even under Windows.
Ezio Melotti397546a2011-09-29 08:34:36 +030081
Antoine Pitroufd9b4162011-10-24 00:14:43 +020082* With the death of narrow builds, the problems specific to narrow builds have
83 also been fixed, for example:
Ezio Melotti397546a2011-09-29 08:34:36 +030084
85 * :func:`len` now always returns 1 for non-BMP characters,
86 so ``len('\U0010FFFF') == 1``;
87
88 * surrogate pairs are not recombined in string literals,
89 so ``'\uDBFF\uDFFF' != '\U0010FFFF'``;
90
Antoine Pitroufd9b4162011-10-24 00:14:43 +020091 * indexing or slicing non-BMP characters returns the expected value,
Ezio Melotti397546a2011-09-29 08:34:36 +030092 so ``'\U0010FFFF'[0]`` now returns ``'\U0010FFFF'`` and not ``'\uDBFF'``;
93
Antoine Pitroud136aec2011-11-17 01:48:06 +010094 * all other functions in the standard library now correctly handle
Antoine Pitroufd9b4162011-10-24 00:14:43 +020095 non-BMP codepoints.
Ezio Melotti397546a2011-09-29 08:34:36 +030096
Ezio Melotti48a2f8f2011-09-29 00:18:19 +030097* The value of :data:`sys.maxunicode` is now always ``1114111`` (``0x10FFFF``
98 in hexadecimal). The :c:func:`PyUnicode_GetMax` function still returns
99 either ``0xFFFF`` or ``0x10FFFF`` for backward compatibility, and it should
100 not be used with the new Unicode API (see :issue:`13054`).
101
Ezio Melotti397546a2011-09-29 08:34:36 +0300102* The :file:`./configure` flag ``--with-wide-unicode`` has been removed.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200103
Antoine Pitrou0599b5b2011-11-29 22:45:07 +0100104Performance and resource usage
105------------------------------
106
107The storage of Unicode strings now depends on the highest codepoint in the string:
108
109* pure ASCII and Latin1 strings (``U+0000-U+00FF``) use 1 byte per codepoint;
110
111* BMP strings (``U+0000-U+FFFF``) use 2 bytes per codepoint;
112
113* non-BMP strings (``U+10000-U+10FFFF``) use 4 bytes per codepoint.
114
115The net effect is that for most applications, memory usage of string storage
116should decrease significantly - especially compared to former wide unicode
117builds - as, in many cases, strings will be pure ASCII even in international
118contexts (because many strings store non-human language data, such as XML
119fragments, HTTP headers, JSON-encoded data, etc.). We also hope that it
120will, for the same reasons, increase CPU cache efficiency on non-trivial
121applications.
122
123.. The memory usage of Python 3.3 is two to three times smaller than Python 3.2,
124 and a little bit better than Python 2.7, on a `Django benchmark
125 <http://mail.python.org/pipermail/python-dev/2011-September/113714.html>`_.
126 XXX The result should be moved in the PEP and a link to the PEP should
127 be added here.
128
Éric Araujob07b97f2011-10-05 01:03:34 +0200129
Victor Stinnera1bf2982011-10-12 20:35:02 +0200130PEP 3151: Reworking the OS and IO exception hierarchy
131=====================================================
132
133:pep:`3151` - Reworking the OS and IO exception hierarchy
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200134 PEP written and implemented by Antoine Pitrou.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200135
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200136The hierarchy of exceptions raised by operating system errors is now both
137simplified and finer-grained.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200138
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200139You don't have to worry anymore about choosing the appropriate exception
140type between :exc:`OSError`, :exc:`IOError`, :exc:`EnvironmentError`,
141:exc:`WindowsError`, :exc:`mmap.error`, :exc:`socket.error` or
142:exc:`select.error`. All these exception types are now only one:
143:exc:`OSError`. The other names are kept as aliases for compatibility
144reasons.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200145
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200146Also, it is now easier to catch a specific error condition. Instead of
147inspecting the ``errno`` attribute (or ``args[0]``) for a particular
148constant from the :mod:`errno` module, you can catch the adequate
149:exc:`OSError` subclass. The available subclasses are the following:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200150
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200151* :exc:`BlockingIOError`
152* :exc:`ChildProcessError`
153* :exc:`ConnectionError`
154* :exc:`FileExistsError`
155* :exc:`FileNotFoundError`
156* :exc:`InterruptedError`
157* :exc:`IsADirectoryError`
158* :exc:`NotADirectoryError`
159* :exc:`PermissionError`
160* :exc:`ProcessLookupError`
161* :exc:`TimeoutError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200162
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200163And the :exc:`ConnectionError` itself has finer-grained subclasses:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200164
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200165* :exc:`BrokenPipeError`
166* :exc:`ConnectionAbortedError`
167* :exc:`ConnectionRefusedError`
168* :exc:`ConnectionResetError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200169
170Thanks to the new exceptions, common usages of the :mod:`errno` can now be
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200171avoided. For example, the following code written for Python 3.2::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200172
173 from errno import ENOENT, EACCES, EPERM
174
175 try:
176 with open("document.txt") as f:
177 content = f.read()
178 except IOError as err:
179 if err.errno == ENOENT:
180 print("document.txt file is missing")
181 elif err.errno in (EACCES, EPERM):
182 print("You are not allowed to read document.txt")
183 else:
184 raise
185
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200186can now be written without the :mod:`errno` import and without manual
187inspection of exception attributes::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200188
189 try:
190 with open("document.txt") as f:
191 content = f.read()
192 except FileNotFoundError:
193 print("document.txt file is missing")
194 except PermissionError:
195 print("You are not allowed to read document.txt")
196
197
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000198PEP 380: Syntax for Delegating to a Subgenerator
199================================================
200
201PEP 380 adds the ``yield from`` expression, allowing a generator to delegate
202part of its operations to another generator. This allows a section of code
203containing 'yield' to be factored out and placed in another generator.
204Additionally, the subgenerator is allowed to return with a value, and the
205value is made available to the delegating generator.
206While designed primarily for use in delegating to a subgenerator, the ``yield
207from`` expression actually allows delegation to arbitrary subiterators.
208
209(Implementation by Greg Ewing, integrated into 3.3 by Renaud Blanch, Ryan
210Kelly and Nick Coghlan, documentation by Zbigniew Jędrzejewski-Szmek and
211Nick Coghlan)
212
213
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100214PEP 3155: Qualified name for classes and functions
215==================================================
216
217:pep:`3155` - Qualified name for classes and functions
218 PEP written and implemented by Antoine Pitrou.
219
220Functions and class objects have a new ``__qualname__`` attribute representing
221the "path" from the module top-level to their definition. For global functions
222and classes, this is the same as ``__name__``. For other functions and classes,
223it provides better information about where they were actually defined, and
224how they might be accessible from the global scope.
225
226Example with (non-bound) methods::
Nick Coghlan2dfe6b02012-01-14 14:19:49 +1000227
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100228 >>> class C:
229 ... def meth(self):
230 ... pass
231 >>> C.meth.__name__
232 'meth'
233 >>> C.meth.__qualname__
234 'C.meth'
235
236Example with nested classes::
237
238 >>> class C:
239 ... class D:
240 ... def meth(self):
241 ... pass
242 ...
243 >>> C.D.__name__
244 'D'
245 >>> C.D.__qualname__
246 'C.D'
247 >>> C.D.meth.__name__
248 'meth'
249 >>> C.D.meth.__qualname__
250 'C.D.meth'
251
252Example with nested functions::
253
254 >>> def outer():
255 ... def inner():
256 ... pass
257 ... return inner
258 ...
259 >>> outer().__name__
260 'inner'
261 >>> outer().__qualname__
262 'outer.<locals>.inner'
263
Antoine Pitroue7ede062011-11-25 19:11:26 +0100264The string representation of those objects is also changed to include the
Antoine Pitrou6bbd76b2011-11-25 19:10:05 +0100265new, more precise information::
266
267 >>> str(C.D)
268 "<class '__main__.C.D'>"
269 >>> str(C.D.meth)
270 '<function C.D.meth at 0x7f46b9fe31e0>'
271
272
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000273Other Language Changes
274======================
275
276Some smaller changes made to the core Python language are:
277
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100278* Added support for Unicode name aliases and named sequences.
279 Both :func:`unicodedata.lookup()` and ``'\N{...}'`` now resolve name aliases,
280 and :func:`unicodedata.lookup()` resolves named sequences too.
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000281
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100282 (Contributed by Ezio Melotti in :issue:`12753`)
Ezio Melotti931b8aa2011-10-21 21:57:36 +0300283
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100284* Equality comparisons on :func:`range` objects now return a result reflecting
285 the equality of the underlying sequences generated by those range objects.
Ezio Melotti931b8aa2011-10-21 21:57:36 +0300286
Sandro Tosicd899122012-01-22 12:16:04 +0100287 (:issue:`13201`)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000288
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100289* The ``count()``, ``find()``, ``rfind()``, ``index()`` and ``rindex()``
290 methods of :class:`bytes` and :class:`bytearray` objects now accept an
291 integer between 0 and 255 as their first argument.
Mark Dickinson36645682011-10-23 19:53:01 +0100292
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100293 (:issue:`12170`)
Mark Dickinson36645682011-10-23 19:53:01 +0100294
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100295* Memoryview objects are now hashable when the underlying object is hashable.
Mark Dickinson36645682011-10-23 19:53:01 +0100296
Antoine Pitrou7b578b32011-11-29 22:47:11 +0100297 (Contributed by Antoine Pitrou in :issue:`13411`)
Petri Lehtinen61ea8a02011-11-24 22:00:46 +0200298
299
Victor Stinner46606ce2011-11-20 18:27:55 +0100300New and Improved Modules
301========================
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000302
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100303abc
304---
305
306Improved support for abstract base classes containing descriptors composed with
307abstract methods. The recommended approach to declaring abstract descriptors is
308now to provide :attr:`__isabstractmethod__` as a dynamically updated
309property. The built-in descriptors have been updated accordingly.
310
311 * :class:`abc.abstractproperty` has been deprecated, use :class:`property`
312 with :func:`abc.abstractmethod` instead.
313 * :class:`abc.abstractclassmethod` has been deprecated, use
314 :class:`classmethod` with :func:`abc.abstractmethod` instead.
315 * :class:`abc.abstractstaticmethod` has been deprecated, use
316 :class:`staticmethod` with :func:`abc.abstractmethod` instead.
317
318(Contributed by Darren Dale in :issue:`11610`)
319
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500320array
321-----
322
323The :mod:`array` module supports the :c:type:`long long` type using ``q`` and
324``Q`` type codes.
325
326(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`)
327
328
Nadeem Vawdad7e5c6e2012-02-12 01:34:18 +0200329bz2
330---
331
332The :mod:`bz2` module has been rewritten from scratch. In the process, several
333new features have been added:
334
335* :class:`bz2.BZ2File` can now read from and write to arbitrary file-like
336 objects, by means of its constructor's *fileobj* argument.
337
338 (Contributed by Nadeem Vawda in :issue:`5863`)
339
340* :class:`bz2.BZ2File` and :func:`bz2.decompress` can now decompress
341 multi-stream inputs (such as those produced by the :program:`pbzip2` tool).
342 :class:`bz2.BZ2File` can now also be used to create this type of file, using
343 the ``'a'`` (append) mode.
344
345 (Contributed by Nir Aides in :issue:`1625`)
346
347* :class:`bz2.BZ2File` now implements all of the :class:`io.BufferedIOBase` API,
348 except for the :meth:`detach` and :meth:`truncate` methods.
349
350
Victor Stinner2cded9c2011-07-08 01:45:13 +0200351codecs
352------
353
Antoine Pitrou4f863432012-02-12 02:12:47 +0100354The :mod:`~encodings.mbcs` codec has been rewritten to handle correctly
Georg Brandlff962c52012-02-04 08:55:56 +0100355``replace`` and ``ignore`` error handlers on all Windows versions. The
356:mod:`~encodings.mbcs` codec now supports all error handlers, instead of only
357``replace`` to encode and ``ignore`` to decode.
Victor Stinner3a50e702011-10-18 21:21:00 +0200358
Georg Brandlff962c52012-02-04 08:55:56 +0100359A new Windows-only codec has been added: ``cp65001`` (:issue:`13216`). It is the
360Windows code page 65001 (Windows UTF-8, ``CP_UTF8``). For example, it is used
361by ``sys.stdout`` if the console output code page is set to cp65001 (e.g., using
362``chcp 65001`` command).
Victor Stinner2f3ca9f2011-10-27 01:38:56 +0200363
Georg Brandlff962c52012-02-04 08:55:56 +0100364Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200365byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
366'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200367
Georg Brandl6c0929b2011-07-09 11:43:33 +0200368(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200369
Georg Brandlff962c52012-02-04 08:55:56 +0100370Incremental CJK codec encoders are no longer reset at each call to their
371encode() methods. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +0200372
373 $ ./python -q
374 >>> import codecs
375 >>> encoder = codecs.getincrementalencoder('hz')('strict')
376 >>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
377 b'~{NpJ)l6HK!#~} Bye.'
378
Georg Brandl6c0929b2011-07-09 11:43:33 +0200379This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older Python
Victor Stinner2cded9c2011-07-08 01:45:13 +0200380versions.
381
Georg Brandl6c0929b2011-07-09 11:43:33 +0200382(:issue:`12100`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200383
Victor Stinner9f4b1e92011-11-10 20:56:30 +0100384The ``unicode_internal`` codec has been deprecated.
385
Éric Araujo84b8ed82011-08-29 21:42:47 +0200386crypt
387-----
388
Victor Stinnerc78fb332011-09-21 03:35:44 +0200389Addition of salt and modular crypt format and the :func:`~crypt.mksalt`
390function to the :mod:`crypt` module.
Éric Araujo84b8ed82011-08-29 21:42:47 +0200391
392(:issue:`10924`)
393
Victor Stinnera7878b72011-07-14 23:07:44 +0200394curses
395------
396
Victor Stinner0fdfceb2011-11-25 22:10:02 +0100397 * If the :mod:`curses` module is linked to the ncursesw library, use Unicode
398 functions when Unicode strings or characters are passed (e.g.
399 :c:func:`waddwstr`), and bytes functions otherwise (e.g. :c:func:`waddstr`).
400 * Use the locale encoding instead of ``utf-8`` to encode Unicode strings.
401 * :class:`curses.window` has a new :attr:`curses.window.encoding` attribute.
Victor Stinnerc78fb332011-09-21 03:35:44 +0200402 * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
403 method to get a wide character
404 * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
405 push a wide character so the next :meth:`~curses.window.get_wch` will return
406 it
Victor Stinnera7878b72011-07-14 23:07:44 +0200407
Victor Stinnerc78fb332011-09-21 03:35:44 +0200408(Contributed by Iñigo Serna in :issue:`6755`)
Victor Stinnera7878b72011-07-14 23:07:44 +0200409
Victor Stinner024e37a2011-03-31 01:31:06 +0200410faulthandler
411------------
412
413New module: :mod:`faulthandler`.
414
415 * :envvar:`PYTHONFAULTHANDLER`
416 * :option:`-X` ``faulthandler``
417
Victor Stinner811db3b2011-09-21 03:20:03 +0200418ftplib
419------
420
421The :class:`~ftplib.FTP_TLS` class now provides a new
422:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
Florent Xicluna6d57d212011-10-23 22:23:57 +0200423plaintext. This can be useful to take advantage of firewalls that know how to
Victor Stinner811db3b2011-09-21 03:20:03 +0200424handle NAT with non-secure FTP without opening fixed ports.
425
426(Contributed by Giampaolo Rodolà in :issue:`12139`)
427
428
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +0100429imaplib
430-------
431
432The :class:`~imaplib.IMAP4_SSL` constructor now accepts an SSLContext
433parameter to control parameters of the secure channel.
434
435(Contributed by Sijin Joseph in :issue:`8808`)
436
437
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100438io
439--
440
Charles-François Natalid612de12012-01-14 11:51:00 +0100441The :func:`~io.open` function has a new ``'x'`` mode that can be used to
442exclusively create a new file, and raise a :exc:`FileExistsError` if the file
443already exists. It is based on the C11 'x' mode to fopen().
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100444
445(Contributed by David Townshend in :issue:`12760`)
446
447
Nadeem Vawda34599222011-12-09 01:32:46 +0200448lzma
449----
450
451The newly-added :mod:`lzma` module provides data compression and decompression
452using the LZMA algorithm, including support for the ``.xz`` and ``.lzma``
453file formats.
454
455(Contributed by Nadeem Vawda and Per Øyvind Karlsen in :issue:`6715`)
456
457
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200458math
459----
460
461The :mod:`math` module has a new function:
462
463 * :func:`~math.log2`: return the base-2 logarithm of *x*
464 (Written by Mark Dickinson in :issue:`11888`).
465
466
467nntplib
468-------
469
470The :class:`nntplib.NNTP` class now supports the context manager protocol to
471unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
472connection when done::
473
474 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +0300475 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200476 ... n.group('gmane.comp.python.committers')
477 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +0300478 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200479 >>>
480
481(Contributed by Giampaolo Rodolà in :issue:`9795`)
482
483
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000484os
485--
486
Charles-François Natalia003af12011-06-01 20:30:52 +0200487* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
488 possible to create a pipe with :data:`~os.O_CLOEXEC` or
489 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
490 avoid race conditions in multi-threaded programs.
491
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000492* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
493 an efficent "zero-copy" way for copying data from one file (or socket)
494 descriptor to another. The phrase "zero-copy" refers to the fact that all of
495 the copying of data between the two descriptors is done entirely by the
496 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
497 can be used to efficiently copy data from a file on disk to a network socket,
498 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000499
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000500 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
501
502* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
503 :func:`~os.setpriority`. They can be used to get or set process
504 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
505 processes instead of just the current one.
506
507 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000508
Charles-François Natali7372b062012-02-05 15:15:38 +0100509* The :mod:`os` module has a new :func:`~os.fwalk` function similar to
510 :func:`~os.walk` except that it also yields file descriptors referring to the
511 directories visited. This is especially useful to avoid symlink races.
512
Victor Stinnere5064372011-10-14 00:08:29 +0200513* "at" functions (:issue:`4761`):
514
515 * :func:`~os.faccessat`
516 * :func:`~os.fchmodat`
517 * :func:`~os.fchownat`
518 * :func:`~os.fstatat`
519 * :func:`~os.futimesat`
Victor Stinnere5064372011-10-14 00:08:29 +0200520 * :func:`~os.linkat`
521 * :func:`~os.mkdirat`
522 * :func:`~os.mkfifoat`
523 * :func:`~os.mknodat`
524 * :func:`~os.openat`
525 * :func:`~os.readlinkat`
526 * :func:`~os.renameat`
527 * :func:`~os.symlinkat`
528 * :func:`~os.unlinkat`
529 * :func:`~os.utimensat`
Victor Stinnere5064372011-10-14 00:08:29 +0200530
531* extended attributes (:issue:`12720`):
532
533 * :func:`~os.fgetxattr`
534 * :func:`~os.flistxattr`
535 * :func:`~os.fremovexattr`
536 * :func:`~os.fsetxattr`
537 * :func:`~os.getxattr`
538 * :func:`~os.lgetxattr`
539 * :func:`~os.listxattr`
540 * :func:`~os.llistxattr`
541 * :func:`~os.lremovexattr`
542 * :func:`~os.lsetxattr`
543 * :func:`~os.removexattr`
544 * :func:`~os.setxattr`
545
546* Scheduler functions (:issue:`12655`):
547
548 * :func:`~os.sched_get_priority_max`
549 * :func:`~os.sched_get_priority_min`
550 * :func:`~os.sched_getaffinity`
551 * :func:`~os.sched_getparam`
552 * :func:`~os.sched_getscheduler`
553 * :func:`~os.sched_rr_get_interval`
554 * :func:`~os.sched_setaffinity`
555 * :func:`~os.sched_setparam`
556 * :func:`~os.sched_setscheduler`
557 * :func:`~os.sched_yield`
558
559* Add some extra posix functions to the os module (:issue:`10812`):
560
561 * :func:`~os.fexecve`
562 * :func:`~os.futimens`
Victor Stinnere5064372011-10-14 00:08:29 +0200563 * :func:`~os.futimes`
564 * :func:`~os.lockf`
565 * :func:`~os.lutimes`
Victor Stinnere5064372011-10-14 00:08:29 +0200566 * :func:`~os.posix_fadvise`
567 * :func:`~os.posix_fallocate`
568 * :func:`~os.pread`
569 * :func:`~os.pwrite`
570 * :func:`~os.readv`
571 * :func:`~os.sync`
572 * :func:`~os.truncate`
573 * :func:`~os.waitid`
574 * :func:`~os.writev`
575
576* Other new functions:
577
Charles-François Natali77940902012-02-06 19:54:48 +0100578 * :func:`~os.flistdir` (:issue:`10755`)
Victor Stinnere5064372011-10-14 00:08:29 +0200579 * :func:`~os.getgrouplist` (:issue:`9344`)
580
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000581
Éric Araujo765e94f2011-06-03 17:26:59 +0200582packaging
583---------
584
585:mod:`distutils` has undergone additions and refactoring under a new name,
586:mod:`packaging`, to allow developers to break backward compatibility.
587:mod:`distutils` is still provided in the standard library, but users are
588encouraged to transition to :mod:`packaging`. For older versions of Python, a
589backport compatible with 2.4+ and 3.1+ will be made available on PyPI under the
590name :mod:`distutils2`.
591
592.. TODO add examples and howto to the packaging docs and link to them
593
594
Victor Stinner383c3fc2011-05-25 01:35:05 +0200595pydoc
596-----
597
Victor Stinner6daa33c2011-05-25 01:41:22 +0200598The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
599:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
600in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +0200601
602
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100603sched
604-----
Victor Stinner754851f2011-04-19 23:58:51 +0200605
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100606* :meth:`~sched.scheduler.run` now accepts a *blocking* parameter which when
607 set to False makes the method execute the scheduled events due to expire
608 soonest (if any) and then return immediately.
609 This is useful in case you want to use the :class:`~sched.scheduler` in
610 non-blocking applications. (Contributed by Giampaolo Rodolà in :issue:`13449`)
Victor Stinner754851f2011-04-19 23:58:51 +0200611
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100612* :class:`~sched.scheduler` class can now be safely used in multi-threaded
613 environments. (Contributed by Josiah Carlson and Giampaolo Rodolà in
614 :issue:`8684`)
615
616* *timefunc* and *delayfunct* parameters of :class:`~sched.scheduler` class
617 constructor are now optional and defaults to :func:`time.time` and
618 :func:`time.sleep` respectively. (Contributed by Chris Clark in
619 :issue:`13245`)
620
621* :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
622 *argument* parameter is now optional. (Contributed by Chris Clark in
623 :issue:`13245`)
624
625* :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
626 now accept a *kwargs* parameter. (Contributed by Chris Clark in
627 :issue:`13245`)
628
629
630shutil
631------
632
633* The :mod:`shutil` module has these new fuctions:
634
635 * :func:`~shutil.disk_usage`: provides total, used and free disk space
636 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`)
637 * :func:`~shutil.chown`: allows one to change user and/or group of the given
638 path also specifying the user/group names and not only their numeric
639 ids. (Contributed by Sandro Tosi in :issue:`12191`)
Victor Stinnera9293352011-04-30 15:21:58 +0200640
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200641
Victor Stinnera9293352011-04-30 15:21:58 +0200642signal
643------
644
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200645* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +0200646
Victor Stinnerb3e72192011-05-08 01:46:11 +0200647 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
648 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ;
649 * :func:`~signal.pthread_kill`: send a signal to a thread ;
650 * :func:`~signal.sigpending`: examine pending functions ;
651 * :func:`~signal.sigwait`: wait a signal.
Ross Lagerwallbc808222011-06-25 12:13:40 +0200652 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
653 information about it.
654 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
655 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +0200656
Victor Stinnerd49b1f12011-05-08 02:03:15 +0200657* The signal handler writes the signal number as a single byte instead of
658 a nul byte into the wakeup file descriptor. So it is possible to wait more
659 than one signal and know which signals were raised.
660
Victor Stinner388196e2011-05-10 17:13:00 +0200661* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
662 instead of a RuntimeError: OSError has an errno attribute.
663
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100664smtplib
665-------
666
667The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls`
668method now accept an SSLContext parameter to control parameters of the secure
669channel.
670
671(Contributed by Kasun Herath in :issue:`8809`)
672
673
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000674socket
675------
676
Charles-François Natali47413c12011-10-06 19:47:44 +0200677* The :class:`~socket.socket` class now exposes additional methods to process
678 ancillary data when supported by the underlying platform:
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000679
Charles-François Natali47413c12011-10-06 19:47:44 +0200680 * :func:`~socket.socket.sendmsg`
681 * :func:`~socket.socket.recvmsg`
682 * :func:`~socket.socket.recvmsg_into`
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000683
Charles-François Natali47413c12011-10-06 19:47:44 +0200684 (Contributed by David Watson in :issue:`6560`, based on an earlier patch by
685 Heiko Wundram)
686
687* The :class:`~socket.socket` class now supports the PF_CAN protocol family
688 (http://en.wikipedia.org/wiki/Socketcan), on Linux
689 (http://lwn.net/Articles/253425).
690
691 (Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:`10141`)
692
Charles-François Natali10b8cf42011-11-10 19:21:37 +0100693* The :class:`~socket.socket` class now supports the PF_RDS protocol family
694 (http://en.wikipedia.org/wiki/Reliable_Datagram_Sockets and
695 http://oss.oracle.com/projects/rds/).
Victor Stinner754851f2011-04-19 23:58:51 +0200696
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100697
Victor Stinner99c8b162011-05-24 12:05:19 +0200698ssl
699---
700
Antoine Pitrou2c0a9672011-11-17 02:09:13 +0100701* The :mod:`ssl` module has two new random generation functions:
Victor Stinner99c8b162011-05-24 12:05:19 +0200702
703 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
704 pseudo-random bytes.
705 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
706
Antoine Pitrou2c0a9672011-11-17 02:09:13 +0100707 (Contributed by Victor Stinner in :issue:`12049`)
708
709* The :mod:`ssl` module now exposes a finer-grained exception hierarchy
710 in order to make it easier to inspect the various kinds of errors.
711
712 (Contributed by Antoine Pitrou in :issue:`11183`)
713
714* :meth:`~ssl.SSLContext.load_cert_chain` now accepts a *password* argument
715 to be used if the private key is encrypted.
716
717 (Contributed by Adam Simpkins in :issue:`12803`)
718
Antoine Pitrou73fc8142011-12-23 20:58:36 +0100719* Diffie-Hellman key exchange, both regular and Elliptic Curve-based, is
720 now supported through the :meth:`~ssl.SSLContext.load_dh_params` and
721 :meth:`~ssl.SSLContext.set_ecdh_curve` methods.
722
723 (Contributed by Antoine Pitrou in :issue:`13626` and :issue:`13627`)
724
Antoine Pitrou2c0a9672011-11-17 02:09:13 +0100725* SSL sockets have a new :meth:`~ssl.SSLSocket.get_channel_binding` method
726 allowing the implementation of certain authentication mechanisms such as
727 SCRAM-SHA-1-PLUS.
728
729 (Contributed by Jacek Konieczny in :issue:`12551`)
730
Antoine Pitrou73fc8142011-12-23 20:58:36 +0100731* You can query the SSL compression algorithm used by an SSL socket, thanks
732 to its new :meth:`~ssl.SSLSocket.compression` method.
733
734 (Contributed by Antoine Pitrou in :issue:`13634`)
735
736
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100737sys
738---
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200739
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100740* The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
741 sequence` holding informations about the thread implementation.
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200742
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100743 (:issue:`11223`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200744
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +0100745
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100746time
747----
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +0100748
Victor Stinnerf4c54ff2012-02-08 01:48:34 +0100749The :mod:`time` module has new functions:
750
751* :func:`~time.clock_getres` and :func:`~time.clock_gettime` functions and
752 ``CLOCK_xxx`` constants.
753* :func:`~time.monotonic`: monotonic clock.
754* :func:`~time.wallclock`.
755
756(Contributed by Victor Stinner in :issue:`10278`)
757
Antoine Pitrou5a8bc6f2011-11-17 02:20:48 +0100758
Senthil Kumarande49d642011-10-16 23:54:44 +0800759urllib
760------
761
762The :class:`~urllib.request.Request` class, now accepts a *method* argument
763used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
Senthil Kumarana41c9422011-10-20 02:37:08 +0800764should be used. For example, this will send a ``'HEAD'`` request::
Senthil Kumarande49d642011-10-16 23:54:44 +0800765
766 >>> urlopen(Request('http://www.python.org', method='HEAD'))
767
768(:issue:`1673007`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200769
Giampaolo Rodola'be55d992011-11-22 13:33:34 +0100770
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000771Optimizations
772=============
773
774Major performance enhancements have been added:
775
Victor Stinner46606ce2011-11-20 18:27:55 +0100776* Thanks to the :pep:`393`, some operations on Unicode strings has been optimized:
777
778 * the memory footprint is divided by 2 to 4 depending on the text
Victor Stinnera996f1e2011-11-21 13:14:43 +0100779 * encode an ASCII string to UTF-8 doesn't need to encode characters anymore,
780 the UTF-8 representation is shared with the ASCII representation
Victor Stinner6099a032011-12-18 14:22:26 +0100781 * the UTF-8 encoder has been optimized
782 * repeating a single ASCII letter and getting a substring of a ASCII strings
783 is 4 times faster
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000784
785
786Build and C API Changes
787=======================
788
789Changes to Python's build process and to the C API include:
790
Victor Stinner46606ce2011-11-20 18:27:55 +0100791* The :pep:`393` added new Unicode types, macros and functions:
792
Victor Stinnera996f1e2011-11-21 13:14:43 +0100793 * High-level API:
794
795 * :c:func:`PyUnicode_CopyCharacters`
796 * :c:func:`PyUnicode_FindChar`
797 * :c:func:`PyUnicode_GetLength`, :c:macro:`PyUnicode_GET_LENGTH`
798 * :c:func:`PyUnicode_New`
799 * :c:func:`PyUnicode_Substring`
800 * :c:func:`PyUnicode_ReadChar`, :c:func:`PyUnicode_WriteChar`
801
802 * Low-level API:
803
804 * :c:type:`Py_UCS1`, :c:type:`Py_UCS2`, :c:type:`Py_UCS4` types
805 * :c:type:`PyASCIIObject` and :c:type:`PyCompactUnicodeObject` structures
806 * :c:macro:`PyUnicode_READY`
807 * :c:func:`PyUnicode_FromKindAndData`
808 * :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsUCS4Copy`
809 * :c:macro:`PyUnicode_DATA`, :c:macro:`PyUnicode_1BYTE_DATA`,
810 :c:macro:`PyUnicode_2BYTE_DATA`, :c:macro:`PyUnicode_4BYTE_DATA`
811 * :c:macro:`PyUnicode_KIND` with :c:type:`PyUnicode_Kind` enum:
812 :c:data:`PyUnicode_WCHAR_KIND`, :c:data:`PyUnicode_1BYTE_KIND`,
813 :c:data:`PyUnicode_2BYTE_KIND`, :c:data:`PyUnicode_4BYTE_KIND`
814 * :c:macro:`PyUnicode_READ`, :c:macro:`PyUnicode_READ_CHAR`, :c:macro:`PyUnicode_WRITE`
815 * :c:macro:`PyUnicode_MAX_CHAR_VALUE`
816
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000817
818
Victor Stinnerd1be8782011-12-09 00:10:41 +0100819Deprecated
820==========
821
Georg Brandl0cd25c92011-04-29 13:45:54 +0200822Unsupported Operating Systems
Victor Stinnerd1be8782011-12-09 00:10:41 +0100823-----------------------------
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200824
Brian Curtin49a40cd2011-05-02 22:30:06 -0500825OS/2 and VMS are no longer supported due to the lack of a maintainer.
826
827Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
828are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200829
830
Victor Stinner46606ce2011-11-20 18:27:55 +0100831Deprecated Python modules, functions and methods
Victor Stinnerd1be8782011-12-09 00:10:41 +0100832------------------------------------------------
Victor Stinner19bd0692011-11-16 00:18:57 +0100833
834* The :mod:`packaging` module replaces the :mod:`distutils` module
835* The ``unicode_internal`` codec has been deprecated because of the
Sandro Tosicd899122012-01-22 12:16:04 +0100836 :pep:`393`, use UTF-8, UTF-16 (``utf-16-le`` or ``utf-16-be``), or UTF-32
837 (``utf-32-le`` or ``utf-32-be``)
Victor Stinner19bd0692011-11-16 00:18:57 +0100838* :meth:`ftplib.FTP.nlst` and :meth:`ftplib.FTP.dir`: use
Victor Stinner46606ce2011-11-20 18:27:55 +0100839 :meth:`ftplib.FTP.mlsd`
Victor Stinner19bd0692011-11-16 00:18:57 +0100840* :func:`platform.popen`: use the :mod:`subprocess` module. Check especially
841 the :ref:`subprocess-replacements` section.
842* :issue:`13374`: The Windows bytes API has been deprecated in the :mod:`os`
Victor Stinner46606ce2011-11-20 18:27:55 +0100843 module. Use Unicode filenames, instead of bytes filenames, to not depend on
Victor Stinner19bd0692011-11-16 00:18:57 +0100844 the ANSI code page anymore and to support any filename.
845
846
Victor Stinner46606ce2011-11-20 18:27:55 +0100847Deprecated functions and types of the C API
Victor Stinnerd1be8782011-12-09 00:10:41 +0100848-------------------------------------------
Victor Stinner46606ce2011-11-20 18:27:55 +0100849
850The :c:type:`Py_UNICODE` has been deprecated by the :pep:`393` and will be
851removed in Python 4. All functions using this type are deprecated:
852
Victor Stinner46606ce2011-11-20 18:27:55 +0100853Unicode functions and methods using :c:type:`Py_UNICODE` and
854:c:type:`Py_UNICODE*` types:
855
856 * :c:macro:`PyUnicode_FromUnicode`: use :c:func:`PyUnicode_FromWideChar` or
857 :c:func:`PyUnicode_FromKindAndData`
858 * :c:macro:`PyUnicode_AS_UNICODE`, :c:func:`PyUnicode_AsUnicode`,
859 :c:func:`PyUnicode_AsUnicodeAndSize`: use :c:func:`PyUnicode_AsWideCharString`
860 * :c:macro:`PyUnicode_AS_DATA`: use :c:macro:`PyUnicode_DATA` with
861 :c:macro:`PyUnicode_READ` and :c:macro:`PyUnicode_WRITE`
862 * :c:macro:`PyUnicode_GET_SIZE`, :c:func:`PyUnicode_GetSize`: use
863 :c:macro:`PyUnicode_GET_LENGTH` or :c:func:`PyUnicode_GetLength`
864 * :c:macro:`PyUnicode_GET_DATA_SIZE`: use
865 ``PyUnicode_GET_LENGTH(str) * PyUnicode_KIND(str)`` (only work on ready
866 strings)
Victor Stinnerbf6e5602011-12-12 01:53:47 +0100867 * :c:func:`PyUnicode_AsUnicodeCopy`: use :c:func:`PyUnicode_AsUCS4Copy` or
868 :c:func:`PyUnicode_AsWideCharString`
Victor Stinnerab595942011-12-17 04:59:06 +0100869 * :c:func:`PyUnicode_GetMax`
870
Victor Stinner46606ce2011-11-20 18:27:55 +0100871
Victor Stinnera996f1e2011-11-21 13:14:43 +0100872Functions and macros manipulating Py_UNICODE* strings:
873
874 * :c:macro:`Py_UNICODE_strlen`: use :c:func:`PyUnicode_GetLength` or
875 :c:macro:`PyUnicode_GET_LENGTH`
876 * :c:macro:`Py_UNICODE_strcat`: use :c:func:`PyUnicode_CopyCharacters` or
877 :c:func:`PyUnicode_FromFormat`
878 * :c:macro:`Py_UNICODE_strcpy`, :c:macro:`Py_UNICODE_strncpy`,
879 :c:macro:`Py_UNICODE_COPY`: use :c:func:`PyUnicode_CopyCharacters` or
880 :c:func:`PyUnicode_Substring`
881 * :c:macro:`Py_UNICODE_strcmp`: use :c:func:`PyUnicode_Compare`
882 * :c:macro:`Py_UNICODE_strncmp`: use :c:func:`PyUnicode_Tailmatch`
883 * :c:macro:`Py_UNICODE_strchr`, :c:macro:`Py_UNICODE_strrchr`: use
884 :c:func:`PyUnicode_FindChar`
Victor Stinner606e19d2012-01-04 03:59:16 +0100885 * :c:macro:`Py_UNICODE_FILL`: use :c:func:`PyUnicode_Fill`
Victor Stinnerab595942011-12-17 04:59:06 +0100886 * :c:macro:`Py_UNICODE_MATCH`
Victor Stinnera996f1e2011-11-21 13:14:43 +0100887
Victor Stinner46606ce2011-11-20 18:27:55 +0100888Encoders:
889
890 * :c:func:`PyUnicode_Encode`: use :c:func:`PyUnicode_AsEncodedObject`
891 * :c:func:`PyUnicode_EncodeUTF7`
Victor Stinnera996f1e2011-11-21 13:14:43 +0100892 * :c:func:`PyUnicode_EncodeUTF8`: use :c:func:`PyUnicode_AsUTF8` or
893 :c:func:`PyUnicode_AsUTF8String`
Victor Stinner46606ce2011-11-20 18:27:55 +0100894 * :c:func:`PyUnicode_EncodeUTF32`
895 * :c:func:`PyUnicode_EncodeUTF16`
896 * :c:func:`PyUnicode_EncodeUnicodeEscape:` use
897 :c:func:`PyUnicode_AsUnicodeEscapeString`
898 * :c:func:`PyUnicode_EncodeRawUnicodeEscape:` use
899 :c:func:`PyUnicode_AsRawUnicodeEscapeString`
900 * :c:func:`PyUnicode_EncodeLatin1`: use :c:func:`PyUnicode_AsLatin1String`
901 * :c:func:`PyUnicode_EncodeASCII`: use :c:func:`PyUnicode_AsASCIIString`
902 * :c:func:`PyUnicode_EncodeCharmap`
903 * :c:func:`PyUnicode_TranslateCharmap`
904 * :c:func:`PyUnicode_EncodeMBCS`: use :c:func:`PyUnicode_AsMBCSString` or
905 :c:func:`PyUnicode_EncodeCodePage` (with ``CP_ACP`` code_page)
906 * :c:func:`PyUnicode_EncodeDecimal`,
907 :c:func:`PyUnicode_TransformDecimalToASCII`
908
909
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000910Porting to Python 3.3
911=====================
912
913This section lists previously described changes and other bugfixes
Antoine Pitrou037ffbf2011-10-24 00:25:41 +0200914that may require changes to your code.
915
916Porting Python code
917-------------------
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000918
Victor Stinner19bd0692011-11-16 00:18:57 +0100919* :issue:`12326`: On Linux, sys.platform doesn't contain the major version
Victor Stinnerff3d9392011-08-20 23:39:26 +0200920 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
921 on the Linux version used to build Python. Replace sys.platform == 'linux2'
922 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
923 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +0100924
Antoine Pitrou037ffbf2011-10-24 00:25:41 +0200925Porting C code
926--------------
927
928* Due to :ref:`PEP 393 <pep-393>`, the :c:type:`Py_UNICODE` type and all
929 functions using this type are deprecated (but will stay available for
930 at least five years). If you were using low-level Unicode APIs to
931 construct and access unicode objects and you want to benefit of the
932 memory footprint reduction provided by the PEP 393, you have to convert
933 your code to the new :doc:`Unicode API <../c-api/unicode>`.
934
935 However, if you only have been using high-level functions such as
936 :c:func:`PyUnicode_Concat()`, :c:func:`PyUnicode_Join` or
937 :c:func:`PyUnicode_FromFormat()`, your code will automatically take
938 advantage of the new unicode representations.
939
940Other issues
941------------
942
Éric Araujoc09fca62011-03-23 02:06:24 +0100943.. Issue #11591: When :program:`python` was started with :option:`-S`,
944 ``import site`` will not add site-specific paths to the module search
945 paths. In previous versions, it did. See changeset for doc changes in
946 various files. Contributed by Carl Meyer with editions by Éric Araujo.
Éric Araujobe3bd572011-03-26 01:55:15 +0100947
Éric Araujobfc97292011-11-14 18:18:15 +0100948.. Issue #10998: the -Q command-line flag and related artifacts have been
Éric Araujobe3bd572011-03-26 01:55:15 +0100949 removed. Code checking sys.flags.division_warning will need updating.
950 Contributed by Éric Araujo.