diff options
author | Raymond Hettinger <python@rcn.com> | 2004-09-27 15:29:05 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-09-27 15:29:05 +0000 |
commit | ffdb8bb99c4017152a9dca70669f9d6b9831d454 (patch) | |
tree | 561cf9198f1aa05d12d126a1a4afedc549060224 /Lib/test/test_enumerate.py | |
parent | 4837a223eea09681f0bf41d41882cad5ade0f6ab (diff) | |
download | cpython-git-ffdb8bb99c4017152a9dca70669f9d6b9831d454.tar.gz |
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 200779fb98..18c2bb9396 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()' |