Lines Matching refs:expected

1120   let expected =<< trim END
1374 call assert_equal(expected, g:res)
1385 \ 'Vim(python):TypeError: expected str() or unicode() instance, but got dict')
1444 \ 'Vim(python):TypeError: expected str() or unicode() instance, but got int')
1746 let expected =<< trim END
1767 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$'))
1795 let expected =<< trim END
1800 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$'))
1818 let expected =<< trim END
1824 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$'))
1840 let expected =<< trim END
1846 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$'))
1865 let expected =<< trim END
1869 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$'))
1894 let expected =<< trim END
1905 call assert_equal(expected, getline(2, '$'))
1928 let expected =<< trim END
1939 call assert_equal(expected, getline(2, '$'))
2048 let expected =<< trim END
2069 call assert_equal(expected, getline(2, '$'))
2098 let expected =<< trim END
2113 call assert_equal(expected, res)
2243 let expected =<< trim END
2333 call assert_equal(expected, getline(2, '$'))
2841 let expected =<< trim END
2846 …sys.stdout.softspace = []:TypeError:('expected int(), long() or something supporting coercing to l…
2847 …sys.stdout.softspace = None:TypeError:('expected int(), long() or something supporting coercing to…
2851 …sys.stderr.softspace = []:TypeError:('expected int(), long() or something supporting coercing to l…
2852 …sys.stderr.softspace = None:TypeError:('expected int(), long() or something supporting coercing to…
2884 vim.command(1):TypeError:('expected str() or unicode() instance, but got int',)
2885 vim.command(u"\0"):TypeError:('expected string without null bytes',)
2886 vim.command("\0"):TypeError:('expected string without null bytes',)
2892 vim.eval(1):TypeError:('expected str() or unicode() instance, but got int',)
2893 vim.eval(u"\0"):TypeError:('expected string without null bytes',)
2894 vim.eval("\0"):TypeError:('expected string without null bytes',)
2899 vim.bindeval(1):TypeError:('expected str() or unicode() instance, but got int',)
2900 vim.bindeval(u"\0"):TypeError:('expected string without null bytes',)
2901 vim.bindeval("\0"):TypeError:('expected string without null bytes',)
2906 vim.strwidth(1):TypeError:('expected str() or unicode() instance, but got int',)
2907 vim.strwidth(u"\0"):TypeError:('expected string without null bytes',)
2908 vim.strwidth("\0"):TypeError:('expected string without null bytes',)
2924 vim.options[1]:TypeError:('expected str() or unicode() instance, but got int',)
2925 vim.options[u"\0"]:TypeError:('expected string without null bytes',)
2926 vim.options["\0"]:TypeError:('expected string without null bytes',)
2930 1 in vim.options:TypeError:('expected str() or unicode() instance, but got int',)
2931 u"\0" in vim.options:TypeError:('expected string without null bytes',)
2932 "\0" in vim.options:TypeError:('expected string without null bytes',)
2936 …vim.Dictionary("abcI"):ValueError:('expected sequence element of size 2, but got sequence of size …
2946 d.get(1):TypeError:('expected str() or unicode() instance, but got int',)
2947 d.get(u"\0"):TypeError:('expected string without null bytes',)
2948 d.get("\0"):TypeError:('expected string without null bytes',)
2954 0 in d:TypeError:('expected str() or unicode() instance, but got int',)
2960 d[1] = 1:TypeError:('expected str() or unicode() instance, but got int',)
2961 d[u"\0"] = 1:TypeError:('expected string without null bytes',)
2962 d["\0"] = 1:TypeError:('expected string without null bytes',)
2965 d["a"] = {1 : 1}:TypeError:('expected str() or unicode() instance, but got int',)
2966 d["a"] = {u"\0" : 1}:TypeError:('expected string without null bytes',)
2967 d["a"] = {"\0" : 1}:TypeError:('expected string without null bytes',)
2970 d["a"] = {"abcF" : {1 : 1}}:TypeError:('expected str() or unicode() instance, but got int',)
2971 d["a"] = {"abcF" : {u"\0" : 1}}:TypeError:('expected string without null bytes',)
2972 d["a"] = {"abcF" : {"\0" : 1}}:TypeError:('expected string without null bytes',)
2975 …d["a"] = {"abcF" : Mapping({1 : 1})}:TypeError:('expected str() or unicode() instance, but got int…
2976 d["a"] = {"abcF" : Mapping({u"\0" : 1})}:TypeError:('expected string without null bytes',)
2977 d["a"] = {"abcF" : Mapping({"\0" : 1})}:TypeError:('expected string without null bytes',)
2992 d["a"] = Mapping({1 : 1}):TypeError:('expected str() or unicode() instance, but got int',)
2993 d["a"] = Mapping({u"\0" : 1}):TypeError:('expected string without null bytes',)
2994 d["a"] = Mapping({"\0" : 1}):TypeError:('expected string without null bytes',)
2997 …d["a"] = Mapping({"abcG" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int…
2998 d["a"] = Mapping({"abcG" : {u"\0" : 1}}):TypeError:('expected string without null bytes',)
2999 d["a"] = Mapping({"abcG" : {"\0" : 1}}):TypeError:('expected string without null bytes',)
3002 …d["a"] = Mapping({"abcG" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, bu…
3003 …d["a"] = Mapping({"abcG" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',)
3004 … d["a"] = Mapping({"abcG" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',)
3041 d.update({1 : 1}):TypeError:('expected str() or unicode() instance, but got int',)
3042 d.update({u"\0" : 1}):TypeError:('expected string without null bytes',)
3043 d.update({"\0" : 1}):TypeError:('expected string without null bytes',)
3046 d.update({"abcF" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int',)
3047 d.update({"abcF" : {u"\0" : 1}}):TypeError:('expected string without null bytes',)
3048 d.update({"abcF" : {"\0" : 1}}):TypeError:('expected string without null bytes',)
3051 …d.update({"abcF" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, but got in…
3052 d.update({"abcF" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',)
3053 d.update({"abcF" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',)
3068 d.update(Mapping({1 : 1})):TypeError:('expected str() or unicode() instance, but got int',)
3069 d.update(Mapping({u"\0" : 1})):TypeError:('expected string without null bytes',)
3070 d.update(Mapping({"\0" : 1})):TypeError:('expected string without null bytes',)
3073 …d.update(Mapping({"abcG" : {1 : 1}})):TypeError:('expected str() or unicode() instance, but got in…
3074 d.update(Mapping({"abcG" : {u"\0" : 1}})):TypeError:('expected string without null bytes',)
3075 d.update(Mapping({"abcG" : {"\0" : 1}})):TypeError:('expected string without null bytes',)
3078 …d.update(Mapping({"abcG" : Mapping({1 : 1})})):TypeError:('expected str() or unicode() instance, b…
3079 …d.update(Mapping({"abcG" : Mapping({u"\0" : 1})})):TypeError:('expected string without null bytes'…
3080 …d.update(Mapping({"abcG" : Mapping({"\0" : 1})})):TypeError:('expected string without null bytes',)
3107 d.update(((1, 0),)):TypeError:('expected str() or unicode() instance, but got int',)
3108 d.update(((u"\0", 0),)):TypeError:('expected string without null bytes',)
3109 d.update((("\0", 0),)):TypeError:('expected string without null bytes',)
3112 d.update((("a", {1 : 1}),)):TypeError:('expected str() or unicode() instance, but got int',)
3113 d.update((("a", {u"\0" : 1}),)):TypeError:('expected string without null bytes',)
3114 d.update((("a", {"\0" : 1}),)):TypeError:('expected string without null bytes',)
3117 …d.update((("a", {"abcF" : {1 : 1}}),)):TypeError:('expected str() or unicode() instance, but got i…
3118 d.update((("a", {"abcF" : {u"\0" : 1}}),)):TypeError:('expected string without null bytes',)
3119 d.update((("a", {"abcF" : {"\0" : 1}}),)):TypeError:('expected string without null bytes',)
3122 …d.update((("a", {"abcF" : Mapping({1 : 1})}),)):TypeError:('expected str() or unicode() instance, …
3123 …d.update((("a", {"abcF" : Mapping({u"\0" : 1})}),)):TypeError:('expected string without null bytes…
3124 …d.update((("a", {"abcF" : Mapping({"\0" : 1})}),)):TypeError:('expected string without null bytes'…
3139 …d.update((("a", Mapping({1 : 1})),)):TypeError:('expected str() or unicode() instance, but got int…
3140 d.update((("a", Mapping({u"\0" : 1})),)):TypeError:('expected string without null bytes',)
3141 d.update((("a", Mapping({"\0" : 1})),)):TypeError:('expected string without null bytes',)
3144 …d.update((("a", Mapping({"abcG" : {1 : 1}})),)):TypeError:('expected str() or unicode() instance, …
3145 …d.update((("a", Mapping({"abcG" : {u"\0" : 1}})),)):TypeError:('expected string without null bytes…
3146 …d.update((("a", Mapping({"abcG" : {"\0" : 1}})),)):TypeError:('expected string without null bytes'…
3149 …d.update((("a", Mapping({"abcG" : Mapping({1 : 1})})),)):TypeError:('expected str() or unicode() i…
3150 …d.update((("a", Mapping({"abcG" : Mapping({u"\0" : 1})})),)):TypeError:('expected string without n…
3151 …d.update((("a", Mapping({"abcG" : Mapping({"\0" : 1})})),)):TypeError:('expected string without nu…
3190 vim.List([{1 : 1}]):TypeError:('expected str() or unicode() instance, but got int',)
3191 vim.List([{u"\0" : 1}]):TypeError:('expected string without null bytes',)
3192 vim.List([{"\0" : 1}]):TypeError:('expected string without null bytes',)
3195 vim.List([{"abcF" : {1 : 1}}]):TypeError:('expected str() or unicode() instance, but got int',)
3196 vim.List([{"abcF" : {u"\0" : 1}}]):TypeError:('expected string without null bytes',)
3197 vim.List([{"abcF" : {"\0" : 1}}]):TypeError:('expected string without null bytes',)
3200 …vim.List([{"abcF" : Mapping({1 : 1})}]):TypeError:('expected str() or unicode() instance, but got …
3201 vim.List([{"abcF" : Mapping({u"\0" : 1})}]):TypeError:('expected string without null bytes',)
3202 vim.List([{"abcF" : Mapping({"\0" : 1})}]):TypeError:('expected string without null bytes',)
3217 vim.List([Mapping({1 : 1})]):TypeError:('expected str() or unicode() instance, but got int',)
3218 vim.List([Mapping({u"\0" : 1})]):TypeError:('expected string without null bytes',)
3219 vim.List([Mapping({"\0" : 1})]):TypeError:('expected string without null bytes',)
3222 …vim.List([Mapping({"abcG" : {1 : 1}})]):TypeError:('expected str() or unicode() instance, but got …
3223 vim.List([Mapping({"abcG" : {u"\0" : 1}})]):TypeError:('expected string without null bytes',)
3224 vim.List([Mapping({"abcG" : {"\0" : 1}})]):TypeError:('expected string without null bytes',)
3227 …vim.List([Mapping({"abcG" : Mapping({1 : 1})})]):TypeError:('expected str() or unicode() instance,…
3228 …vim.List([Mapping({"abcG" : Mapping({u"\0" : 1})})]):TypeError:('expected string without null byte…
3229 …vim.List([Mapping({"abcG" : Mapping({"\0" : 1})})]):TypeError:('expected string without null bytes…
3275 l[:] = [{1 : 1}]:TypeError:('expected str() or unicode() instance, but got int',)
3276 l[:] = [{u"\0" : 1}]:TypeError:('expected string without null bytes',)
3277 l[:] = [{"\0" : 1}]:TypeError:('expected string without null bytes',)
3280 l[:] = [{"abcF" : {1 : 1}}]:TypeError:('expected str() or unicode() instance, but got int',)
3281 l[:] = [{"abcF" : {u"\0" : 1}}]:TypeError:('expected string without null bytes',)
3282 l[:] = [{"abcF" : {"\0" : 1}}]:TypeError:('expected string without null bytes',)
3285 …l[:] = [{"abcF" : Mapping({1 : 1})}]:TypeError:('expected str() or unicode() instance, but got int…
3286 l[:] = [{"abcF" : Mapping({u"\0" : 1})}]:TypeError:('expected string without null bytes',)
3287 l[:] = [{"abcF" : Mapping({"\0" : 1})}]:TypeError:('expected string without null bytes',)
3302 l[:] = [Mapping({1 : 1})]:TypeError:('expected str() or unicode() instance, but got int',)
3303 l[:] = [Mapping({u"\0" : 1})]:TypeError:('expected string without null bytes',)
3304 l[:] = [Mapping({"\0" : 1})]:TypeError:('expected string without null bytes',)
3307 …l[:] = [Mapping({"abcG" : {1 : 1}})]:TypeError:('expected str() or unicode() instance, but got int…
3308 l[:] = [Mapping({"abcG" : {u"\0" : 1}})]:TypeError:('expected string without null bytes',)
3309 l[:] = [Mapping({"abcG" : {"\0" : 1}})]:TypeError:('expected string without null bytes',)
3312 …l[:] = [Mapping({"abcG" : Mapping({1 : 1})})]:TypeError:('expected str() or unicode() instance, bu…
3313 …l[:] = [Mapping({"abcG" : Mapping({u"\0" : 1})})]:TypeError:('expected string without null bytes',)
3314 … l[:] = [Mapping({"abcG" : Mapping({"\0" : 1})})]:TypeError:('expected string without null bytes',)
3346 l.extend([{1 : 1}]):TypeError:('expected str() or unicode() instance, but got int',)
3347 l.extend([{u"\0" : 1}]):TypeError:('expected string without null bytes',)
3348 l.extend([{"\0" : 1}]):TypeError:('expected string without null bytes',)
3351 l.extend([{"abcF" : {1 : 1}}]):TypeError:('expected str() or unicode() instance, but got int',)
3352 l.extend([{"abcF" : {u"\0" : 1}}]):TypeError:('expected string without null bytes',)
3353 l.extend([{"abcF" : {"\0" : 1}}]):TypeError:('expected string without null bytes',)
3356 …l.extend([{"abcF" : Mapping({1 : 1})}]):TypeError:('expected str() or unicode() instance, but got …
3357 l.extend([{"abcF" : Mapping({u"\0" : 1})}]):TypeError:('expected string without null bytes',)
3358 l.extend([{"abcF" : Mapping({"\0" : 1})}]):TypeError:('expected string without null bytes',)
3373 l.extend([Mapping({1 : 1})]):TypeError:('expected str() or unicode() instance, but got int',)
3374 l.extend([Mapping({u"\0" : 1})]):TypeError:('expected string without null bytes',)
3375 l.extend([Mapping({"\0" : 1})]):TypeError:('expected string without null bytes',)
3378 …l.extend([Mapping({"abcG" : {1 : 1}})]):TypeError:('expected str() or unicode() instance, but got …
3379 l.extend([Mapping({"abcG" : {u"\0" : 1}})]):TypeError:('expected string without null bytes',)
3380 l.extend([Mapping({"abcG" : {"\0" : 1}})]):TypeError:('expected string without null bytes',)
3383 …l.extend([Mapping({"abcG" : Mapping({1 : 1})})]):TypeError:('expected str() or unicode() instance,…
3384 …l.extend([Mapping({"abcG" : Mapping({u"\0" : 1})})]):TypeError:('expected string without null byte…
3385 …l.extend([Mapping({"abcG" : Mapping({"\0" : 1})})]):TypeError:('expected string without null bytes…
3433 f({1 : 1}):TypeError:('expected str() or unicode() instance, but got int',)
3434 f({u"\0" : 1}):TypeError:('expected string without null bytes',)
3435 f({"\0" : 1}):TypeError:('expected string without null bytes',)
3438 f({"abcF" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int',)
3439 f({"abcF" : {u"\0" : 1}}):TypeError:('expected string without null bytes',)
3440 f({"abcF" : {"\0" : 1}}):TypeError:('expected string without null bytes',)
3443 f({"abcF" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, but got int',)
3444 f({"abcF" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',)
3445 f({"abcF" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',)
3460 f(Mapping({1 : 1})):TypeError:('expected str() or unicode() instance, but got int',)
3461 f(Mapping({u"\0" : 1})):TypeError:('expected string without null bytes',)
3462 f(Mapping({"\0" : 1})):TypeError:('expected string without null bytes',)
3465 f(Mapping({"abcG" : {1 : 1}})):TypeError:('expected str() or unicode() instance, but got int',)
3466 f(Mapping({"abcG" : {u"\0" : 1}})):TypeError:('expected string without null bytes',)
3467 f(Mapping({"abcG" : {"\0" : 1}})):TypeError:('expected string without null bytes',)
3470 …f(Mapping({"abcG" : Mapping({1 : 1})})):TypeError:('expected str() or unicode() instance, but got …
3471 f(Mapping({"abcG" : Mapping({u"\0" : 1})})):TypeError:('expected string without null bytes',)
3472 f(Mapping({"abcG" : Mapping({"\0" : 1})})):TypeError:('expected string without null bytes',)
3499 fd(self={1 : 1}):TypeError:('expected str() or unicode() instance, but got int',)
3500 fd(self={u"\0" : 1}):TypeError:('expected string without null bytes',)
3501 fd(self={"\0" : 1}):TypeError:('expected string without null bytes',)
3504 fd(self={"abcF" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int',)
3505 fd(self={"abcF" : {u"\0" : 1}}):TypeError:('expected string without null bytes',)
3506 fd(self={"abcF" : {"\0" : 1}}):TypeError:('expected string without null bytes',)
3509 …fd(self={"abcF" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, but got int…
3510 fd(self={"abcF" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',)
3511 fd(self={"abcF" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',)
3526 fd(self=Mapping({1 : 1})):TypeError:('expected str() or unicode() instance, but got int',)
3527 fd(self=Mapping({u"\0" : 1})):TypeError:('expected string without null bytes',)
3528 fd(self=Mapping({"\0" : 1})):TypeError:('expected string without null bytes',)
3531 …fd(self=Mapping({"abcG" : {1 : 1}})):TypeError:('expected str() or unicode() instance, but got int…
3532 fd(self=Mapping({"abcG" : {u"\0" : 1}})):TypeError:('expected string without null bytes',)
3533 fd(self=Mapping({"abcG" : {"\0" : 1}})):TypeError:('expected string without null bytes',)
3536 …fd(self=Mapping({"abcG" : Mapping({1 : 1})})):TypeError:('expected str() or unicode() instance, bu…
3537 …fd(self=Mapping({"abcG" : Mapping({u"\0" : 1})})):TypeError:('expected string without null bytes',)
3538 … fd(self=Mapping({"abcG" : Mapping({"\0" : 1})})):TypeError:('expected string without null bytes',)
3581 …vim.current.window.height = []:TypeError:('expected int(), long() or something supporting coercing…
3582 …vim.current.window.height = None:TypeError:('expected int(), long() or something supporting coerci…
3586 …vim.current.window.width = []:TypeError:('expected int(), long() or something supporting coercing …
3587 …vim.current.window.width = None:TypeError:('expected int(), long() or something supporting coercin…
3614 vim.current.buffer.name = True:TypeError:('expected str() or unicode() instance, but got bool',)
3617 vim.current.buffer.mark(0):TypeError:('expected str() or unicode() instance, but got int',)
3626 …vim.buffers[[]]:TypeError:('expected int(), long() or something supporting coercing to long(), but…
3627 …vim.buffers[None]:TypeError:('expected int(), long() or something supporting coercing to long(), b…
3636 vim.current.buffer = True:TypeError:('expected vim.Buffer object, but got bool',)
3637 vim.current.window = True:TypeError:('expected vim.Window object, but got bool',)
3638 vim.current.tabpage = True:TypeError:('expected vim.TabPage object, but got bool',)
3642 call assert_equal(expected, getline(2, '$'))
3688 let expected =<< trim END
3698 call assert_equal(expected, getline(2, '$'))
3727 let expected =<< trim END
3736 call assert_equal(expected, getline(2, '$'))
3774 let expected =<< trim END
3779 call assert_equal(expected, getline(2, '$'))