blob: eb62968606d910f7953207b85deb7484e6a79b6e [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
Victor Stinner3a50e702011-10-18 21:21:00 +0200200The :mod:`~encodings.mbcs` codec has be rewritten to handle correclty
201``replace`` and ``ignore`` error handlers on all Windows versions. The
202:mod:`~encodings.mbcs` codec is now supporting all error handlers, instead of
203only ``replace`` to encode and ``ignore`` to decode.
204
Victor Stinner2cded9c2011-07-08 01:45:13 +0200205Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200206byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
207'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200208
Georg Brandl6c0929b2011-07-09 11:43:33 +0200209(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200210
211Don't reset incremental encoders of CJK codecs at each call to their encode()
Georg Brandl6c0929b2011-07-09 11:43:33 +0200212method anymore. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +0200213
214 $ ./python -q
215 >>> import codecs
216 >>> encoder = codecs.getincrementalencoder('hz')('strict')
217 >>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
218 b'~{NpJ)l6HK!#~} Bye.'
219
Georg Brandl6c0929b2011-07-09 11:43:33 +0200220This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older Python
Victor Stinner2cded9c2011-07-08 01:45:13 +0200221versions.
222
Georg Brandl6c0929b2011-07-09 11:43:33 +0200223(:issue:`12100`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200224
Éric Araujo84b8ed82011-08-29 21:42:47 +0200225crypt
226-----
227
Victor Stinnerc78fb332011-09-21 03:35:44 +0200228Addition of salt and modular crypt format and the :func:`~crypt.mksalt`
229function to the :mod:`crypt` module.
Éric Araujo84b8ed82011-08-29 21:42:47 +0200230
231(:issue:`10924`)
232
Victor Stinnera7878b72011-07-14 23:07:44 +0200233curses
234------
235
Victor Stinnerc78fb332011-09-21 03:35:44 +0200236 * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
237 method to get a wide character
238 * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
239 push a wide character so the next :meth:`~curses.window.get_wch` will return
240 it
Victor Stinnera7878b72011-07-14 23:07:44 +0200241
Victor Stinnerc78fb332011-09-21 03:35:44 +0200242(Contributed by Iñigo Serna in :issue:`6755`)
Victor Stinnera7878b72011-07-14 23:07:44 +0200243
Victor Stinner024e37a2011-03-31 01:31:06 +0200244faulthandler
245------------
246
247New module: :mod:`faulthandler`.
248
249 * :envvar:`PYTHONFAULTHANDLER`
250 * :option:`-X` ``faulthandler``
251
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200252
Victor Stinner811db3b2011-09-21 03:20:03 +0200253ftplib
254------
255
256The :class:`~ftplib.FTP_TLS` class now provides a new
257:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
258plaintex. This can be useful to take advantage of firewalls that know how to
259handle NAT with non-secure FTP without opening fixed ports.
260
261(Contributed by Giampaolo Rodolà in :issue:`12139`)
262
263
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200264math
265----
266
267The :mod:`math` module has a new function:
268
269 * :func:`~math.log2`: return the base-2 logarithm of *x*
270 (Written by Mark Dickinson in :issue:`11888`).
271
272
273nntplib
274-------
275
276The :class:`nntplib.NNTP` class now supports the context manager protocol to
277unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
278connection when done::
279
280 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +0300281 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200282 ... n.group('gmane.comp.python.committers')
283 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +0300284 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200285 >>>
286
287(Contributed by Giampaolo Rodolà in :issue:`9795`)
288
289
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000290os
291--
292
Charles-François Natalia003af12011-06-01 20:30:52 +0200293* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
294 possible to create a pipe with :data:`~os.O_CLOEXEC` or
295 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
296 avoid race conditions in multi-threaded programs.
297
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000298* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
299 an efficent "zero-copy" way for copying data from one file (or socket)
300 descriptor to another. The phrase "zero-copy" refers to the fact that all of
301 the copying of data between the two descriptors is done entirely by the
302 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
303 can be used to efficiently copy data from a file on disk to a network socket,
304 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000305
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000306 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
307
308* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
309 :func:`~os.setpriority`. They can be used to get or set process
310 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
311 processes instead of just the current one.
312
313 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000314
Victor Stinnere5064372011-10-14 00:08:29 +0200315* "at" functions (:issue:`4761`):
316
317 * :func:`~os.faccessat`
318 * :func:`~os.fchmodat`
319 * :func:`~os.fchownat`
320 * :func:`~os.fstatat`
321 * :func:`~os.futimesat`
322 * :func:`~os.futimesat`
323 * :func:`~os.linkat`
324 * :func:`~os.mkdirat`
325 * :func:`~os.mkfifoat`
326 * :func:`~os.mknodat`
327 * :func:`~os.openat`
328 * :func:`~os.readlinkat`
329 * :func:`~os.renameat`
330 * :func:`~os.symlinkat`
331 * :func:`~os.unlinkat`
332 * :func:`~os.utimensat`
333 * :func:`~os.utimensat`
334
335* extended attributes (:issue:`12720`):
336
337 * :func:`~os.fgetxattr`
338 * :func:`~os.flistxattr`
339 * :func:`~os.fremovexattr`
340 * :func:`~os.fsetxattr`
341 * :func:`~os.getxattr`
342 * :func:`~os.lgetxattr`
343 * :func:`~os.listxattr`
344 * :func:`~os.llistxattr`
345 * :func:`~os.lremovexattr`
346 * :func:`~os.lsetxattr`
347 * :func:`~os.removexattr`
348 * :func:`~os.setxattr`
349
350* Scheduler functions (:issue:`12655`):
351
352 * :func:`~os.sched_get_priority_max`
353 * :func:`~os.sched_get_priority_min`
354 * :func:`~os.sched_getaffinity`
355 * :func:`~os.sched_getparam`
356 * :func:`~os.sched_getscheduler`
357 * :func:`~os.sched_rr_get_interval`
358 * :func:`~os.sched_setaffinity`
359 * :func:`~os.sched_setparam`
360 * :func:`~os.sched_setscheduler`
361 * :func:`~os.sched_yield`
362
363* Add some extra posix functions to the os module (:issue:`10812`):
364
365 * :func:`~os.fexecve`
366 * :func:`~os.futimens`
367 * :func:`~os.futimens`
368 * :func:`~os.futimes`
369 * :func:`~os.futimes`
370 * :func:`~os.lockf`
371 * :func:`~os.lutimes`
372 * :func:`~os.lutimes`
373 * :func:`~os.posix_fadvise`
374 * :func:`~os.posix_fallocate`
375 * :func:`~os.pread`
376 * :func:`~os.pwrite`
377 * :func:`~os.readv`
378 * :func:`~os.sync`
379 * :func:`~os.truncate`
380 * :func:`~os.waitid`
381 * :func:`~os.writev`
382
383* Other new functions:
384
385 * :func:`~os.fdlistdir` (:issue:`10755`)
386 * :func:`~os.getgrouplist` (:issue:`9344`)
387
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000388
Éric Araujo765e94f2011-06-03 17:26:59 +0200389packaging
390---------
391
392:mod:`distutils` has undergone additions and refactoring under a new name,
393:mod:`packaging`, to allow developers to break backward compatibility.
394:mod:`distutils` is still provided in the standard library, but users are
395encouraged to transition to :mod:`packaging`. For older versions of Python, a
396backport compatible with 2.4+ and 3.1+ will be made available on PyPI under the
397name :mod:`distutils2`.
398
399.. TODO add examples and howto to the packaging docs and link to them
400
401
Victor Stinner383c3fc2011-05-25 01:35:05 +0200402pydoc
403-----
404
Victor Stinner6daa33c2011-05-25 01:41:22 +0200405The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
406:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
407in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +0200408
409
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200410sys
411---
Victor Stinner754851f2011-04-19 23:58:51 +0200412
Éric Araujo84b8ed82011-08-29 21:42:47 +0200413* The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200414 sequence` holding informations about the thread implementation.
Victor Stinner754851f2011-04-19 23:58:51 +0200415
Georg Brandl00db5822011-04-30 15:30:03 +0200416 (:issue:`11223`)
Victor Stinnera9293352011-04-30 15:21:58 +0200417
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200418
Victor Stinnera9293352011-04-30 15:21:58 +0200419signal
420------
421
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200422* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +0200423
Victor Stinnerb3e72192011-05-08 01:46:11 +0200424 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
425 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ;
426 * :func:`~signal.pthread_kill`: send a signal to a thread ;
427 * :func:`~signal.sigpending`: examine pending functions ;
428 * :func:`~signal.sigwait`: wait a signal.
Ross Lagerwallbc808222011-06-25 12:13:40 +0200429 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
430 information about it.
431 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
432 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +0200433
Victor Stinnerd49b1f12011-05-08 02:03:15 +0200434* The signal handler writes the signal number as a single byte instead of
435 a nul byte into the wakeup file descriptor. So it is possible to wait more
436 than one signal and know which signals were raised.
437
Victor Stinner388196e2011-05-10 17:13:00 +0200438* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
439 instead of a RuntimeError: OSError has an errno attribute.
440
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000441socket
442------
443
Charles-François Natali47413c12011-10-06 19:47:44 +0200444* The :class:`~socket.socket` class now exposes additional methods to process
445 ancillary data when supported by the underlying platform:
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000446
Charles-François Natali47413c12011-10-06 19:47:44 +0200447 * :func:`~socket.socket.sendmsg`
448 * :func:`~socket.socket.recvmsg`
449 * :func:`~socket.socket.recvmsg_into`
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000450
Charles-François Natali47413c12011-10-06 19:47:44 +0200451 (Contributed by David Watson in :issue:`6560`, based on an earlier patch by
452 Heiko Wundram)
453
454* The :class:`~socket.socket` class now supports the PF_CAN protocol family
455 (http://en.wikipedia.org/wiki/Socketcan), on Linux
456 (http://lwn.net/Articles/253425).
457
458 (Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:`10141`)
459
Victor Stinner754851f2011-04-19 23:58:51 +0200460
Victor Stinner99c8b162011-05-24 12:05:19 +0200461ssl
462---
463
464The :mod:`ssl` module has new functions:
465
466 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
467 pseudo-random bytes.
468 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
469
470
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200471shutil
472------
473
Sandro Tosiaec2f212011-08-23 00:58:21 +0200474* The :mod:`shutil` module has these new fuctions:
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200475
Sandro Tosiaec2f212011-08-23 00:58:21 +0200476 * :func:`~shutil.disk_usage`: provides total, used and free disk space
477 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`)
478 * :func:`~shutil.chown`: allows one to change user and/or group of the given
479 path also specifying the user/group names and not only their numeric
480 ids. (Contributed by Sandro Tosi in :issue:`12191`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200481
Senthil Kumarande49d642011-10-16 23:54:44 +0800482urllib
483------
484
485The :class:`~urllib.request.Request` class, now accepts a *method* argument
486used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
487should be used. For example, this will send an ``'HEAD'`` request::
488
489 >>> urlopen(Request('http://www.python.org', method='HEAD'))
490
491(:issue:`1673007`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200492
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000493Optimizations
494=============
495
496Major performance enhancements have been added:
497
498* Stub
499
500
501Build and C API Changes
502=======================
503
504Changes to Python's build process and to the C API include:
505
506* Stub
507
508
Georg Brandl0cd25c92011-04-29 13:45:54 +0200509Unsupported Operating Systems
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200510=============================
511
Brian Curtin49a40cd2011-05-02 22:30:06 -0500512OS/2 and VMS are no longer supported due to the lack of a maintainer.
513
514Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
515are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200516
517
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000518Porting to Python 3.3
519=====================
520
521This section lists previously described changes and other bugfixes
522that may require changes to your code:
523
Victor Stinnerff3d9392011-08-20 23:39:26 +0200524* Issue #12326: On Linux, sys.platform doesn't contain the major version
525 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
526 on the Linux version used to build Python. Replace sys.platform == 'linux2'
527 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
528 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +0100529
530.. Issue #11591: When :program:`python` was started with :option:`-S`,
531 ``import site`` will not add site-specific paths to the module search
532 paths. In previous versions, it did. See changeset for doc changes in
533 various files. Contributed by Carl Meyer with editions by Éric Araujo.
Éric Araujobe3bd572011-03-26 01:55:15 +0100534
535.. Issue #10998: -Q command-line flags are related artifacts have been
536 removed. Code checking sys.flags.division_warning will need updating.
537 Contributed by Éric Araujo.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200538
539* :pep:`393`: The :c:type:`Py_UNICODE` type and all functions using this type
540 are deprecated. To fully benefit of the memory footprint reduction provided
541 by the PEP 393, you have to convert your code to the new Unicode API. Read
542 the porting guide: XXX.
543