forked from python/peps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpep-3110.txt
309 lines (214 loc) · 8.27 KB
/
pep-3110.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
PEP: 3110
Title: Catching Exceptions in Python 3000
Version: $Revision$
Last-Modified: $Date$
Author: Collin Winter <[email protected]>
Status: Final
Type: Standards Track
Content-Type: text/x-rst
Created: 16-Jan-2006
Python-Version: 3.0
Post-History:
Abstract
========
This PEP introduces changes intended to help eliminate ambiguities
in Python's grammar, simplify exception classes, simplify garbage
collection for exceptions and reduce the size of the language in
Python 3.0.
Rationale
=========
1. ``except`` clauses in Python 2.x present a syntactic ambiguity
where the parser cannot differentiate whether ::
except <expression>, <expression>:
should be interpreted as ::
except <type>, <type>:
or ::
except <type>, <name>:
Python 2 opts for the latter semantic, at the cost of requiring the
former to be parenthesized, like so ::
except (<type>, <type>):
2. As specified in PEP 352 [#pep352]_, the ability to treat exceptions
as tuples will be removed, meaning this code will no longer work ::
except os.error, (errno, errstr):
Because the automatic unpacking will no longer be possible, it is
desirable to remove the ability to use tuples as ``except`` targets.
3. As specified in PEP 344 [#pep344]_, exception instances in Python 3
will possess a ``__traceback__`` attribute. The Open Issues section
of that PEP includes a paragraph on garbage collection difficulties
caused by this attribute, namely a "exception -> traceback ->
stack frame -> exception" reference cycle, whereby all locals are
kept in scope until the next GC run. This PEP intends to resolve
this issue by adding a cleanup semantic to ``except`` clauses in
Python 3 whereby the target name is deleted at the end of the
``except`` suite.
4. In the spirit of "there should be one -- and preferably only one
-- obvious way to do it" [#zen]_, it is desirable to consolidate
duplicate functionality. To this end, the ``exc_value``,
``exc_type`` and ``exc_traceback`` attributes of the ``sys``
module [#sys-module]_ will be removed in favor of
``sys.exc_info()``, which provides the same information. These
attributes are already listed in PEP 3100 [#pep3100]_ as targeted
for removal.
Grammar Changes
===============
In Python 3, the grammar for ``except`` statements will change
from [#grammar]_ ::
except_clause: 'except' [test [',' test]]
to ::
except_clause: 'except' [test ['as' NAME]]
The use of ``as`` in place of the comma token means that ::
except (AttributeError, os.error):
can be clearly understood as a tuple of exception classes. This new
syntax was first proposed by Greg Ewing [#firstproposal]_ and
endorsed ([#firstproposal]_, [#renaming]_) by the BDFL.
Further, the restriction of the token following ``as`` from ``test``
to ``NAME`` means that only valid identifiers can be used as
``except`` targets.
Note that the grammar above always requires parenthesized tuples as
exception clases. That way, the ambiguous ::
except A, B:
which would mean different things in Python 2.x and 3.x -- leading to
hard-to-catch bugs -- cannot legally occur in 3.x code.
Semantic Changes
================
In order to resolve the garbage collection issue related to PEP 344,
``except`` statements in Python 3 will generate additional bytecode to
delete the target, thus eliminating the reference cycle.
The source-to-source translation, as suggested by Phillip J. Eby
[#except-translation]_, is ::
try:
try_body
except E as N:
except_body
...
gets translated to (in Python 2.5 terms) ::
try:
try_body
except E, N:
try:
except_body
finally:
N = None
del N
...
An implementation has already been checked into the py3k (formerly
"p3yk") branch [#translation-checkin]_.
Compatibility Issues
====================
Nearly all ``except`` clauses will need to be changed. ``except``
clauses with identifier targets will be converted from ::
except E, N:
to ::
except E as N:
``except`` clauses with non-tuple, non-identifier targets
(e.g., ``a.b.c[d]``) will need to be converted from ::
except E, T:
to ::
except E as t:
T = t
Both of these cases can be handled by Guido van Rossum's ``2to3``
utility [#2to3]_ using the ``except`` fixer [#exceptfixer]_.
``except`` clauses with tuple targets will need to be converted
manually, on a case-by-case basis. These changes will usually need
to be accompanied by changes to the exception classes themselves.
While these changes generally cannot be automated, the ``2to3``
utility is able to point out cases where the target of an ``except``
clause is a tuple, simplifying conversion.
Situations where it is necessary to keep an exception instance around
past the end of the ``except`` suite can be easily translated like so
::
try:
...
except E as N:
...
...
becomes ::
try:
...
except E as N:
n = N
...
...
This way, when ``N`` is deleted at the end of the block, ``n`` will
persist and can be used as normal.
Lastly, all uses of the ``sys`` module's ``exc_type``, ``exc_value``
and ``exc_traceback`` attributes will need to be removed. They can be
replaced with ``sys.exc_info()[0]``, ``sys.exc_info()[1]`` and
``sys.exc_info()[2]`` respectively, a transformation that can be
performed by ``2to3``'s ``sysexcattrs`` fixer.
2.6 - 3.0 Compatibility
-----------------------
In order to facilitate forwards compatibility between Python 2.6 and 3.0,
the ``except ... as ...:`` syntax will be backported to the 2.x series. The
grammar will thus change from::
except_clause: 'except' [test [',' test]]
to::
except_clause: 'except' [test [('as' | ',') test]]
The end-of-suite cleanup semantic for ``except`` statements will not be
included in the 2.x series of releases.
Open Issues
===========
Replacing or Dropping "sys.exc_info()"
--------------------------------------
The idea of dropping ``sys.exc_info()`` or replacing it with a
``sys.exception`` attribute or a ``sys.get_exception()`` function
has been raised several times on python-3000 ([#drop-excinfo]_,
[#replace-excinfo]_) and mentioned in PEP 344's "Open Issues" section.
While a ``2to3`` fixer to replace calls to ``sys.exc_info()``
and some attribute accesses would be trivial, it would be far more
difficult for static analysis to find and fix functions that expect
the values from ``sys.exc_info()`` as arguments. Similarly, this does
not address the need to rewrite the documentation for all APIs that
are defined in terms of ``sys.exc_info()``.
Implementation
==============
This PEP was implemented in revisions 53342 [#r53342]_ and 53349
[#r53349]_. Support for the new ``except`` syntax in 2.6 was
implemented in revision 55446 [#r55446]_.
References
==========
.. [#pep352]
http://www.python.org/dev/peps/pep-0352/
.. [#zen]
http://www.python.org/dev/peps/pep-0020/
.. [#sys-module]
http://docs.python.org/library/sys.html
.. [#pep3100]
http://www.python.org/dev/peps/pep-3100/
.. [#pep344]
http://www.python.org/dev/peps/pep-0344/
.. [#firstproposal]
https://mail.python.org/pipermail/python-dev/2006-March/062449.html
.. [#renaming]
https://mail.python.org/pipermail/python-dev/2006-March/062640.html
.. [#grammar]
http://docs.python.org/reference/compound_stmts.html#try
.. [#except-translation]
https://mail.python.org/pipermail/python-3000/2007-January/005395.html
.. [#translation-checkin]
http://svn.python.org/view?rev=53342&view=rev
.. [#2to3]
https://hg.python.org/sandbox/guido/file/2.7/Lib/lib2to3/
.. [#exceptfixer]
https://hg.python.org/sandbox/guido/file/2.7/Lib/lib2to3/fixes/fix_except.py
.. [#drop-excinfo]
https://mail.python.org/pipermail/python-3000/2007-January/005385.html
.. [#replace-excinfo]
https://mail.python.org/pipermail/python-3000/2007-January/005604.html
.. [#r53342]
http://svn.python.org/view?view=revision&revision=53342
.. [#r53349]
http://svn.python.org/view?view=revision&revision=53349
.. [#r55446]
http://svn.python.org/view/python/trunk/?view=rev&rev=55446
Copyright
=========
This document has been placed in the public domain.
..
Local Variables:
mode: indented-text
indent-tabs-mode: nil
sentence-end-double-space: t
fill-column: 70
coding: utf-8
End: