comparison src/testdir/test87.in @ 5700:c2e88a40d530 v7.4.195

updated for version 7.4.195 Problem: Python tests fail. Solution: Change "then" to "than" in more places. (Dominique Pelle, Taro Muraoka)
author Bram Moolenaar <bram@vim.org>
date Wed, 12 Mar 2014 15:26:40 +0100
parents ae228baaec2c
children 6f80b9a773db
comparison
equal deleted inserted replaced
5699:3716699948c2 5700:c2e88a40d530
662 :buffer # 662 :buffer #
663 py3 << EOF 663 py3 << EOF
664 # Check GCing iterator that was not fully exhausted 664 # Check GCing iterator that was not fully exhausted
665 i = iter(vim.buffers) 665 i = iter(vim.buffers)
666 cb.append('i:' + str(next(i))) 666 cb.append('i:' + str(next(i)))
667 # and also check creating more then one iterator at a time 667 # and also check creating more than one iterator at a time
668 i2 = iter(vim.buffers) 668 i2 = iter(vim.buffers)
669 cb.append('i2:' + str(next(i2))) 669 cb.append('i2:' + str(next(i2)))
670 cb.append('i:' + str(next(i))) 670 cb.append('i:' + str(next(i)))
671 # The following should trigger GC and not cause any problems 671 # The following should trigger GC and not cause any problems
672 del i 672 del i