Fix test_dict.
diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py
index 3ae0435..3434764 100644
--- a/Lib/test/test_dict.py
+++ b/Lib/test/test_dict.py
@@ -549,7 +549,7 @@
         # Bug #3537: if an empty but presized dict with a size larger
         # than 7 was in the freelist, it triggered an assertion failure
         try:
-            d = {'a': 1/0,  'b': None, 'c': None, 'd': None, 'e': None,
+            d = {'a': 1//0,  'b': None, 'c': None, 'd': None, 'e': None,
                  'f': None, 'g': None, 'h': None}
         except ZeroDivisionError:
             pass