blob: 1c3c4e3803b9202adb0b6574ba964cbaae36a77b [file] [log] [blame]
# 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