summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gdb.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r--Lib/test/test_gdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 118dbbf..335e48a 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -423,7 +423,7 @@ except RuntimeError, e:
# Test division by zero:
gdb_repr, gdb_output = self.get_gdb_repr('''
try:
- a = 1 / 0
+ a = 1 // 0
except ZeroDivisionError, e:
print e
''')