summaryrefslogtreecommitdiff
path: root/test/functional/invalid_exceptions_caught.py
blob: d0bb7f1c9b2732b46c982c006739b048af98bf6f (plain)
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
"""Test for catching non-exceptions."""
import socket
# pylint: disable=too-many-ancestors,print-statement

class MyException(object):
    """Custom 'exception'."""

class MySecondException(object):
    """Custom 'exception'."""

class MyGoodException(Exception):
    """Custom exception."""

class MySecondGoodException(MyGoodException):
    """Custom exception."""

class SkipException(socket.error):
    """Not an exception for Python 2, but one in 3."""

class SecondSkipException(SkipException):
    """Also a good exception."""

try:
    1 + 1
except MyException:  # [catching-non-exception]
    print "caught"

try:
    1 + 2
# +1:[catching-non-exception,catching-non-exception]
except (MyException, MySecondException):
    print "caught"

try:
    1 + 3
except MyGoodException:
    print "caught"

try:
    1 + 3
except (MyGoodException, MySecondGoodException):
    print "caught"

try:
    1 + 3
except (SkipException, SecondSkipException):
    print "caught"

try:
    1 + 42
# +1:[catching-non-exception,catching-non-exception]
except (None, list()):
    print "caught"

try:
    1 + 24
except None: # [catching-non-exception]
    print "caught"

EXCEPTION = None
EXCEPTION = ZeroDivisionError
try:
    1 + 46
except EXCEPTION:
    print "caught"