blob: 6c57d72d5d6032d86c8c83be2e446536df58cbce [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
Ezio Melotti48a2f8f2011-09-29 00:18:19 +030052PEP 393: Flexible String Representation
53=======================================
54
Éric Araujo5043f092011-10-05 01:04:18 +020055[Abstract copied from the PEP: The Unicode string type is changed to support
56multiple internal representations, depending on the character with the largest
57Unicode ordinal (1, 2, or 4 bytes). This allows a space-efficient
58representation in common cases, but gives access to full UCS-4 on all systems.
59For compatibility with existing APIs, several representations may exist in
60parallel; over time, this compatibility should be phased out.]
Ezio Melotti397546a2011-09-29 08:34:36 +030061
62PEP 393 is fully backward compatible. The legacy API should remain
63available at least five years. Applications using the legacy API will not
64fully benefit of the memory reduction, or worse may use a little bit more
65memory, because Python may have to maintain two versions of each string (in
66the legacy format and in the new efficient storage).
67
Ezio Melotti48a2f8f2011-09-29 00:18:19 +030068XXX Add list of changes introduced by :pep:`393` here:
69
Ezio Melotti397546a2011-09-29 08:34:36 +030070* Python now always supports the full range of Unicode codepoints, including
71 non-BMP ones (i.e. from ``U+0000`` to ``U+10FFFF``). The distinction between
72 narrow and wide builds no longer exists and Python now behaves like a wide
73 build.
74
75* The storage of Unicode strings now depends on the highest codepoint in the string:
76
77 * pure ASCII and Latin1 strings (``U+0000-U+00FF``) use 1 byte per codepoint;
78
79 * BMP strings (``U+0000-U+FFFF``) use 2 bytes per codepoint;
80
81 * non-BMP strings (``U+10000-U+10FFFF``) use 4 bytes per codepoint.
82
83.. The memory usage of Python 3.3 is two to three times smaller than Python 3.2,
84 and a little bit better than Python 2.7, on a `Django benchmark
85 <http://mail.python.org/pipermail/python-dev/2011-September/113714.html>`_.
86 XXX The result should be moved in the PEP and a small summary about
87 performances and a link to the PEP should be added here.
88
89* Some of the problems visible on narrow builds have been fixed, for example:
90
91 * :func:`len` now always returns 1 for non-BMP characters,
92 so ``len('\U0010FFFF') == 1``;
93
94 * surrogate pairs are not recombined in string literals,
95 so ``'\uDBFF\uDFFF' != '\U0010FFFF'``;
96
97 * indexing or slicing a non-BMP characters doesn't return surrogates anymore,
98 so ``'\U0010FFFF'[0]`` now returns ``'\U0010FFFF'`` and not ``'\uDBFF'``;
99
100 * several other functions in the stdlib now handle correctly non-BMP codepoints.
101
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300102* The value of :data:`sys.maxunicode` is now always ``1114111`` (``0x10FFFF``
103 in hexadecimal). The :c:func:`PyUnicode_GetMax` function still returns
104 either ``0xFFFF`` or ``0x10FFFF`` for backward compatibility, and it should
105 not be used with the new Unicode API (see :issue:`13054`).
106
Ezio Melotti397546a2011-09-29 08:34:36 +0300107* The :file:`./configure` flag ``--with-wide-unicode`` has been removed.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200108
Ezio Melotti397546a2011-09-29 08:34:36 +0300109XXX mention new and deprecated functions and macros
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300110
Éric Araujob07b97f2011-10-05 01:03:34 +0200111
Victor Stinnera1bf2982011-10-12 20:35:02 +0200112PEP 3151: Reworking the OS and IO exception hierarchy
113=====================================================
114
115:pep:`3151` - Reworking the OS and IO exception hierarchy
116PEP written and implemented by Antoine Pitrou.
117
118New subclasses of :exc:`OSError` exceptions:
119
120 * :exc:`BlockingIOError`
121 * :exc:`ChildProcessError`
122 * :exc:`ConnectionError`
123
124 * :exc:`BrokenPipeError`
125 * :exc:`ConnectionAbortedError`
126 * :exc:`ConnectionRefusedError`
127 * :exc:`ConnectionResetError`
128
129 * :exc:`FileExistsError`
130 * :exc:`FileNotFoundError`
131 * :exc:`InterruptedError`
132 * :exc:`IsADirectoryError`
133 * :exc:`NotADirectoryError`
134 * :exc:`PermissionError`
135 * :exc:`ProcessLookupError`
136 * :exc:`TimeoutError`
137
138The following exceptions have been merged into :exc:`OSError`:
139
140 * :exc:`EnvironmentError`
141 * :exc:`IOError`
142 * :exc:`WindowsError`
143 * :exc:`VMSError`
144 * :exc:`socket.error`
145 * :exc:`select.error`
146 * :exc:`mmap.error`
147
148Thanks to the new exceptions, common usages of the :mod:`errno` can now be
149avoided. For example, the following code written for Python 3.2: ::
150
151 from errno import ENOENT, EACCES, EPERM
152
153 try:
154 with open("document.txt") as f:
155 content = f.read()
156 except IOError as err:
157 if err.errno == ENOENT:
158 print("document.txt file is missing")
159 elif err.errno in (EACCES, EPERM):
160 print("You are not allowed to read document.txt")
161 else:
162 raise
163
164can now be written without the :mod:`errno` import: ::
165
166 try:
167 with open("document.txt") as f:
168 content = f.read()
169 except FileNotFoundError:
170 print("document.txt file is missing")
171 except PermissionError:
172 print("You are not allowed to read document.txt")
173
174
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000175Other Language Changes
176======================
177
178Some smaller changes made to the core Python language are:
179
180* Stub
181
182
183New, Improved, and Deprecated Modules
184=====================================
185
186* Stub
187
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500188array
189-----
190
191The :mod:`array` module supports the :c:type:`long long` type using ``q`` and
192``Q`` type codes.
193
194(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`)
195
196
Victor Stinner2cded9c2011-07-08 01:45:13 +0200197codecs
198------
199
200Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200201byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
202'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200203
Georg Brandl6c0929b2011-07-09 11:43:33 +0200204(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200205
206Don't reset incremental encoders of CJK codecs at each call to their encode()
Georg Brandl6c0929b2011-07-09 11:43:33 +0200207method anymore. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +0200208
209 $ ./python -q
210 >>> import codecs
211 >>> encoder = codecs.getincrementalencoder('hz')('strict')
212 >>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
213 b'~{NpJ)l6HK!#~} Bye.'
214
Georg Brandl6c0929b2011-07-09 11:43:33 +0200215This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older Python
Victor Stinner2cded9c2011-07-08 01:45:13 +0200216versions.
217
Georg Brandl6c0929b2011-07-09 11:43:33 +0200218(:issue:`12100`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200219
Éric Araujo84b8ed82011-08-29 21:42:47 +0200220crypt
221-----
222
Victor Stinnerc78fb332011-09-21 03:35:44 +0200223Addition of salt and modular crypt format and the :func:`~crypt.mksalt`
224function to the :mod:`crypt` module.
Éric Araujo84b8ed82011-08-29 21:42:47 +0200225
226(:issue:`10924`)
227
Victor Stinnera7878b72011-07-14 23:07:44 +0200228curses
229------
230
Victor Stinnerc78fb332011-09-21 03:35:44 +0200231 * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
232 method to get a wide character
233 * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
234 push a wide character so the next :meth:`~curses.window.get_wch` will return
235 it
Victor Stinnera7878b72011-07-14 23:07:44 +0200236
Victor Stinnerc78fb332011-09-21 03:35:44 +0200237(Contributed by Iñigo Serna in :issue:`6755`)
Victor Stinnera7878b72011-07-14 23:07:44 +0200238
Victor Stinner024e37a2011-03-31 01:31:06 +0200239faulthandler
240------------
241
242New module: :mod:`faulthandler`.
243
244 * :envvar:`PYTHONFAULTHANDLER`
245 * :option:`-X` ``faulthandler``
246
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200247
Victor Stinner811db3b2011-09-21 03:20:03 +0200248ftplib
249------
250
251The :class:`~ftplib.FTP_TLS` class now provides a new
252:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
253plaintex. This can be useful to take advantage of firewalls that know how to
254handle NAT with non-secure FTP without opening fixed ports.
255
256(Contributed by Giampaolo Rodolà in :issue:`12139`)
257
258
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200259math
260----
261
262The :mod:`math` module has a new function:
263
264 * :func:`~math.log2`: return the base-2 logarithm of *x*
265 (Written by Mark Dickinson in :issue:`11888`).
266
267
268nntplib
269-------
270
271The :class:`nntplib.NNTP` class now supports the context manager protocol to
272unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
273connection when done::
274
275 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +0300276 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200277 ... n.group('gmane.comp.python.committers')
278 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +0300279 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200280 >>>
281
282(Contributed by Giampaolo Rodolà in :issue:`9795`)
283
284
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000285os
286--
287
Charles-François Natalia003af12011-06-01 20:30:52 +0200288* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
289 possible to create a pipe with :data:`~os.O_CLOEXEC` or
290 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
291 avoid race conditions in multi-threaded programs.
292
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000293* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
294 an efficent "zero-copy" way for copying data from one file (or socket)
295 descriptor to another. The phrase "zero-copy" refers to the fact that all of
296 the copying of data between the two descriptors is done entirely by the
297 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
298 can be used to efficiently copy data from a file on disk to a network socket,
299 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000300
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000301 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
302
303* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
304 :func:`~os.setpriority`. They can be used to get or set process
305 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
306 processes instead of just the current one.
307
308 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000309
Victor Stinnere5064372011-10-14 00:08:29 +0200310* "at" functions (:issue:`4761`):
311
312 * :func:`~os.faccessat`
313 * :func:`~os.fchmodat`
314 * :func:`~os.fchownat`
315 * :func:`~os.fstatat`
316 * :func:`~os.futimesat`
317 * :func:`~os.futimesat`
318 * :func:`~os.linkat`
319 * :func:`~os.mkdirat`
320 * :func:`~os.mkfifoat`
321 * :func:`~os.mknodat`
322 * :func:`~os.openat`
323 * :func:`~os.readlinkat`
324 * :func:`~os.renameat`
325 * :func:`~os.symlinkat`
326 * :func:`~os.unlinkat`
327 * :func:`~os.utimensat`
328 * :func:`~os.utimensat`
329
330* extended attributes (:issue:`12720`):
331
332 * :func:`~os.fgetxattr`
333 * :func:`~os.flistxattr`
334 * :func:`~os.fremovexattr`
335 * :func:`~os.fsetxattr`
336 * :func:`~os.getxattr`
337 * :func:`~os.lgetxattr`
338 * :func:`~os.listxattr`
339 * :func:`~os.llistxattr`
340 * :func:`~os.lremovexattr`
341 * :func:`~os.lsetxattr`
342 * :func:`~os.removexattr`
343 * :func:`~os.setxattr`
344
345* Scheduler functions (:issue:`12655`):
346
347 * :func:`~os.sched_get_priority_max`
348 * :func:`~os.sched_get_priority_min`
349 * :func:`~os.sched_getaffinity`
350 * :func:`~os.sched_getparam`
351 * :func:`~os.sched_getscheduler`
352 * :func:`~os.sched_rr_get_interval`
353 * :func:`~os.sched_setaffinity`
354 * :func:`~os.sched_setparam`
355 * :func:`~os.sched_setscheduler`
356 * :func:`~os.sched_yield`
357
358* Add some extra posix functions to the os module (:issue:`10812`):
359
360 * :func:`~os.fexecve`
361 * :func:`~os.futimens`
362 * :func:`~os.futimens`
363 * :func:`~os.futimes`
364 * :func:`~os.futimes`
365 * :func:`~os.lockf`
366 * :func:`~os.lutimes`
367 * :func:`~os.lutimes`
368 * :func:`~os.posix_fadvise`
369 * :func:`~os.posix_fallocate`
370 * :func:`~os.pread`
371 * :func:`~os.pwrite`
372 * :func:`~os.readv`
373 * :func:`~os.sync`
374 * :func:`~os.truncate`
375 * :func:`~os.waitid`
376 * :func:`~os.writev`
377
378* Other new functions:
379
380 * :func:`~os.fdlistdir` (:issue:`10755`)
381 * :func:`~os.getgrouplist` (:issue:`9344`)
382
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000383
Éric Araujo765e94f2011-06-03 17:26:59 +0200384packaging
385---------
386
387:mod:`distutils` has undergone additions and refactoring under a new name,
388:mod:`packaging`, to allow developers to break backward compatibility.
389:mod:`distutils` is still provided in the standard library, but users are
390encouraged to transition to :mod:`packaging`. For older versions of Python, a
391backport compatible with 2.4+ and 3.1+ will be made available on PyPI under the
392name :mod:`distutils2`.
393
394.. TODO add examples and howto to the packaging docs and link to them
395
396
Victor Stinner383c3fc2011-05-25 01:35:05 +0200397pydoc
398-----
399
Victor Stinner6daa33c2011-05-25 01:41:22 +0200400The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
401:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
402in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +0200403
404
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200405sys
406---
Victor Stinner754851f2011-04-19 23:58:51 +0200407
Éric Araujo84b8ed82011-08-29 21:42:47 +0200408* The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200409 sequence` holding informations about the thread implementation.
Victor Stinner754851f2011-04-19 23:58:51 +0200410
Georg Brandl00db5822011-04-30 15:30:03 +0200411 (:issue:`11223`)
Victor Stinnera9293352011-04-30 15:21:58 +0200412
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200413
Victor Stinnera9293352011-04-30 15:21:58 +0200414signal
415------
416
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200417* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +0200418
Victor Stinnerb3e72192011-05-08 01:46:11 +0200419 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
420 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ;
421 * :func:`~signal.pthread_kill`: send a signal to a thread ;
422 * :func:`~signal.sigpending`: examine pending functions ;
423 * :func:`~signal.sigwait`: wait a signal.
Ross Lagerwallbc808222011-06-25 12:13:40 +0200424 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
425 information about it.
426 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
427 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +0200428
Victor Stinnerd49b1f12011-05-08 02:03:15 +0200429* The signal handler writes the signal number as a single byte instead of
430 a nul byte into the wakeup file descriptor. So it is possible to wait more
431 than one signal and know which signals were raised.
432
Victor Stinner388196e2011-05-10 17:13:00 +0200433* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
434 instead of a RuntimeError: OSError has an errno attribute.
435
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000436socket
437------
438
Charles-François Natali47413c12011-10-06 19:47:44 +0200439* The :class:`~socket.socket` class now exposes additional methods to process
440 ancillary data when supported by the underlying platform:
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000441
Charles-François Natali47413c12011-10-06 19:47:44 +0200442 * :func:`~socket.socket.sendmsg`
443 * :func:`~socket.socket.recvmsg`
444 * :func:`~socket.socket.recvmsg_into`
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000445
Charles-François Natali47413c12011-10-06 19:47:44 +0200446 (Contributed by David Watson in :issue:`6560`, based on an earlier patch by
447 Heiko Wundram)
448
449* The :class:`~socket.socket` class now supports the PF_CAN protocol family
450 (http://en.wikipedia.org/wiki/Socketcan), on Linux
451 (http://lwn.net/Articles/253425).
452
453 (Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:`10141`)
454
Victor Stinner754851f2011-04-19 23:58:51 +0200455
Victor Stinner99c8b162011-05-24 12:05:19 +0200456ssl
457---
458
459The :mod:`ssl` module has new functions:
460
461 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
462 pseudo-random bytes.
463 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
464
465
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200466shutil
467------
468
Sandro Tosiaec2f212011-08-23 00:58:21 +0200469* The :mod:`shutil` module has these new fuctions:
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200470
Sandro Tosiaec2f212011-08-23 00:58:21 +0200471 * :func:`~shutil.disk_usage`: provides total, used and free disk space
472 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`)
473 * :func:`~shutil.chown`: allows one to change user and/or group of the given
474 path also specifying the user/group names and not only their numeric
475 ids. (Contributed by Sandro Tosi in :issue:`12191`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200476
477
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000478Optimizations
479=============
480
481Major performance enhancements have been added:
482
483* Stub
484
485
486Build and C API Changes
487=======================
488
489Changes to Python's build process and to the C API include:
490
491* Stub
492
493
Georg Brandl0cd25c92011-04-29 13:45:54 +0200494Unsupported Operating Systems
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200495=============================
496
Brian Curtin49a40cd2011-05-02 22:30:06 -0500497OS/2 and VMS are no longer supported due to the lack of a maintainer.
498
499Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
500are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200501
502
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000503Porting to Python 3.3
504=====================
505
506This section lists previously described changes and other bugfixes
507that may require changes to your code:
508
Victor Stinnerff3d9392011-08-20 23:39:26 +0200509* Issue #12326: On Linux, sys.platform doesn't contain the major version
510 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
511 on the Linux version used to build Python. Replace sys.platform == 'linux2'
512 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
513 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +0100514
515.. Issue #11591: When :program:`python` was started with :option:`-S`,
516 ``import site`` will not add site-specific paths to the module search
517 paths. In previous versions, it did. See changeset for doc changes in
518 various files. Contributed by Carl Meyer with editions by Éric Araujo.
Éric Araujobe3bd572011-03-26 01:55:15 +0100519
520.. Issue #10998: -Q command-line flags are related artifacts have been
521 removed. Code checking sys.flags.division_warning will need updating.
522 Contributed by Éric Araujo.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200523
524* :pep:`393`: The :c:type:`Py_UNICODE` type and all functions using this type
525 are deprecated. To fully benefit of the memory footprint reduction provided
526 by the PEP 393, you have to convert your code to the new Unicode API. Read
527 the porting guide: XXX.
528