summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/int_divzero.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/int_divzero.py')
-rw-r--r--tests/float/int_divzero.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/int_divzero.py b/tests/float/int_divzero.py
index b311a1dbcf..ef3531bee8 100644
--- a/tests/float/int_divzero.py
+++ b/tests/float/int_divzero.py
@@ -4,6 +4,6 @@ except ZeroDivisionError:
print("ZeroDivisionError")
try:
- 0 ** -1
+ 0**-1
except ZeroDivisionError:
print("ZeroDivisionError")