commit | a3653095286b46bf4d9530240cfb8efa0788543e | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Thu Aug 23 23:02:57 2001 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Thu Aug 23 23:02:57 2001 +0000 |
tree | d937da11805a0ed7705985c9cff44772e709bc0e | |
parent | 26c7fa355a129778d21a8cf973f852dd592b792b [diff] [blame] |
Add a test for the new // operator too.
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 60adb74..3b6081e 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py
@@ -300,6 +300,10 @@ 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)