blob: aba61da5f7c313c378fb617a49d2cd1dd92b810f [file] [log] [blame]
Georg Brandlf5f26302008-08-08 06:50:56 +00001.. _tut-errors:
Georg Brandl116aa622007-08-15 14:28:22 +00002
3*********************
4Errors and Exceptions
5*********************
6
7Until now error messages haven't been more than mentioned, but if you have tried
8out the examples you have probably seen some. There are (at least) two
9distinguishable kinds of errors: *syntax errors* and *exceptions*.
10
11
12.. _tut-syntaxerrors:
13
14Syntax Errors
15=============
16
17Syntax errors, also known as parsing errors, are perhaps the most common kind of
18complaint you get while you are still learning Python::
19
Guido van Rossum0616b792007-08-31 03:25:11 +000020 >>> while True print('Hello world')
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -040021 File "<stdin>", line 1
Guido van Rossum0616b792007-08-31 03:25:11 +000022 while True print('Hello world')
Georg Brandl116aa622007-08-15 14:28:22 +000023 ^
24 SyntaxError: invalid syntax
25
26The parser repeats the offending line and displays a little 'arrow' pointing at
27the earliest point in the line where the error was detected. The error is
28caused by (or at least detected at) the token *preceding* the arrow: in the
Georg Brandl6911e3c2007-09-04 07:15:32 +000029example, the error is detected at the function :func:`print`, since a colon
Georg Brandl116aa622007-08-15 14:28:22 +000030(``':'``) is missing before it. File name and line number are printed so you
31know where to look in case the input came from a script.
32
33
34.. _tut-exceptions:
35
36Exceptions
37==========
38
39Even if a statement or expression is syntactically correct, it may cause an
40error when an attempt is made to execute it. Errors detected during execution
41are called *exceptions* and are not unconditionally fatal: you will soon learn
42how to handle them in Python programs. Most exceptions are not handled by
43programs, however, and result in error messages as shown here::
44
45 >>> 10 * (1/0)
46 Traceback (most recent call last):
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -040047 File "<stdin>", line 1, in <module>
Georg Brandl53bf15a2013-10-06 09:11:14 +020048 ZeroDivisionError: division by zero
Georg Brandl116aa622007-08-15 14:28:22 +000049 >>> 4 + spam*3
50 Traceback (most recent call last):
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -040051 File "<stdin>", line 1, in <module>
Georg Brandl116aa622007-08-15 14:28:22 +000052 NameError: name 'spam' is not defined
53 >>> '2' + 2
54 Traceback (most recent call last):
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -040055 File "<stdin>", line 1, in <module>
Georg Brandl397ad862009-05-17 08:14:39 +000056 TypeError: Can't convert 'int' object to str implicitly
Georg Brandl116aa622007-08-15 14:28:22 +000057
58The last line of the error message indicates what happened. Exceptions come in
59different types, and the type is printed as part of the message: the types in
60the example are :exc:`ZeroDivisionError`, :exc:`NameError` and :exc:`TypeError`.
61The string printed as the exception type is the name of the built-in exception
62that occurred. This is true for all built-in exceptions, but need not be true
63for user-defined exceptions (although it is a useful convention). Standard
64exception names are built-in identifiers (not reserved keywords).
65
66The rest of the line provides detail based on the type of exception and what
67caused it.
68
69The preceding part of the error message shows the context where the exception
70happened, in the form of a stack traceback. In general it contains a stack
71traceback listing source lines; however, it will not display lines read from
72standard input.
73
74:ref:`bltin-exceptions` lists the built-in exceptions and their meanings.
75
76
77.. _tut-handling:
78
79Handling Exceptions
80===================
81
82It is possible to write programs that handle selected exceptions. Look at the
83following example, which asks the user for input until a valid integer has been
84entered, but allows the user to interrupt the program (using :kbd:`Control-C` or
85whatever the operating system supports); note that a user-generated interruption
86is signalled by raising the :exc:`KeyboardInterrupt` exception. ::
87
Georg Brandl116aa622007-08-15 14:28:22 +000088 >>> while True:
89 ... try:
Georg Brandle9af2842007-08-17 05:54:09 +000090 ... x = int(input("Please enter a number: "))
Georg Brandl116aa622007-08-15 14:28:22 +000091 ... break
92 ... except ValueError:
Guido van Rossum0616b792007-08-31 03:25:11 +000093 ... print("Oops! That was no valid number. Try again...")
Georg Brandl48310cd2009-01-03 21:18:54 +000094 ...
Georg Brandl116aa622007-08-15 14:28:22 +000095
96The :keyword:`try` statement works as follows.
97
98* First, the *try clause* (the statement(s) between the :keyword:`try` and
99 :keyword:`except` keywords) is executed.
100
101* If no exception occurs, the *except clause* is skipped and execution of the
102 :keyword:`try` statement is finished.
103
104* If an exception occurs during execution of the try clause, the rest of the
105 clause is skipped. Then if its type matches the exception named after the
106 :keyword:`except` keyword, the except clause is executed, and then execution
107 continues after the :keyword:`try` statement.
108
109* If an exception occurs which does not match the exception named in the except
110 clause, it is passed on to outer :keyword:`try` statements; if no handler is
111 found, it is an *unhandled exception* and execution stops with a message as
112 shown above.
113
114A :keyword:`try` statement may have more than one except clause, to specify
115handlers for different exceptions. At most one handler will be executed.
116Handlers only handle exceptions that occur in the corresponding try clause, not
117in other handlers of the same :keyword:`try` statement. An except clause may
Collin Winterd2e44df2007-09-27 21:28:21 +0000118name multiple exceptions as a parenthesized tuple, for example::
Georg Brandl116aa622007-08-15 14:28:22 +0000119
Collin Winterd2e44df2007-09-27 21:28:21 +0000120 ... except (RuntimeError, TypeError, NameError):
Georg Brandl116aa622007-08-15 14:28:22 +0000121 ... pass
122
Berker Peksagcea632e2016-11-06 21:15:01 +0300123A class in an :keyword:`except` clause is compatible with an exception if it is
124the same class or a base class thereof (but not the other way around --- an
125except clause listing a derived class is not compatible with a base class). For
126example, the following code will print B, C, D in that order::
127
128 class B(Exception):
129 pass
130
131 class C(B):
132 pass
133
134 class D(C):
135 pass
136
137 for cls in [B, C, D]:
138 try:
139 raise cls()
140 except D:
141 print("D")
142 except C:
143 print("C")
144 except B:
145 print("B")
146
147Note that if the except clauses were reversed (with ``except B`` first), it
148would have printed B, B, B --- the first matching except clause is triggered.
149
Georg Brandl116aa622007-08-15 14:28:22 +0000150The last except clause may omit the exception name(s), to serve as a wildcard.
151Use this with extreme caution, since it is easy to mask a real programming error
152in this way! It can also be used to print an error message and then re-raise
153the exception (allowing a caller to handle the exception as well)::
154
155 import sys
156
157 try:
158 f = open('myfile.txt')
159 s = f.readline()
160 i = int(s.strip())
Andrew Svetlov08af0002014-04-01 01:13:30 +0300161 except OSError as err:
162 print("OS error: {0}".format(err))
Georg Brandl116aa622007-08-15 14:28:22 +0000163 except ValueError:
Guido van Rossum0616b792007-08-31 03:25:11 +0000164 print("Could not convert data to an integer.")
Georg Brandl116aa622007-08-15 14:28:22 +0000165 except:
Guido van Rossum0616b792007-08-31 03:25:11 +0000166 print("Unexpected error:", sys.exc_info()[0])
Georg Brandl116aa622007-08-15 14:28:22 +0000167 raise
168
169The :keyword:`try` ... :keyword:`except` statement has an optional *else
170clause*, which, when present, must follow all except clauses. It is useful for
171code that must be executed if the try clause does not raise an exception. For
172example::
173
174 for arg in sys.argv[1:]:
175 try:
176 f = open(arg, 'r')
Kushal Dasecbca352016-11-16 21:13:43 +0530177 except OSError:
Guido van Rossum0616b792007-08-31 03:25:11 +0000178 print('cannot open', arg)
Georg Brandl116aa622007-08-15 14:28:22 +0000179 else:
Guido van Rossum0616b792007-08-31 03:25:11 +0000180 print(arg, 'has', len(f.readlines()), 'lines')
Georg Brandl116aa622007-08-15 14:28:22 +0000181 f.close()
182
183The use of the :keyword:`else` clause is better than adding additional code to
184the :keyword:`try` clause because it avoids accidentally catching an exception
185that wasn't raised by the code being protected by the :keyword:`try` ...
186:keyword:`except` statement.
187
188When an exception occurs, it may have an associated value, also known as the
189exception's *argument*. The presence and type of the argument depend on the
190exception type.
191
Georg Brandlf5f26302008-08-08 06:50:56 +0000192The except clause may specify a variable after the exception name. The
193variable is bound to an exception instance with the arguments stored in
Georg Brandl116aa622007-08-15 14:28:22 +0000194``instance.args``. For convenience, the exception instance defines
Georg Brandlf5f26302008-08-08 06:50:56 +0000195:meth:`__str__` so the arguments can be printed directly without having to
196reference ``.args``. One may also instantiate an exception first before
197raising it and add any attributes to it as desired. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000198
199 >>> try:
Serhiy Storchakadba90392016-05-10 12:01:23 +0300200 ... raise Exception('spam', 'eggs')
Georg Brandl116aa622007-08-15 14:28:22 +0000201 ... except Exception as inst:
Serhiy Storchakadba90392016-05-10 12:01:23 +0300202 ... print(type(inst)) # the exception instance
203 ... print(inst.args) # arguments stored in .args
204 ... print(inst) # __str__ allows args to be printed directly,
205 ... # but may be overridden in exception subclasses
206 ... x, y = inst.args # unpack args
207 ... print('x =', x)
208 ... print('y =', y)
Georg Brandl116aa622007-08-15 14:28:22 +0000209 ...
Martin v. Löwis250ad612008-04-07 05:43:42 +0000210 <class 'Exception'>
Georg Brandl116aa622007-08-15 14:28:22 +0000211 ('spam', 'eggs')
212 ('spam', 'eggs')
213 x = spam
214 y = eggs
215
Georg Brandlf5f26302008-08-08 06:50:56 +0000216If an exception has arguments, they are printed as the last part ('detail') of
Georg Brandl116aa622007-08-15 14:28:22 +0000217the message for unhandled exceptions.
218
219Exception handlers don't just handle exceptions if they occur immediately in the
220try clause, but also if they occur inside functions that are called (even
221indirectly) in the try clause. For example::
222
223 >>> def this_fails():
224 ... x = 1/0
Georg Brandl48310cd2009-01-03 21:18:54 +0000225 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000226 >>> try:
227 ... this_fails()
Georg Brandlf5f26302008-08-08 06:50:56 +0000228 ... except ZeroDivisionError as err:
229 ... print('Handling run-time error:', err)
Georg Brandl48310cd2009-01-03 21:18:54 +0000230 ...
Berker Peksagcf79cdb2016-09-28 22:48:57 +0300231 Handling run-time error: division by zero
Georg Brandl116aa622007-08-15 14:28:22 +0000232
233
234.. _tut-raising:
235
236Raising Exceptions
237==================
238
239The :keyword:`raise` statement allows the programmer to force a specified
240exception to occur. For example::
241
Collin Winter596d99a2007-09-10 00:31:50 +0000242 >>> raise NameError('HiThere')
Georg Brandl116aa622007-08-15 14:28:22 +0000243 Traceback (most recent call last):
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -0400244 File "<stdin>", line 1, in <module>
Georg Brandl116aa622007-08-15 14:28:22 +0000245 NameError: HiThere
246
Collin Winterc7526f52007-09-10 00:36:57 +0000247The sole argument to :keyword:`raise` indicates the exception to be raised.
248This must be either an exception instance or an exception class (a class that
Berker Peksagcea632e2016-11-06 21:15:01 +0300249derives from :class:`Exception`). If an exception class is passed, it will
250be implicitly instantiated by calling its constructor with no arguments::
251
252 raise ValueError # shorthand for 'raise ValueError()'
Georg Brandl116aa622007-08-15 14:28:22 +0000253
254If you need to determine whether an exception was raised but don't intend to
255handle it, a simpler form of the :keyword:`raise` statement allows you to
256re-raise the exception::
257
258 >>> try:
Collin Winter596d99a2007-09-10 00:31:50 +0000259 ... raise NameError('HiThere')
Georg Brandl116aa622007-08-15 14:28:22 +0000260 ... except NameError:
Guido van Rossum0616b792007-08-31 03:25:11 +0000261 ... print('An exception flew by!')
Georg Brandl116aa622007-08-15 14:28:22 +0000262 ... raise
263 ...
264 An exception flew by!
265 Traceback (most recent call last):
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -0400266 File "<stdin>", line 2, in <module>
Georg Brandl116aa622007-08-15 14:28:22 +0000267 NameError: HiThere
268
269
270.. _tut-userexceptions:
271
272User-defined Exceptions
273=======================
274
Georg Brandlee8783d2009-09-16 16:00:31 +0000275Programs may name their own exceptions by creating a new exception class (see
276:ref:`tut-classes` for more about Python classes). Exceptions should typically
Raymond Hettinger7f65af32016-08-12 09:43:59 -0700277be derived from the :exc:`Exception` class, either directly or indirectly.
Georg Brandl116aa622007-08-15 14:28:22 +0000278
279Exception classes can be defined which do anything any other class can do, but
280are usually kept simple, often only offering a number of attributes that allow
281information about the error to be extracted by handlers for the exception. When
282creating a module that can raise several distinct errors, a common practice is
283to create a base class for exceptions defined by that module, and subclass that
284to create specific exception classes for different error conditions::
285
286 class Error(Exception):
287 """Base class for exceptions in this module."""
288 pass
289
290 class InputError(Error):
291 """Exception raised for errors in the input.
292
293 Attributes:
294 expression -- input expression in which the error occurred
295 message -- explanation of the error
296 """
297
298 def __init__(self, expression, message):
299 self.expression = expression
300 self.message = message
301
302 class TransitionError(Error):
303 """Raised when an operation attempts a state transition that's not
304 allowed.
305
306 Attributes:
307 previous -- state at beginning of transition
308 next -- attempted new state
309 message -- explanation of why the specific transition is not allowed
310 """
311
312 def __init__(self, previous, next, message):
313 self.previous = previous
314 self.next = next
315 self.message = message
316
317Most exceptions are defined with names that end in "Error," similar to the
318naming of the standard exceptions.
319
320Many standard modules define their own exceptions to report errors that may
321occur in functions they define. More information on classes is presented in
322chapter :ref:`tut-classes`.
323
324
325.. _tut-cleanup:
326
327Defining Clean-up Actions
328=========================
329
330The :keyword:`try` statement has another optional clause which is intended to
331define clean-up actions that must be executed under all circumstances. For
332example::
333
334 >>> try:
335 ... raise KeyboardInterrupt
336 ... finally:
Guido van Rossum0616b792007-08-31 03:25:11 +0000337 ... print('Goodbye, world!')
Georg Brandl48310cd2009-01-03 21:18:54 +0000338 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000339 Goodbye, world!
340 Traceback (most recent call last):
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -0400341 File "<stdin>", line 2, in <module>
Georg Brandl116aa622007-08-15 14:28:22 +0000342 KeyboardInterrupt
343
344A *finally clause* is always executed before leaving the :keyword:`try`
345statement, whether an exception has occurred or not. When an exception has
346occurred in the :keyword:`try` clause and has not been handled by an
Martin Panter7462b6492015-11-02 03:37:02 +0000347:keyword:`except` clause (or it has occurred in an :keyword:`except` or
Georg Brandl116aa622007-08-15 14:28:22 +0000348:keyword:`else` clause), it is re-raised after the :keyword:`finally` clause has
349been executed. The :keyword:`finally` clause is also executed "on the way out"
350when any other clause of the :keyword:`try` statement is left via a
351:keyword:`break`, :keyword:`continue` or :keyword:`return` statement. A more
Georg Brandle6bcc912008-05-12 18:05:20 +0000352complicated example::
Georg Brandl116aa622007-08-15 14:28:22 +0000353
354 >>> def divide(x, y):
355 ... try:
356 ... result = x / y
357 ... except ZeroDivisionError:
Guido van Rossum0616b792007-08-31 03:25:11 +0000358 ... print("division by zero!")
Georg Brandl116aa622007-08-15 14:28:22 +0000359 ... else:
Guido van Rossum0616b792007-08-31 03:25:11 +0000360 ... print("result is", result)
Georg Brandl116aa622007-08-15 14:28:22 +0000361 ... finally:
Guido van Rossum0616b792007-08-31 03:25:11 +0000362 ... print("executing finally clause")
Georg Brandl116aa622007-08-15 14:28:22 +0000363 ...
364 >>> divide(2, 1)
Georg Brandl397ad862009-05-17 08:14:39 +0000365 result is 2.0
Georg Brandl116aa622007-08-15 14:28:22 +0000366 executing finally clause
367 >>> divide(2, 0)
368 division by zero!
369 executing finally clause
370 >>> divide("2", "1")
371 executing finally clause
372 Traceback (most recent call last):
Terry Jan Reedy30eee4d2016-09-30 15:38:48 -0400373 File "<stdin>", line 1, in <module>
Georg Brandl116aa622007-08-15 14:28:22 +0000374 File "<stdin>", line 3, in divide
375 TypeError: unsupported operand type(s) for /: 'str' and 'str'
376
377As you can see, the :keyword:`finally` clause is executed in any event. The
378:exc:`TypeError` raised by dividing two strings is not handled by the
379:keyword:`except` clause and therefore re-raised after the :keyword:`finally`
Benjamin Peterson5478b472008-09-17 22:25:09 +0000380clause has been executed.
Georg Brandl116aa622007-08-15 14:28:22 +0000381
382In real world applications, the :keyword:`finally` clause is useful for
383releasing external resources (such as files or network connections), regardless
384of whether the use of the resource was successful.
385
386
387.. _tut-cleanup-with:
388
389Predefined Clean-up Actions
390===========================
391
392Some objects define standard clean-up actions to be undertaken when the object
393is no longer needed, regardless of whether or not the operation using the object
394succeeded or failed. Look at the following example, which tries to open a file
395and print its contents to the screen. ::
396
397 for line in open("myfile.txt"):
Andrew Svetlov09974b42012-12-08 17:59:03 +0200398 print(line, end="")
Georg Brandl116aa622007-08-15 14:28:22 +0000399
400The problem with this code is that it leaves the file open for an indeterminate
Georg Brandl48310cd2009-01-03 21:18:54 +0000401amount of time after this part of the code has finished executing.
402This is not an issue in simple scripts, but can be a problem for larger
403applications. The :keyword:`with` statement allows objects like files to be
Guido van Rossum0616b792007-08-31 03:25:11 +0000404used in a way that ensures they are always cleaned up promptly and correctly. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000405
406 with open("myfile.txt") as f:
407 for line in f:
Andrew Svetlov09974b42012-12-08 17:59:03 +0200408 print(line, end="")
Georg Brandl116aa622007-08-15 14:28:22 +0000409
410After the statement is executed, the file *f* is always closed, even if a
Guido van Rossum0616b792007-08-31 03:25:11 +0000411problem was encountered while processing the lines. Objects which, like files,
412provide predefined clean-up actions will indicate this in their documentation.
Georg Brandl116aa622007-08-15 14:28:22 +0000413
414