blob: 602b2b70e3bbd8320d9572ed5ca40c5b189effb8 [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
9.. $Id$
10 Rules for maintenance:
11
12 * Anyone can add text to this document. Do not spend very much time
13 on the wording of your changes, because your text will probably
14 get rewritten to some degree.
15
16 * The maintainer will go through Misc/NEWS periodically and add
17 changes; it's therefore more important to add your changes to
18 Misc/NEWS than to this file.
19
20 * This is not a complete list of every single change; completeness
21 is the purpose of Misc/NEWS. Some changes I consider too small
22 or esoteric to include. If such a change is added to the text,
23 I'll just remove it. (This is another reason you shouldn't spend
24 too much time on writing your addition.)
25
26 * If you want to draw your new text to the attention of the
27 maintainer, add 'XXX' to the beginning of the paragraph or
28 section.
29
30 * It's OK to just add a fragmentary note about a change. For
31 example: "XXX Describe the transmogrify() function added to the
32 socket module." The maintainer will research the change and
33 write the necessary text.
34
35 * You can comment out your additions if you like, but it's not
36 necessary (especially when a final release is some months away).
37
38 * Credit the author of a patch or bugfix. Just the name is
39 sufficient; the e-mail address isn't necessary.
40
41 * It's helpful to add the bug/patch number as a comment:
42
43 % Patch 12345
44 XXX Describe the transmogrify() function added to the socket
45 module.
46 (Contributed by P.Y. Developer.)
47
48 This saves the maintainer the effort of going through the SVN log
49 when researching a change.
50
51This article explains the new features in Python 3.3, compared to 3.2.
52
53
54PEP XXX: Stub
55=============
56
57
58Other Language Changes
59======================
60
61Some smaller changes made to the core Python language are:
62
63* Stub
64
65
66New, Improved, and Deprecated Modules
67=====================================
68
69* Stub
70
Victor Stinner024e37a2011-03-31 01:31:06 +020071faulthandler
72------------
73
74New module: :mod:`faulthandler`.
75
76 * :envvar:`PYTHONFAULTHANDLER`
77 * :option:`-X` ``faulthandler``
78
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +000079os
80--
81
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +000082* The :mod:`os` module has a new :func:`~os.sendfile` function which provides
83 an efficent "zero-copy" way for copying data from one file (or socket)
84 descriptor to another. The phrase "zero-copy" refers to the fact that all of
85 the copying of data between the two descriptors is done entirely by the
86 kernel, with no copying of data into userspace buffers. :func:`~os.sendfile`
87 can be used to efficiently copy data from a file on disk to a network socket,
88 e.g. for downloading a file.
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +000089
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +000090 (Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)
91
92* The :mod:`os` module has two new functions: :func:`~os.getpriority` and
93 :func:`~os.setpriority`. They can be used to get or set process
94 niceness/priority in a fashion similar to :func:`os.nice` but extended to all
95 processes instead of just the current one.
96
97 (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
Giampaolo Rodolà3108f982011-02-24 20:59:48 +000098
Giampaolo Rodolà424298a2011-03-03 18:34:06 +000099nntplib
100-------
101
102The :class:`nntplib.NNTP` class now supports the context manager protocol to
103unconditionally consume :exc:`socket.error` exceptions and to close the NNTP
104connection when done::
105
106 >>> from nntplib import NNTP
107 >>> with nntplib.NNTP('news.gmane.org') as n:
108 ... n.group('gmane.comp.python.committers')
109 ...
110 ('211 1454 1 1454 gmane.comp.python.committers', '1454', '1', '1454', 'gmane.comp.python.committers')
111 >>>
112
113(Contributed by Giampaolo Rodolà in :issue:`9795`)
114
Giampaolo Rodolà3108f982011-02-24 20:59:48 +0000115Optimizations
116=============
117
118Major performance enhancements have been added:
119
120* Stub
121
122
123Build and C API Changes
124=======================
125
126Changes to Python's build process and to the C API include:
127
128* Stub
129
130
131Porting to Python 3.3
132=====================
133
134This section lists previously described changes and other bugfixes
135that may require changes to your code:
136
137* Stub
138
Éric Araujoc09fca62011-03-23 02:06:24 +0100139
140.. Issue #11591: When :program:`python` was started with :option:`-S`,
141 ``import site`` will not add site-specific paths to the module search
142 paths. In previous versions, it did. See changeset for doc changes in
143 various files. Contributed by Carl Meyer with editions by Éric Araujo.
Éric Araujobe3bd572011-03-26 01:55:15 +0100144
145.. Issue #10998: -Q command-line flags are related artifacts have been
146 removed. Code checking sys.flags.division_warning will need updating.
147 Contributed by Éric Araujo.