blob: 8078573c4163796f7f5dd194f06274e1d632b894 (
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): # [catching-non-exception,wrong-exception-operation]
pass
try:
1/0
except (ValueError + TypeError): # [wrong-exception-operation]
pass
try:
1/0
except (ValueError < TypeError): # [wrong-exception-operation]
pass
|