summaryrefslogtreecommitdiff
path: root/tests/functional/wrong_exception_operation.py
blob: 1c3c4e3803b9202adb0b6574ba964cbaae36a77b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# pylint: disable=missing-docstring, superfluous-parens


try:
    1/0
except (ValueError | TypeError): # [wrong-exception-operation]
    pass

try:
    1/0
except (ValueError + TypeError): # [wrong-exception-operation]
    pass


try:
    1/0
except (ValueError < TypeError): # [wrong-exception-operation]
    pass