summaryrefslogtreecommitdiff
path: root/Lib/test/test_long.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_long.py')
-rw-r--r--Lib/test/test_long.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py
index 60adb74a62..3b6081e7d5 100644
--- a/Lib/test/test_long.py
+++ b/Lib/test/test_long.py
@@ -300,6 +300,10 @@ def test_auto_overflow():
got = x / y
checkit(x, '/', y)
+ expected = longx // longy
+ got = x // y
+ checkit(x, '//', y)
+
expected = divmod(longx, longy)
got = divmod(longx, longy)
checkit(x, 'divmod', y)