comparison src/testdir/test87.ok @ 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 2ace11abcfb5
children 692dac7183de
comparison
equal deleted inserted replaced
5699:3716699948c2 5700:c2e88a40d530
880 ll[1:100] = "abcJ":(<class 'vim.error'>, error('list is locked',)) 880 ll[1:100] = "abcJ":(<class 'vim.error'>, error('list is locked',))
881 >>> Testing *Iter* using l[:] = %s 881 >>> Testing *Iter* using l[:] = %s
882 l[:] = FailingIter():(<class 'NotImplementedError'>, NotImplementedError('iter',)) 882 l[:] = FailingIter():(<class 'NotImplementedError'>, NotImplementedError('iter',))
883 l[:] = FailingIterNext():(<class 'NotImplementedError'>, NotImplementedError('next',)) 883 l[:] = FailingIterNext():(<class 'NotImplementedError'>, NotImplementedError('next',))
884 <<< Finished 884 <<< Finished
885 nel[1:10:2] = "abcK":(<class 'ValueError'>, ValueError('attempt to assign sequence of size greater then 2 to extended slice',)) 885 nel[1:10:2] = "abcK":(<class 'ValueError'>, ValueError('attempt to assign sequence of size greater than 2 to extended slice',))
886 (b'a', b'b', b'c', b'O') 886 (b'a', b'b', b'c', b'O')
887 nel[1:10:2] = "a":(<class 'ValueError'>, ValueError('attempt to assign sequence of size 1 to extended slice of size 2',)) 887 nel[1:10:2] = "a":(<class 'ValueError'>, ValueError('attempt to assign sequence of size 1 to extended slice of size 2',))
888 (b'a', b'b', b'c', b'O') 888 (b'a', b'b', b'c', b'O')
889 nel[1:1:-1] = "a":(<class 'ValueError'>, ValueError('attempt to assign sequence of size greater then 0 to extended slice',)) 889 nel[1:1:-1] = "a":(<class 'ValueError'>, ValueError('attempt to assign sequence of size greater than 0 to extended slice',))
890 (b'a', b'b', b'c', b'O') 890 (b'a', b'b', b'c', b'O')
891 nel[:] = FailingIterNextN(2):(<class 'NotImplementedError'>, NotImplementedError('next N',)) 891 nel[:] = FailingIterNextN(2):(<class 'NotImplementedError'>, NotImplementedError('next N',))
892 (b'a', b'b', b'c', b'O') 892 (b'a', b'b', b'c', b'O')
893 >>> Testing StringToChars using l[:] = [{%s : 1}] 893 >>> Testing StringToChars using l[:] = [{%s : 1}]
894 l[:] = [{1 : 1}]:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',)) 894 l[:] = [{1 : 1}]:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
1231 >> BufMapItem 1231 >> BufMapItem
1232 vim.buffers[100000000]:(<class 'KeyError'>, KeyError(100000000,)) 1232 vim.buffers[100000000]:(<class 'KeyError'>, KeyError(100000000,))
1233 >>> Testing NumberToLong using vim.buffers[%s] 1233 >>> Testing NumberToLong using vim.buffers[%s]
1234 vim.buffers[[]]:(<class 'TypeError'>, TypeError('expected int() or something supporting coercing to int(), but got list',)) 1234 vim.buffers[[]]:(<class 'TypeError'>, TypeError('expected int() or something supporting coercing to int(), but got list',))
1235 vim.buffers[None]:(<class 'TypeError'>, TypeError('expected int() or something supporting coercing to int(), but got NoneType',)) 1235 vim.buffers[None]:(<class 'TypeError'>, TypeError('expected int() or something supporting coercing to int(), but got NoneType',))
1236 vim.buffers[-1]:(<class 'ValueError'>, ValueError('number must be greater then zero',)) 1236 vim.buffers[-1]:(<class 'ValueError'>, ValueError('number must be greater than zero',))
1237 vim.buffers[0]:(<class 'ValueError'>, ValueError('number must be greater then zero',)) 1237 vim.buffers[0]:(<class 'ValueError'>, ValueError('number must be greater than zero',))
1238 <<< Finished 1238 <<< Finished
1239 > Current 1239 > Current
1240 >> CurrentGetattr 1240 >> CurrentGetattr
1241 vim.current.xxx:(<class 'AttributeError'>, AttributeError("'vim.currentdata' object has no attribute 'xxx'",)) 1241 vim.current.xxx:(<class 'AttributeError'>, AttributeError("'vim.currentdata' object has no attribute 'xxx'",))
1242 >> CurrentSetattr 1242 >> CurrentSetattr