blob: ce47608434029e406d99ed6af851b6398368947a [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
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200116 PEP written and implemented by Antoine Pitrou.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200117
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200118The hierarchy of exceptions raised by operating system errors is now both
119simplified and finer-grained.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200120
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200121You don't have to worry anymore about choosing the appropriate exception
122type between :exc:`OSError`, :exc:`IOError`, :exc:`EnvironmentError`,
123:exc:`WindowsError`, :exc:`mmap.error`, :exc:`socket.error` or
124:exc:`select.error`. All these exception types are now only one:
125:exc:`OSError`. The other names are kept as aliases for compatibility
126reasons.
Victor Stinnera1bf2982011-10-12 20:35:02 +0200127
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200128Also, it is now easier to catch a specific error condition. Instead of
129inspecting the ``errno`` attribute (or ``args[0]``) for a particular
130constant from the :mod:`errno` module, you can catch the adequate
131:exc:`OSError` subclass. The available subclasses are the following:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200132
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200133* :exc:`BlockingIOError`
134* :exc:`ChildProcessError`
135* :exc:`ConnectionError`
136* :exc:`FileExistsError`
137* :exc:`FileNotFoundError`
138* :exc:`InterruptedError`
139* :exc:`IsADirectoryError`
140* :exc:`NotADirectoryError`
141* :exc:`PermissionError`
142* :exc:`ProcessLookupError`
143* :exc:`TimeoutError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200144
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200145And the :exc:`ConnectionError` itself has finer-grained subclasses:
Victor Stinnera1bf2982011-10-12 20:35:02 +0200146
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200147* :exc:`BrokenPipeError`
148* :exc:`ConnectionAbortedError`
149* :exc:`ConnectionRefusedError`
150* :exc:`ConnectionResetError`
Victor Stinnera1bf2982011-10-12 20:35:02 +0200151
152Thanks to the new exceptions, common usages of the :mod:`errno` can now be
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200153avoided. For example, the following code written for Python 3.2::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200154
155 from errno import ENOENT, EACCES, EPERM
156
157 try:
158 with open("document.txt") as f:
159 content = f.read()
160 except IOError as err:
161 if err.errno == ENOENT:
162 print("document.txt file is missing")
163 elif err.errno in (EACCES, EPERM):
164 print("You are not allowed to read document.txt")
165 else:
166 raise
167
Antoine Pitrou01fd26c2011-10-24 00:07:02 +0200168can now be written without the :mod:`errno` import and without manual
169inspection of exception attributes::
Victor Stinnera1bf2982011-10-12 20:35:02 +0200170
171 try:
172 with open("document.txt") as f:
173 content = f.read()
174 except FileNotFoundError:
175 print("document.txt file is missing")
176 except PermissionError:
177 print("You are not allowed to read document.txt")
178
179
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000180Other Language Changes
181======================
182
183Some smaller changes made to the core Python language are:
184
185* Stub
186
Ezio Melotti931b8aa2011-10-21 21:57:36 +0300187Added support for Unicode name aliases and named sequences.
Ezio Melotti2d99dac2011-10-24 00:44:03 +0300188Both :func:`unicodedata.lookup()` and ``'\N{...}'`` now resolve name aliases,
Ezio Melotti931b8aa2011-10-21 21:57:36 +0300189and :func:`unicodedata.lookup()` resolves named sequences too.
190
191(Contributed by Ezio Melotti in :issue:`12753`)
192
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000193
Mark Dickinson36645682011-10-23 19:53:01 +0100194Equality comparisons on :func:`range` objects now return a result reflecting
195the equality of the underlying sequences generated by those range objects.
196
197(:issue:`13021`)
198
199
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000200New, Improved, and Deprecated Modules
201=====================================
202
203* Stub
204
Meador Ingec5dbb3d2011-09-20 21:48:16 -0500205array
206-----
207
208The :mod:`array` module supports the :c:type:`long long` type using ``q`` and
209``Q`` type codes.
210
211(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`)
212
213
Victor Stinner2cded9c2011-07-08 01:45:13 +0200214codecs
215------
216
Victor Stinner3a50e702011-10-18 21:21:00 +0200217The :mod:`~encodings.mbcs` codec has be rewritten to handle correclty
218``replace`` and ``ignore`` error handlers on all Windows versions. The
219:mod:`~encodings.mbcs` codec is now supporting all error handlers, instead of
220only ``replace`` to encode and ``ignore`` to decode.
221
Victor Stinner2cded9c2011-07-08 01:45:13 +0200222Multibyte CJK decoders now resynchronize faster. They only ignore the first
Georg Brandl6c0929b2011-07-09 11:43:33 +0200223byte of an invalid byte sequence. For example, ``b'\xff\n'.decode('gb2312',
224'replace')`` now returns a ``\n`` after the replacement character.
Victor Stinner2cded9c2011-07-08 01:45:13 +0200225
Georg Brandl6c0929b2011-07-09 11:43:33 +0200226(:issue:`12016`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200227
228Don't reset incremental encoders of CJK codecs at each call to their encode()
Georg Brandl6c0929b2011-07-09 11:43:33 +0200229method anymore. For example::
Victor Stinner2cded9c2011-07-08 01:45:13 +0200230
231 $ ./python -q
232 >>> import codecs
233 >>> encoder = codecs.getincrementalencoder('hz')('strict')
234 >>> b''.join(encoder.encode(x) for x in '\u52ff\u65bd\u65bc\u4eba\u3002 Bye.')
235 b'~{NpJ)l6HK!#~} Bye.'
236
Georg Brandl6c0929b2011-07-09 11:43:33 +0200237This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older Python
Victor Stinner2cded9c2011-07-08 01:45:13 +0200238versions.
239
Georg Brandl6c0929b2011-07-09 11:43:33 +0200240(:issue:`12100`)
Victor Stinner2cded9c2011-07-08 01:45:13 +0200241
Éric Araujo84b8ed82011-08-29 21:42:47 +0200242crypt
243-----
244
Victor Stinnerc78fb332011-09-21 03:35:44 +0200245Addition of salt and modular crypt format and the :func:`~crypt.mksalt`
246function to the :mod:`crypt` module.
Éric Araujo84b8ed82011-08-29 21:42:47 +0200247
248(:issue:`10924`)
249
Victor Stinnera7878b72011-07-14 23:07:44 +0200250curses
251------
252
Victor Stinnerc78fb332011-09-21 03:35:44 +0200253 * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
254 method to get a wide character
255 * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
256 push a wide character so the next :meth:`~curses.window.get_wch` will return
257 it
Victor Stinnera7878b72011-07-14 23:07:44 +0200258
Victor Stinnerc78fb332011-09-21 03:35:44 +0200259(Contributed by Iñigo Serna in :issue:`6755`)
Victor Stinnera7878b72011-07-14 23:07:44 +0200260
Victor Stinner024e37a2011-03-31 01:31:06 +0200261faulthandler
262------------
263
264New module: :mod:`faulthandler`.
265
266 * :envvar:`PYTHONFAULTHANDLER`
267 * :option:`-X` ``faulthandler``
268
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200269
Victor Stinner811db3b2011-09-21 03:20:03 +0200270ftplib
271------
272
273The :class:`~ftplib.FTP_TLS` class now provides a new
274:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
Florent Xicluna6d57d212011-10-23 22:23:57 +0200275plaintext. This can be useful to take advantage of firewalls that know how to
Victor Stinner811db3b2011-09-21 03:20:03 +0200276handle NAT with non-secure FTP without opening fixed ports.
277
278(Contributed by Giampaolo Rodolà in :issue:`12139`)
279
280
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200281math
282----
283
284The :mod:`math` module has a new function:
285
286 * :func:`~math.log2`: return the base-2 logarithm of *x*
287 (Written by Mark Dickinson in :issue:`11888`).
288
289
290nntplib
291-------
292
293The :class:`nntplib.NNTP` class now supports the context manager protocol to
294unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
295connection when done::
296
297 >>> from nntplib import NNTP
Ezio Melotti3c14b4e2011-07-13 11:44:44 +0300298 >>> with NNTP('news.gmane.org') as n:
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200299 ... n.group('gmane.comp.python.committers')
300 ...
Ezio Melotti04f648c2011-07-26 09:37:46 +0300301 ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers')
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200302 >>>
303
304(Contributed by Giampaolo Rodolà in :issue:`9795`)
305
306
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000307os
308--
309
Charles-François Natalia003af12011-06-01 20:30:52 +0200310* The :mod:`os` module has a new :func:`~os.pipe2` function that makes it
311 possible to create a pipe with :data:`~os.O_CLOEXEC` or
312 :data:`~os.O_NONBLOCK` flags set atomically. This is especially useful to
313 avoid race conditions in multi-threaded programs.
314
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000315* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
316 an efficent "zero-copy" way for copying data from one file (or socket)
317 descriptor to another. The phrase "zero-copy" refers to the fact that all of
318 the copying of data between the two descriptors is done entirely by the
319 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
320 can be used to efficiently copy data from a file on disk to a network socket,
321 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000322
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000323 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
324
325* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
326 :func:`~os.setpriority`. They can be used to get or set process
327 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
328 processes instead of just the current one.
329
330 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000331
Victor Stinnere5064372011-10-14 00:08:29 +0200332* "at" functions (:issue:`4761`):
333
334 * :func:`~os.faccessat`
335 * :func:`~os.fchmodat`
336 * :func:`~os.fchownat`
337 * :func:`~os.fstatat`
338 * :func:`~os.futimesat`
339 * :func:`~os.futimesat`
340 * :func:`~os.linkat`
341 * :func:`~os.mkdirat`
342 * :func:`~os.mkfifoat`
343 * :func:`~os.mknodat`
344 * :func:`~os.openat`
345 * :func:`~os.readlinkat`
346 * :func:`~os.renameat`
347 * :func:`~os.symlinkat`
348 * :func:`~os.unlinkat`
349 * :func:`~os.utimensat`
350 * :func:`~os.utimensat`
351
352* extended attributes (:issue:`12720`):
353
354 * :func:`~os.fgetxattr`
355 * :func:`~os.flistxattr`
356 * :func:`~os.fremovexattr`
357 * :func:`~os.fsetxattr`
358 * :func:`~os.getxattr`
359 * :func:`~os.lgetxattr`
360 * :func:`~os.listxattr`
361 * :func:`~os.llistxattr`
362 * :func:`~os.lremovexattr`
363 * :func:`~os.lsetxattr`
364 * :func:`~os.removexattr`
365 * :func:`~os.setxattr`
366
367* Scheduler functions (:issue:`12655`):
368
369 * :func:`~os.sched_get_priority_max`
370 * :func:`~os.sched_get_priority_min`
371 * :func:`~os.sched_getaffinity`
372 * :func:`~os.sched_getparam`
373 * :func:`~os.sched_getscheduler`
374 * :func:`~os.sched_rr_get_interval`
375 * :func:`~os.sched_setaffinity`
376 * :func:`~os.sched_setparam`
377 * :func:`~os.sched_setscheduler`
378 * :func:`~os.sched_yield`
379
380* Add some extra posix functions to the os module (:issue:`10812`):
381
382 * :func:`~os.fexecve`
383 * :func:`~os.futimens`
384 * :func:`~os.futimens`
385 * :func:`~os.futimes`
386 * :func:`~os.futimes`
387 * :func:`~os.lockf`
388 * :func:`~os.lutimes`
389 * :func:`~os.lutimes`
390 * :func:`~os.posix_fadvise`
391 * :func:`~os.posix_fallocate`
392 * :func:`~os.pread`
393 * :func:`~os.pwrite`
394 * :func:`~os.readv`
395 * :func:`~os.sync`
396 * :func:`~os.truncate`
397 * :func:`~os.waitid`
398 * :func:`~os.writev`
399
400* Other new functions:
401
402 * :func:`~os.fdlistdir` (:issue:`10755`)
403 * :func:`~os.getgrouplist` (:issue:`9344`)
404
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000405
Éric Araujo765e94f2011-06-03 17:26:59 +0200406packaging
407---------
408
409:mod:`distutils` has undergone additions and refactoring under a new name,
410:mod:`packaging`, to allow developers to break backward compatibility.
411:mod:`distutils` is still provided in the standard library, but users are
412encouraged to transition to :mod:`packaging`. For older versions of Python, a
413backport compatible with 2.4+ and 3.1+ will be made available on PyPI under the
414name :mod:`distutils2`.
415
416.. TODO add examples and howto to the packaging docs and link to them
417
418
Victor Stinner383c3fc2011-05-25 01:35:05 +0200419pydoc
420-----
421
Victor Stinner6daa33c2011-05-25 01:41:22 +0200422The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
423:mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been deprecated
424in Python 3.2.
Victor Stinner383c3fc2011-05-25 01:35:05 +0200425
426
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200427sys
428---
Victor Stinner754851f2011-04-19 23:58:51 +0200429
Éric Araujo84b8ed82011-08-29 21:42:47 +0200430* The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
Victor Stinnerd5c355c2011-04-30 14:53:09 +0200431 sequence` holding informations about the thread implementation.
Victor Stinner754851f2011-04-19 23:58:51 +0200432
Georg Brandl00db5822011-04-30 15:30:03 +0200433 (:issue:`11223`)
Victor Stinnera9293352011-04-30 15:21:58 +0200434
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200435
Victor Stinnera9293352011-04-30 15:21:58 +0200436signal
437------
438
Victor Stinnerfa0e3d52011-05-09 01:01:09 +0200439* The :mod:`signal` module has new functions:
Victor Stinnera9293352011-04-30 15:21:58 +0200440
Victor Stinnerb3e72192011-05-08 01:46:11 +0200441 * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the
442 calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ;
443 * :func:`~signal.pthread_kill`: send a signal to a thread ;
444 * :func:`~signal.sigpending`: examine pending functions ;
445 * :func:`~signal.sigwait`: wait a signal.
Ross Lagerwallbc808222011-06-25 12:13:40 +0200446 * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
447 information about it.
448 * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
449 timeout.
Victor Stinnera9293352011-04-30 15:21:58 +0200450
Victor Stinnerd49b1f12011-05-08 02:03:15 +0200451* The signal handler writes the signal number as a single byte instead of
452 a nul byte into the wakeup file descriptor. So it is possible to wait more
453 than one signal and know which signals were raised.
454
Victor Stinner388196e2011-05-10 17:13:00 +0200455* :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
456 instead of a RuntimeError: OSError has an errno attribute.
457
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000458socket
459------
460
Charles-François Natali47413c12011-10-06 19:47:44 +0200461* The :class:`~socket.socket` class now exposes additional methods to process
462 ancillary data when supported by the underlying platform:
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000463
Charles-François Natali47413c12011-10-06 19:47:44 +0200464 * :func:`~socket.socket.sendmsg`
465 * :func:`~socket.socket.recvmsg`
466 * :func:`~socket.socket.recvmsg_into`
Nick Coghlan96fe56a2011-08-22 11:55:57 +1000467
Charles-François Natali47413c12011-10-06 19:47:44 +0200468 (Contributed by David Watson in :issue:`6560`, based on an earlier patch by
469 Heiko Wundram)
470
471* The :class:`~socket.socket` class now supports the PF_CAN protocol family
472 (http://en.wikipedia.org/wiki/Socketcan), on Linux
473 (http://lwn.net/Articles/253425).
474
475 (Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:`10141`)
476
Victor Stinner754851f2011-04-19 23:58:51 +0200477
Victor Stinner99c8b162011-05-24 12:05:19 +0200478ssl
479---
480
481The :mod:`ssl` module has new functions:
482
483 * :func:`~ssl.RAND_bytes`: generate cryptographically strong
484 pseudo-random bytes.
485 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
486
487
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200488shutil
489------
490
Sandro Tosiaec2f212011-08-23 00:58:21 +0200491* The :mod:`shutil` module has these new fuctions:
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +0200492
Sandro Tosiaec2f212011-08-23 00:58:21 +0200493 * :func:`~shutil.disk_usage`: provides total, used and free disk space
494 statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`)
495 * :func:`~shutil.chown`: allows one to change user and/or group of the given
496 path also specifying the user/group names and not only their numeric
497 ids. (Contributed by Sandro Tosi in :issue:`12191`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200498
Senthil Kumarande49d642011-10-16 23:54:44 +0800499urllib
500------
501
502The :class:`~urllib.request.Request` class, now accepts a *method* argument
503used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
Senthil Kumarana41c9422011-10-20 02:37:08 +0800504should be used. For example, this will send a ``'HEAD'`` request::
Senthil Kumarande49d642011-10-16 23:54:44 +0800505
506 >>> urlopen(Request('http://www.python.org', method='HEAD'))
507
508(:issue:`1673007`)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200509
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000510Optimizations
511=============
512
513Major performance enhancements have been added:
514
515* Stub
516
517
518Build and C API Changes
519=======================
520
521Changes to Python's build process and to the C API include:
522
523* Stub
524
525
Georg Brandl0cd25c92011-04-29 13:45:54 +0200526Unsupported Operating Systems
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200527=============================
528
Brian Curtin49a40cd2011-05-02 22:30:06 -0500529OS/2 and VMS are no longer supported due to the lack of a maintainer.
530
531Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com``
532are no longer supported due to maintenance burden.
Victor Stinnerb90db4c2011-04-26 22:48:24 +0200533
534
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000535Porting to Python 3.3
536=====================
537
538This section lists previously described changes and other bugfixes
539that may require changes to your code:
540
Victor Stinnerff3d9392011-08-20 23:39:26 +0200541* Issue #12326: On Linux, sys.platform doesn't contain the major version
542 anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
543 on the Linux version used to build Python. Replace sys.platform == 'linux2'
544 with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
545 you don't need to support older Python versions.
Éric Araujoc09fca62011-03-23 02:06:24 +0100546
547.. Issue #11591: When :program:`python` was started with :option:`-S`,
548 ``import site`` will not add site-specific paths to the module search
549 paths. In previous versions, it did. See changeset for doc changes in
550 various files. Contributed by Carl Meyer with editions by Éric Araujo.
Éric Araujobe3bd572011-03-26 01:55:15 +0100551
552.. Issue #10998: -Q command-line flags are related artifacts have been
553 removed. Code checking sys.flags.division_warning will need updating.
554 Contributed by Éric Araujo.
Victor Stinner7d637ab2011-09-29 02:56:16 +0200555
556* :pep:`393`: The :c:type:`Py_UNICODE` type and all functions using this type
557 are deprecated. To fully benefit of the memory footprint reduction provided
558 by the PEP 393, you have to convert your code to the new Unicode API. Read
559 the porting guide: XXX.
560