blob: d08ee6288c7dc55e47d4cbb677fb032ea362180b [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
Ezio Melotti931b8aa2011-10-21 21:57:36 +0300182Added support for Unicode name aliases and named sequences.
183Both :func:`unicodedata.lookup()` and '\N{...}' now resolve name aliases,
184and :func:`unicodedata.lookup()` resolves named sequences too.
185
186(Contributed by Ezio Melotti in :issue:`12753`)
187
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000188
189New, Improved, and Deprecated Modules
190=====================================
191
192* Stub
193
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500194array
195-----
196
197The :mod:`array` module supports the :c:type:`long long` type using ``q`` and
198``Q`` type codes.
199
200(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`)
201
202
Victor Stinner2cded9c2011-07-08 01:45:13 +0200203codecs
204------
205
Victor Stinner3a50e702011-10-18 21:21:00 +0200206The :mod:`~encodings.mbcs` codec has be rewritten to handle correclty
207``replace`` and ``ignore`` error handlers on all Windows versions. The
208:mod:`~encodings.mbcs` codec is now supporting all error handlers, instead of
209only ``replace`` to encode and ``ignore`` to decode.
210
Victor Stinner2cded9c2011-07-08 01:45:13 +0200211Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200212byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
213'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200214
Georg Brandl6c0929b2011-07-09 11:43:33 +0200215(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200216
217Don't reset incremental encoders of CJK codecs at each call to their encode()
Georg Brandl6c0929b2011-07-09 11:43:33 +0200218method anymore. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +0200219
220 $ ./python -q
221 >>> import codecs
222 >>> encoder = codecs.getincrementalencoder('hz')('strict')
223 >>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
224 b'~{NpJ)l6HK!#~} Bye.'
225
Georg Brandl6c0929b2011-07-09 11:43:33 +0200226This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older Python
Victor Stinner2cded9c2011-07-08 01:45:13 +0200227versions.
228
Georg Brandl6c0929b2011-07-09 11:43:33 +0200229(:issue:`12100`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200230
Éric Araujo84b8ed82011-08-29 21:42:47 +0200231crypt
232-----
233
Victor Stinnerc78fb332011-09-21 03:35:44 +0200234Addition of salt and modular crypt format and the :func:`~crypt.mksalt`
235function to the :mod:`crypt` module.
Éric Araujo84b8ed82011-08-29 21:42:47 +0200236
237(:issue:`10924`)
238
Victor Stinnera7878b72011-07-14 23:07:44 +0200239curses
240------
241
Victor Stinnerc78fb332011-09-21 03:35:44 +0200242 * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
243 method to get a wide character
244 * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
245 push a wide character so the next :meth:`~curses.window.get_wch` will return
246 it
Victor Stinnera7878b72011-07-14 23:07:44 +0200247
Victor Stinnerc78fb332011-09-21 03:35:44 +0200248(Contributed by Iñigo Serna in :issue:`6755`)
Victor Stinnera7878b72011-07-14 23:07:44 +0200249
Victor Stinner024e37a2011-03-31 01:31:06 +0200250faulthandler
251------------
252
253New module: :mod:`faulthandler`.
254
255 * :envvar:`PYTHONFAULTHANDLER`
256 * :option:`-X` ``faulthandler``
257
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200258
Victor Stinner811db3b2011-09-21 03:20:03 +0200259ftplib
260------
261
262The :class:`~ftplib.FTP_TLS` class now provides a new
263:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
264plaintex. This can be useful to take advantage of firewalls that know how to
265handle NAT with non-secure FTP without opening fixed ports.
266
267(Contributed by Giampaolo Rodolà in :issue:`12139`)
268
269
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200270math
271----
272
273The :mod:`math` module has a new function:
274
275 * :func:`~math.log2`: return the base-2 logarithm of *x*
276 (Written by Mark Dickinson in :issue:`11888`).
277
278
279nntplib
280-------
281
282The :class:`nntplib.NNTP` class now supports the context manager protocol to
283unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
284connection when done::
285
286 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +0300287 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200288 ... n.group('gmane.comp.python.committers')
289 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +0300290 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200291 >>>
292
293(Contributed by Giampaolo Rodolà in :issue:`9795`)
294
295
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000296os
297--
298
Charles-François Natalia003af12011-06-01 20:30:52 +0200299* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
300 possible to create a pipe with :data:`~os.O_CLOEXEC` or
301 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
302 avoid race conditions in multi-threaded programs.
303
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000304* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
305 an efficent "zero-copy" way for copying data from one file (or socket)
306 descriptor to another. The phrase "zero-copy" refers to the fact that all of
307 the copying of data between the two descriptors is done entirely by the
308 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
309 can be used to efficiently copy data from a file on disk to a network socket,
310 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000311
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000312 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
313
314* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
315 :func:`~os.setpriority`. They can be used to get or set process
316 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
317 processes instead of just the current one.
318
319 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000320
Victor Stinnere5064372011-10-14 00:08:29 +0200321* "at" functions (:issue:`4761`):
322
323 * :func:`~os.faccessat`
324 * :func:`~os.fchmodat`
325 * :func:`~os.fchownat`
326 * :func:`~os.fstatat`
327 * :func:`~os.futimesat`
328 * :func:`~os.futimesat`
329 * :func:`~os.linkat`
330 * :func:`~os.mkdirat`
331 * :func:`~os.mkfifoat`
332 * :func:`~os.mknodat`
333 * :func:`~os.openat`
334 * :func:`~os.readlinkat`
335 * :func:`~os.renameat`
336 * :func:`~os.symlinkat`
337 * :func:`~os.unlinkat`
338 * :func:`~os.utimensat`
339 * :func:`~os.utimensat`
340
341* extended attributes (:issue:`12720`):
342
343 * :func:`~os.fgetxattr`
344 * :func:`~os.flistxattr`
345 * :func:`~os.fremovexattr`
346 * :func:`~os.fsetxattr`
347 * :func:`~os.getxattr`
348 * :func:`~os.lgetxattr`
349 * :func:`~os.listxattr`
350 * :func:`~os.llistxattr`
351 * :func:`~os.lremovexattr`
352 * :func:`~os.lsetxattr`
353 * :func:`~os.removexattr`
354 * :func:`~os.setxattr`
355
356* Scheduler functions (:issue:`12655`):
357
358 * :func:`~os.sched_get_priority_max`
359 * :func:`~os.sched_get_priority_min`
360 * :func:`~os.sched_getaffinity`
361 * :func:`~os.sched_getparam`
362 * :func:`~os.sched_getscheduler`
363 * :func:`~os.sched_rr_get_interval`
364 * :func:`~os.sched_setaffinity`
365 * :func:`~os.sched_setparam`
366 * :func:`~os.sched_setscheduler`
367 * :func:`~os.sched_yield`
368
369* Add some extra posix functions to the os module (:issue:`10812`):
370
371 * :func:`~os.fexecve`
372 * :func:`~os.futimens`
373 * :func:`~os.futimens`
374 * :func:`~os.futimes`
375 * :func:`~os.futimes`
376 * :func:`~os.lockf`
377 * :func:`~os.lutimes`
378 * :func:`~os.lutimes`
379 * :func:`~os.posix_fadvise`
380 * :func:`~os.posix_fallocate`
381 * :func:`~os.pread`
382 * :func:`~os.pwrite`
383 * :func:`~os.readv`
384 * :func:`~os.sync`
385 * :func:`~os.truncate`
386 * :func:`~os.waitid`
387 * :func:`~os.writev`
388
389* Other new functions:
390
391 * :func:`~os.fdlistdir` (:issue:`10755`)
392 * :func:`~os.getgrouplist` (:issue:`9344`)
393
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000394
Éric Araujo765e94f2011-06-03 17:26:59 +0200395packaging
396---------
397
398:mod:`distutils` has undergone additions and refactoring under a new name,
399:mod:`packaging`, to allow developers to break backward compatibility.
400:mod:`distutils` is still provided in the standard library, but users are
401encouraged to transition to :mod:`packaging`. For older versions of Python, a
402backport compatible with 2.4+ and 3.1+ will be made available on PyPI under the
403name :mod:`distutils2`.
404
405.. TODO add examples and howto to the packaging docs and link to them
406
407
Victor Stinner383c3fc2011-05-25 01:35:05 +0200408pydoc
409-----
410
Victor Stinner6daa33c2011-05-25 01:41:22 +0200411The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
412:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
413in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +0200414
415
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200416sys
417---
Victor Stinner754851f2011-04-19 23:58:51 +0200418
Éric Araujo84b8ed82011-08-29 21:42:47 +0200419* The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200420 sequence` holding informations about the thread implementation.
Victor Stinner754851f2011-04-19 23:58:51 +0200421
Georg Brandl00db5822011-04-30 15:30:03 +0200422 (:issue:`11223`)
Victor Stinnera9293352011-04-30 15:21:58 +0200423
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200424
Victor Stinnera9293352011-04-30 15:21:58 +0200425signal
426------
427
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200428* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +0200429
Victor Stinnerb3e72192011-05-08 01:46:11 +0200430 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
431 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ;
432 * :func:`~signal.pthread_kill`: send a signal to a thread ;
433 * :func:`~signal.sigpending`: examine pending functions ;
434 * :func:`~signal.sigwait`: wait a signal.
Ross Lagerwallbc808222011-06-25 12:13:40 +0200435 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
436 information about it.
437 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
438 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +0200439
Victor Stinnerd49b1f12011-05-08 02:03:15 +0200440* The signal handler writes the signal number as a single byte instead of
441 a nul byte into the wakeup file descriptor. So it is possible to wait more
442 than one signal and know which signals were raised.
443
Victor Stinner388196e2011-05-10 17:13:00 +0200444* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
445 instead of a RuntimeError: OSError has an errno attribute.
446
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000447socket
448------
449
Charles-François Natali47413c12011-10-06 19:47:44 +0200450* The :class:`~socket.socket` class now exposes additional methods to process
451 ancillary data when supported by the underlying platform:
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000452
Charles-François Natali47413c12011-10-06 19:47:44 +0200453 * :func:`~socket.socket.sendmsg`
454 * :func:`~socket.socket.recvmsg`
455 * :func:`~socket.socket.recvmsg_into`
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000456
Charles-François Natali47413c12011-10-06 19:47:44 +0200457 (Contributed by David Watson in :issue:`6560`, based on an earlier patch by
458 Heiko Wundram)
459
460* The :class:`~socket.socket` class now supports the PF_CAN protocol family
461 (http://en.wikipedia.org/wiki/Socketcan), on Linux
462 (http://lwn.net/Articles/253425).
463
464 (Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:`10141`)
465
Victor Stinner754851f2011-04-19 23:58:51 +0200466
Victor Stinner99c8b162011-05-24 12:05:19 +0200467ssl
468---
469
470The :mod:`ssl` module has new functions:
471
472 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
473 pseudo-random bytes.
474 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
475
476
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200477shutil
478------
479
Sandro Tosiaec2f212011-08-23 00:58:21 +0200480* The :mod:`shutil` module has these new fuctions:
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200481
Sandro Tosiaec2f212011-08-23 00:58:21 +0200482 * :func:`~shutil.disk_usage`: provides total, used and free disk space
483 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`)
484 * :func:`~shutil.chown`: allows one to change user and/or group of the given
485 path also specifying the user/group names and not only their numeric
486 ids. (Contributed by Sandro Tosi in :issue:`12191`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200487
Senthil Kumarande49d642011-10-16 23:54:44 +0800488urllib
489------
490
491The :class:`~urllib.request.Request` class, now accepts a *method* argument
492used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
Senthil Kumarana41c9422011-10-20 02:37:08 +0800493should be used. For example, this will send a ``'HEAD'`` request::
Senthil Kumarande49d642011-10-16 23:54:44 +0800494
495 >>> urlopen(Request('http://www.python.org', method='HEAD'))
496
497(:issue:`1673007`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200498
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000499Optimizations
500=============
501
502Major performance enhancements have been added:
503
504* Stub
505
506
507Build and C API Changes
508=======================
509
510Changes to Python's build process and to the C API include:
511
512* Stub
513
514
Georg Brandl0cd25c92011-04-29 13:45:54 +0200515Unsupported Operating Systems
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200516=============================
517
Brian Curtin49a40cd2011-05-02 22:30:06 -0500518OS/2 and VMS are no longer supported due to the lack of a maintainer.
519
520Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
521are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200522
523
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000524Porting to Python 3.3
525=====================
526
527This section lists previously described changes and other bugfixes
528that may require changes to your code:
529
Victor Stinnerff3d9392011-08-20 23:39:26 +0200530* Issue #12326: On Linux, sys.platform doesn't contain the major version
531 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
532 on the Linux version used to build Python. Replace sys.platform == 'linux2'
533 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
534 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +0100535
536.. Issue #11591: When :program:`python` was started with :option:`-S`,
537 ``import site`` will not add site-specific paths to the module search
538 paths. In previous versions, it did. See changeset for doc changes in
539 various files. Contributed by Carl Meyer with editions by Éric Araujo.
Éric Araujobe3bd572011-03-26 01:55:15 +0100540
541.. Issue #10998: -Q command-line flags are related artifacts have been
542 removed. Code checking sys.flags.division_warning will need updating.
543 Contributed by Éric Araujo.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200544
545* :pep:`393`: The :c:type:`Py_UNICODE` type and all functions using this type
546 are deprecated. To fully benefit of the memory footprint reduction provided
547 by the PEP 393, you have to convert your code to the new Unicode API. Read
548 the porting guide: XXX.
549