diff options
Diffstat (limited to 'Lib/test/test_itertools.py')
-rw-r--r-- | Lib/test/test_itertools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 6ce758a..6ae6785 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -476,7 +476,7 @@ class E: def __iter__(self): return self def next(self): - 3/0 + 3 // 0 class S: 'Test immediate stop' |