File: test_exceptions.py

package info (click to toggle)
jython 2.1.0-20
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,388 kB
  • ctags: 12,215
  • sloc: java: 48,499; python: 16,220; xml: 403; makefile: 189; perl: 103; ansic: 24; sh: 14
file content (67 lines) | stat: -rw-r--r-- 1,072 bytes parent folder | download | duplicates (3)
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
# Python test set -- part 5, built-in exceptions

from test_support import *
from types import ClassType

print_test('Standard exceptions', 1)

def r(thing):
    if type(thing) == ClassType:
        print_test(thing.__name__, 2)
    else:
        print_test(thing, 2)

r(AttributeError)
import sys
try: x = sys.undefined_attribute
except AttributeError: pass

r(IOError)
try: open('this file does not exist', 'r')
except IOError: pass

r(ImportError)
try: import undefined_module
except ImportError: pass

r(IndexError)
x = []
try: a = x[10]
except IndexError: pass

r(KeyError)
x = {}
try: a = x['key']
except KeyError: pass

r(NameError)
try: x = undefined_variable
except NameError: pass

r(OverflowError)
x = 1
try:
        while 1: x = x+x
except OverflowError: pass

r(SyntaxError)
try: exec '/\n'
except SyntaxError: pass

r(SystemExit)
import sys
try: sys.exit(0)
except SystemExit: pass

r(TypeError)
try: [] + ()
except TypeError: pass

r(ValueError)
try: x = chr(10000)
except ValueError: pass

r(ZeroDivisionError)
try: x = 1/0
except ZeroDivisionError: pass