diff options
author | Raymond Hettinger <python@rcn.com> | 2004-09-27 15:29:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-09-27 15:29:05 (GMT) |
commit | ffdb8bb99c4017152a9dca70669f9d6b9831d454 (patch) | |
tree | 561cf9198f1aa05d12d126a1a4afedc549060224 /Lib/test/test_enumerate.py | |
parent | 4837a223eea09681f0bf41d41882cad5ade0f6ab (diff) | |
download | cpython-ffdb8bb99c4017152a9dca70669f9d6b9831d454.zip cpython-ffdb8bb99c4017152a9dca70669f9d6b9831d454.tar.gz cpython-ffdb8bb99c4017152a9dca70669f9d6b9831d454.tar.bz2 |
Use floor division operator.
Diffstat (limited to 'Lib/test/test_enumerate.py')
-rw-r--r-- | Lib/test/test_enumerate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py index 200779f..18c2bb9 100644 --- a/Lib/test/test_enumerate.py +++ b/Lib/test/test_enumerate.py @@ -50,7 +50,7 @@ class E: def __iter__(self): return self def next(self): - 3/0 + 3 // 0 class N: 'Iterator missing next()' |