summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/int_divzero.py
blob: b311a1dbcf6c9e151fc5b8ccad953b6732ae3256 (plain) (blame)
1
2
3
4
5
6
7
8
9
try:
    1 / 0
except ZeroDivisionError:
    print("ZeroDivisionError")

try:
    0 ** -1
except ZeroDivisionError:
    print("ZeroDivisionError")