summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/int_divzero.py
blob: ef3531bee8649d53b6361b5e9c2f0fd022a10b0b (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")