Lines Matching refs:class
869 …call assert_equal("l[1](1, 2, 3):(<class 'vim.error'>, error('Vim:E725: Calling dict function with…
874 …call assert_equal("f(1, 2, 3):(<class 'vim.error'>, error('Vim:E117: Unknown function: New',))", g…
1032 class T(threading.Thread):
2555 class DupDict(vim.Dictionary):
2562 class DupList(vim.List):
2570 class DupFun(vim.Function):
2671 class Mapping(object):
2725 class FailingTrue(object):
2729 class FailingIter(object):
2733 class FailingIterNext(object):
2740 class FailingIterNextN(object):
2754 class FailingMappingKey(object):
2761 class FailingMapping(object):
2768 class FailingList(list):
2775 class NoArgsCall(object):
2779 class FailingCall(object):
2783 class FailingNumber(object):
3032 …del sys.stdout.softspace:(<class 'AttributeError'>, AttributeError('cannot delete OutputObject att…
3034 …sys.stdout.softspace = []:(<class 'TypeError'>, TypeError('expected int() or something supporting …
3035 …sys.stdout.softspace = None:(<class 'TypeError'>, TypeError('expected int() or something supportin…
3036 …sys.stdout.softspace = -1:(<class 'ValueError'>, ValueError('number must be greater or equal to ze…
3039 …sys.stderr.softspace = []:(<class 'TypeError'>, TypeError('expected int() or something supporting …
3040 …sys.stderr.softspace = None:(<class 'TypeError'>, TypeError('expected int() or something supportin…
3041 …sys.stderr.softspace = -1:(<class 'ValueError'>, ValueError('number must be greater or equal to ze…
3051 sys.stdout.attr = None:(<class 'AttributeError'>, AttributeError('invalid attribute: attr',))
3062 …sys.stdout.write(None):(<class 'TypeError'>, TypeError("Can't convert 'NoneType' object to str imp…
3064 … sys.stdout.writelines(None):(<class 'TypeError'>, TypeError("'NoneType' object is not iterable",))
3065 …sys.stdout.writelines([1]):(<class 'TypeError'>, TypeError("Can't convert 'int' object to str impl…
3067 … sys.stdout.writelines(FailingIter()):(<class 'NotImplementedError'>, NotImplementedError('iter',))
3068 …sys.stdout.writelines(FailingIterNext()):(<class 'NotImplementedError'>, NotImplementedError('next…
3072 …vim.command(1):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
3073 vim.command(b"\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3074 vim.command("\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3076 …vim.command("", 2):(<class 'TypeError'>, TypeError('command() takes exactly one argument (2 given)…
3080 vim.eval(1):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
3081 vim.eval(b"\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3082 vim.eval("\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3084 …vim.eval("", FailingTrue()):(<class 'TypeError'>, TypeError('function takes exactly 1 argument (2 …
3087 …vim.bindeval(1):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',…
3088 vim.bindeval(b"\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3089 vim.bindeval("\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3091 vim.eval("", 2):(<class 'TypeError'>, TypeError('function takes exactly 1 argument (2 given)',))
3094 …vim.strwidth(1):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',…
3095 vim.strwidth(b"\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3096 vim.strwidth("\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3099 vim.foreach_rtp(None):(<class 'TypeError'>, TypeError("'NoneType' object is not callable",))
3100 …vim.foreach_rtp(NoArgsCall()):(<class 'TypeError'>, TypeError('__call__() takes exactly 1 position…
3101 vim.foreach_rtp(FailingCall()):(<class 'NotImplementedError'>, NotImplementedError('call',))
3102 …vim.foreach_rtp(int, 2):(<class 'TypeError'>, TypeError('foreach_rtp() takes exactly one argument …
3104 …import xxx_no_such_module_xxx:(<class 'ImportError'>, ImportError('No module named xxx_no_such_mod…
3105 import failing_import:(<class 'ImportError'>, ImportError())
3106 import failing:(<class 'NotImplementedError'>, NotImplementedError())
3109 vim.options["abcQ"]:(<class 'KeyError'>, KeyError('abcQ',))
3110 vim.options[""]:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3112 …vim.options[1]:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
3113 vim.options[b"\0"]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3114 vim.options["\0"]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3118 …1 in vim.options:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int'…
3119 b"\0" in vim.options:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3120 "\0" in vim.options:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3124 …vim.Dictionary("abcI"):(<class 'ValueError'>, ValueError('expected sequence element of size 2, but…
3126 …del d.locked:(<class 'AttributeError'>, AttributeError('cannot delete vim.Dictionary attributes',))
3127 d.locked = FailingTrue():(<class 'NotImplementedError'>, NotImplementedError('bool',))
3128 vim.vvars.locked = False:(<class 'TypeError'>, TypeError('cannot modify fixed dictionary',))
3129 d.scope = True:(<class 'AttributeError'>, AttributeError('cannot set attribute scope',))
3130 d.xxx = True:(<class 'AttributeError'>, AttributeError('cannot set attribute xxx',))
3132 … d.get("a", 2, 3):(<class 'TypeError'>, TypeError('function takes at most 2 arguments (3 given)',))
3134 d.get(1):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
3135 d.get(b"\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3136 d.get("\0"):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3138 d.pop("a"):(<class 'KeyError'>, KeyError('a',))
3139 dl.pop("a"):(<class 'vim.error'>, error('dictionary is locked',))
3141 "" in d:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3142 0 in d:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
3144 …for i in ned: ned["a"] = 1:(<class 'RuntimeError'>, RuntimeError('hashtab changed during iteration…
3146 dl["b"] = 1:(<class 'vim.error'>, error('dictionary is locked',))
3148 d[1] = 1:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
3149 d[b"\0"] = 1:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3150 d["\0"] = 1:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3153 …d["a"] = {1 : 1}:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int'…
3154 d["a"] = {b"\0" : 1}:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3155 d["a"] = {"\0" : 1}:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3158 …d["a"] = {"abcF" : {1 : 1}}:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, b…
3159 d["a"] = {"abcF" : {b"\0" : 1}}:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3160 d["a"] = {"abcF" : {"\0" : 1}}:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3163 …d["a"] = {"abcF" : Mapping({1 : 1})}:(<class 'TypeError'>, TypeError('expected bytes() or str() in…
3164 …d["a"] = {"abcF" : Mapping({b"\0" : 1})}:(<class 'TypeError'>, TypeError('expected bytes with no n…
3165 …d["a"] = {"abcF" : Mapping({"\0" : 1})}:(<class 'TypeError'>, TypeError('expected bytes with no nu…
3168 …d["a"] = {"abcF" : FailingIter()}:(<class 'TypeError'>, TypeError('unable to convert FailingIter t…
3169 …d["a"] = {"abcF" : FailingIterNext()}:(<class 'NotImplementedError'>, NotImplementedError('next',))
3173 d["a"] = {"abcF" : {b"": 1}}:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3174 d["a"] = {"abcF" : {"": 1}}:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3175 … d["a"] = {"abcF" : FailingMapping()}:(<class 'NotImplementedError'>, NotImplementedError('keys',))
3176 …d["a"] = {"abcF" : FailingMappingKey()}:(<class 'NotImplementedError'>, NotImplementedError('getit…
3177 d["a"] = {"abcF" : FailingNumber()}:(<class 'NotImplementedError'>, NotImplementedError('int',))
3180 …d["a"] = Mapping({1 : 1}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but…
3181 d["a"] = Mapping({b"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3182 d["a"] = Mapping({"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3185 …d["a"] = Mapping({"abcG" : {1 : 1}}):(<class 'TypeError'>, TypeError('expected bytes() or str() in…
3186 …d["a"] = Mapping({"abcG" : {b"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no n…
3187 …d["a"] = Mapping({"abcG" : {"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no nu…
3190 …d["a"] = Mapping({"abcG" : Mapping({1 : 1})}):(<class 'TypeError'>, TypeError('expected bytes() or…
3191 …d["a"] = Mapping({"abcG" : Mapping({b"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes …
3192 …d["a"] = Mapping({"abcG" : Mapping({"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes w…
3195 …d["a"] = Mapping({"abcG" : FailingIter()}):(<class 'TypeError'>, TypeError('unable to convert Fail…
3196 …d["a"] = Mapping({"abcG" : FailingIterNext()}):(<class 'NotImplementedError'>, NotImplementedError…
3200 …d["a"] = Mapping({"abcG" : {b"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowe…
3201 …d["a"] = Mapping({"abcG" : {"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowed…
3202 …d["a"] = Mapping({"abcG" : FailingMapping()}):(<class 'NotImplementedError'>, NotImplementedError(…
3203 …d["a"] = Mapping({"abcG" : FailingMappingKey()}):(<class 'NotImplementedError'>, NotImplementedErr…
3204 …d["a"] = Mapping({"abcG" : FailingNumber()}):(<class 'NotImplementedError'>, NotImplementedError('…
3207 …d["a"] = FailingIter():(<class 'TypeError'>, TypeError('unable to convert FailingIter to a Vim str…
3208 d["a"] = FailingIterNext():(<class 'NotImplementedError'>, NotImplementedError('next',))
3212 d["a"] = {b"": 1}:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3213 d["a"] = {"": 1}:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3214 d["a"] = FailingMapping():(<class 'NotImplementedError'>, NotImplementedError('keys',))
3215 …d["a"] = FailingMappingKey():(<class 'NotImplementedError'>, NotImplementedError('getitem:mappingk…
3216 d["a"] = FailingNumber():(<class 'NotImplementedError'>, NotImplementedError('int',))
3221 d.update(FailingMapping()):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3222 d.update([FailingIterNext()]):(<class 'NotImplementedError'>, NotImplementedError('next',))
3223 d.update([FailingIterNextN(1)]):(<class 'NotImplementedError'>, NotImplementedError('next N',))
3225 d.update(FailingIter()):(<class 'NotImplementedError'>, NotImplementedError('iter',))
3226 d.update(FailingIterNext()):(<class 'NotImplementedError'>, NotImplementedError('next',))
3229 …d.update({1 : 1}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int…
3230 d.update({b"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3231 d.update({"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3234 …d.update({"abcF" : {1 : 1}}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, …
3235 … d.update({"abcF" : {b"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3236 d.update({"abcF" : {"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3239 …d.update({"abcF" : Mapping({1 : 1})}):(<class 'TypeError'>, TypeError('expected bytes() or str() i…
3240 …d.update({"abcF" : Mapping({b"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes with no …
3241 …d.update({"abcF" : Mapping({"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes with no n…
3244 …d.update({"abcF" : FailingIter()}):(<class 'TypeError'>, TypeError('unable to convert FailingIter …
3245 …d.update({"abcF" : FailingIterNext()}):(<class 'NotImplementedError'>, NotImplementedError('next',…
3249 d.update({"abcF" : {b"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3250 d.update({"abcF" : {"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3251 …d.update({"abcF" : FailingMapping()}):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3252 …d.update({"abcF" : FailingMappingKey()}):(<class 'NotImplementedError'>, NotImplementedError('geti…
3253 … d.update({"abcF" : FailingNumber()}):(<class 'NotImplementedError'>, NotImplementedError('int',))
3256 …d.update(Mapping({1 : 1})):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, bu…
3257 d.update(Mapping({b"\0" : 1})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3258 d.update(Mapping({"\0" : 1})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3261 …d.update(Mapping({"abcG" : {1 : 1}})):(<class 'TypeError'>, TypeError('expected bytes() or str() i…
3262 …d.update(Mapping({"abcG" : {b"\0" : 1}})):(<class 'TypeError'>, TypeError('expected bytes with no …
3263 …d.update(Mapping({"abcG" : {"\0" : 1}})):(<class 'TypeError'>, TypeError('expected bytes with no n…
3266 …d.update(Mapping({"abcG" : Mapping({1 : 1})})):(<class 'TypeError'>, TypeError('expected bytes() o…
3267 …d.update(Mapping({"abcG" : Mapping({b"\0" : 1})})):(<class 'TypeError'>, TypeError('expected bytes…
3268 …d.update(Mapping({"abcG" : Mapping({"\0" : 1})})):(<class 'TypeError'>, TypeError('expected bytes …
3271 …d.update(Mapping({"abcG" : FailingIter()})):(<class 'TypeError'>, TypeError('unable to convert Fai…
3272 …d.update(Mapping({"abcG" : FailingIterNext()})):(<class 'NotImplementedError'>, NotImplementedErro…
3276 …d.update(Mapping({"abcG" : {b"": 1}})):(<class 'ValueError'>, ValueError('empty keys are not allow…
3277 …d.update(Mapping({"abcG" : {"": 1}})):(<class 'ValueError'>, ValueError('empty keys are not allowe…
3278 …d.update(Mapping({"abcG" : FailingMapping()})):(<class 'NotImplementedError'>, NotImplementedError…
3279 …d.update(Mapping({"abcG" : FailingMappingKey()})):(<class 'NotImplementedError'>, NotImplementedEr…
3280 …d.update(Mapping({"abcG" : FailingNumber()})):(<class 'NotImplementedError'>, NotImplementedError(…
3283 d.update(FailingIter()):(<class 'NotImplementedError'>, NotImplementedError('iter',))
3284 d.update(FailingIterNext()):(<class 'NotImplementedError'>, NotImplementedError('next',))
3287 d.update(None):(<class 'TypeError'>, TypeError("'NoneType' object is not iterable",))
3288 d.update({b"": 1}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3289 d.update({"": 1}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3290 d.update(FailingMapping()):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3291 …d.update(FailingMappingKey()):(<class 'NotImplementedError'>, NotImplementedError('getitem:mapping…
3292 …d.update(FailingNumber()):(<class 'TypeError'>, TypeError("'FailingNumber' object is not iterable"…
3295 …d.update(((1, 0),)):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got i…
3296 d.update(((b"\0", 0),)):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3297 d.update((("\0", 0),)):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3300 …d.update((("a", {1 : 1}),)):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, b…
3301 d.update((("a", {b"\0" : 1}),)):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3302 d.update((("a", {"\0" : 1}),)):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3305 …d.update((("a", {"abcF" : {1 : 1}}),)):(<class 'TypeError'>, TypeError('expected bytes() or str() …
3306 …d.update((("a", {"abcF" : {b"\0" : 1}}),)):(<class 'TypeError'>, TypeError('expected bytes with no…
3307 …d.update((("a", {"abcF" : {"\0" : 1}}),)):(<class 'TypeError'>, TypeError('expected bytes with no …
3310 …d.update((("a", {"abcF" : Mapping({1 : 1})}),)):(<class 'TypeError'>, TypeError('expected bytes() …
3311 …d.update((("a", {"abcF" : Mapping({b"\0" : 1})}),)):(<class 'TypeError'>, TypeError('expected byte…
3312 …d.update((("a", {"abcF" : Mapping({"\0" : 1})}),)):(<class 'TypeError'>, TypeError('expected bytes…
3315 …d.update((("a", {"abcF" : FailingIter()}),)):(<class 'TypeError'>, TypeError('unable to convert Fa…
3316 …d.update((("a", {"abcF" : FailingIterNext()}),)):(<class 'NotImplementedError'>, NotImplementedErr…
3319 …d.update((("a", {"abcF" : None}),)):(<class 'vim.error'>, error("failed to add key 'a' to dictiona…
3320 …d.update((("a", {"abcF" : {b"": 1}}),)):(<class 'ValueError'>, ValueError('empty keys are not allo…
3321 …d.update((("a", {"abcF" : {"": 1}}),)):(<class 'ValueError'>, ValueError('empty keys are not allow…
3322 …d.update((("a", {"abcF" : FailingMapping()}),)):(<class 'NotImplementedError'>, NotImplementedErro…
3323 …d.update((("a", {"abcF" : FailingMappingKey()}),)):(<class 'NotImplementedError'>, NotImplementedE…
3324 …d.update((("a", {"abcF" : FailingNumber()}),)):(<class 'NotImplementedError'>, NotImplementedError…
3327 …d.update((("a", Mapping({1 : 1})),)):(<class 'TypeError'>, TypeError('expected bytes() or str() in…
3328 …d.update((("a", Mapping({b"\0" : 1})),)):(<class 'TypeError'>, TypeError('expected bytes with no n…
3329 …d.update((("a", Mapping({"\0" : 1})),)):(<class 'TypeError'>, TypeError('expected bytes with no nu…
3332 …d.update((("a", Mapping({"abcG" : {1 : 1}})),)):(<class 'TypeError'>, TypeError('expected bytes() …
3333 …d.update((("a", Mapping({"abcG" : {b"\0" : 1}})),)):(<class 'TypeError'>, TypeError('expected byte…
3334 …d.update((("a", Mapping({"abcG" : {"\0" : 1}})),)):(<class 'TypeError'>, TypeError('expected bytes…
3337 …d.update((("a", Mapping({"abcG" : Mapping({1 : 1})})),)):(<class 'TypeError'>, TypeError('expected…
3338 …d.update((("a", Mapping({"abcG" : Mapping({b"\0" : 1})})),)):(<class 'TypeError'>, TypeError('expe…
3339 …d.update((("a", Mapping({"abcG" : Mapping({"\0" : 1})})),)):(<class 'TypeError'>, TypeError('expec…
3342 …d.update((("a", Mapping({"abcG" : FailingIter()})),)):(<class 'TypeError'>, TypeError('unable to c…
3343 …d.update((("a", Mapping({"abcG" : FailingIterNext()})),)):(<class 'NotImplementedError'>, NotImple…
3346 …d.update((("a", Mapping({"abcG" : None})),)):(<class 'vim.error'>, error("failed to add key 'a' to…
3347 …d.update((("a", Mapping({"abcG" : {b"": 1}})),)):(<class 'ValueError'>, ValueError('empty keys are…
3348 …d.update((("a", Mapping({"abcG" : {"": 1}})),)):(<class 'ValueError'>, ValueError('empty keys are …
3349 …d.update((("a", Mapping({"abcG" : FailingMapping()})),)):(<class 'NotImplementedError'>, NotImplem…
3350 …d.update((("a", Mapping({"abcG" : FailingMappingKey()})),)):(<class 'NotImplementedError'>, NotImp…
3351 …d.update((("a", Mapping({"abcG" : FailingNumber()})),)):(<class 'NotImplementedError'>, NotImpleme…
3354 …d.update((("a", FailingIter()),)):(<class 'TypeError'>, TypeError('unable to convert FailingIter t…
3355 …d.update((("a", FailingIterNext()),)):(<class 'NotImplementedError'>, NotImplementedError('next',))
3358 d.update((("a", None),)):(<class 'vim.error'>, error("failed to add key 'a' to dictionary",))
3359 d.update((("a", {b"": 1}),)):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3360 d.update((("a", {"": 1}),)):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3361 … d.update((("a", FailingMapping()),)):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3362 …d.update((("a", FailingMappingKey()),)):(<class 'NotImplementedError'>, NotImplementedError('getit…
3363 d.update((("a", FailingNumber()),)):(<class 'NotImplementedError'>, NotImplementedError('int',))
3366 d.popitem(1, 2):(<class 'TypeError'>, TypeError('popitem() takes no arguments (2 given)',))
3368 d.has_key():(<class 'TypeError'>, TypeError('has_key() takes exactly one argument (0 given)',))
3371 vim.List(1, 2):(<class 'TypeError'>, TypeError('function takes at most 1 argument (2 given)',))
3372 …vim.List(a=1):(<class 'TypeError'>, TypeError('list constructor does not accept keyword arguments'…
3374 vim.List(FailingIter()):(<class 'NotImplementedError'>, NotImplementedError('iter',))
3375 vim.List(FailingIterNext()):(<class 'NotImplementedError'>, NotImplementedError('next',))
3378 …vim.List([{1 : 1}]):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got i…
3379 vim.List([{b"\0" : 1}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3380 vim.List([{"\0" : 1}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3383 …vim.List([{"abcF" : {1 : 1}}]):(<class 'TypeError'>, TypeError('expected bytes() or str() instance…
3384 …vim.List([{"abcF" : {b"\0" : 1}}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3385 … vim.List([{"abcF" : {"\0" : 1}}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3388 …vim.List([{"abcF" : Mapping({1 : 1})}]):(<class 'TypeError'>, TypeError('expected bytes() or str()…
3389 …vim.List([{"abcF" : Mapping({b"\0" : 1})}]):(<class 'TypeError'>, TypeError('expected bytes with n…
3390 …vim.List([{"abcF" : Mapping({"\0" : 1})}]):(<class 'TypeError'>, TypeError('expected bytes with no…
3393 …vim.List([{"abcF" : FailingIter()}]):(<class 'TypeError'>, TypeError('unable to convert FailingIte…
3394 …vim.List([{"abcF" : FailingIterNext()}]):(<class 'NotImplementedError'>, NotImplementedError('next…
3398 … vim.List([{"abcF" : {b"": 1}}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3399 vim.List([{"abcF" : {"": 1}}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3400 …vim.List([{"abcF" : FailingMapping()}]):(<class 'NotImplementedError'>, NotImplementedError('keys'…
3401 …vim.List([{"abcF" : FailingMappingKey()}]):(<class 'NotImplementedError'>, NotImplementedError('ge…
3402 …vim.List([{"abcF" : FailingNumber()}]):(<class 'NotImplementedError'>, NotImplementedError('int',))
3405 …vim.List([Mapping({1 : 1})]):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, …
3406 … vim.List([Mapping({b"\0" : 1})]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3407 vim.List([Mapping({"\0" : 1})]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3410 …vim.List([Mapping({"abcG" : {1 : 1}})]):(<class 'TypeError'>, TypeError('expected bytes() or str()…
3411 …vim.List([Mapping({"abcG" : {b"\0" : 1}})]):(<class 'TypeError'>, TypeError('expected bytes with n…
3412 …vim.List([Mapping({"abcG" : {"\0" : 1}})]):(<class 'TypeError'>, TypeError('expected bytes with no…
3415 …vim.List([Mapping({"abcG" : Mapping({1 : 1})})]):(<class 'TypeError'>, TypeError('expected bytes()…
3416 …vim.List([Mapping({"abcG" : Mapping({b"\0" : 1})})]):(<class 'TypeError'>, TypeError('expected byt…
3417 …vim.List([Mapping({"abcG" : Mapping({"\0" : 1})})]):(<class 'TypeError'>, TypeError('expected byte…
3420 …vim.List([Mapping({"abcG" : FailingIter()})]):(<class 'TypeError'>, TypeError('unable to convert F…
3421 …vim.List([Mapping({"abcG" : FailingIterNext()})]):(<class 'NotImplementedError'>, NotImplementedEr…
3425 …vim.List([Mapping({"abcG" : {b"": 1}})]):(<class 'ValueError'>, ValueError('empty keys are not all…
3426 …vim.List([Mapping({"abcG" : {"": 1}})]):(<class 'ValueError'>, ValueError('empty keys are not allo…
3427 …vim.List([Mapping({"abcG" : FailingMapping()})]):(<class 'NotImplementedError'>, NotImplementedErr…
3428 …vim.List([Mapping({"abcG" : FailingMappingKey()})]):(<class 'NotImplementedError'>, NotImplemented…
3429 …vim.List([Mapping({"abcG" : FailingNumber()})]):(<class 'NotImplementedError'>, NotImplementedErro…
3432 …vim.List([FailingIter()]):(<class 'TypeError'>, TypeError('unable to convert FailingIter to a Vim …
3433 vim.List([FailingIterNext()]):(<class 'NotImplementedError'>, NotImplementedError('next',))
3437 vim.List([{b"": 1}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3438 vim.List([{"": 1}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3439 vim.List([FailingMapping()]):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3440 …vim.List([FailingMappingKey()]):(<class 'NotImplementedError'>, NotImplementedError('getitem:mappi…
3441 vim.List([FailingNumber()]):(<class 'NotImplementedError'>, NotImplementedError('int',))
3444 l[1000]:(<class 'IndexError'>, IndexError('list index out of range',))
3446 ll[1] = 2:(<class 'vim.error'>, error('list is locked',))
3447 l[1000] = 3:(<class 'IndexError'>, IndexError('list index out of range',))
3449 ll[1:100] = "abcJ":(<class 'vim.error'>, error('list is locked',))
3451 l[:] = FailingIter():(<class 'NotImplementedError'>, NotImplementedError('iter',))
3452 l[:] = FailingIterNext():(<class 'NotImplementedError'>, NotImplementedError('next',))
3454 …nel[1:10:2] = "abcK":(<class 'ValueError'>, ValueError('attempt to assign sequence of size greate…
3456 …nel[1:10:2] = "a":(<class 'ValueError'>, ValueError('attempt to assign sequence of size 1 to exte…
3458 …nel[1:1:-1] = "a":(<class 'ValueError'>, ValueError('attempt to assign sequence of size greater t…
3460 nel[:] = FailingIterNextN(2):(<class 'NotImplementedError'>, NotImplementedError('next N',))
3463 …l[:] = [{1 : 1}]:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int'…
3464 l[:] = [{b"\0" : 1}]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3465 l[:] = [{"\0" : 1}]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3468 …l[:] = [{"abcF" : {1 : 1}}]:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, b…
3469 l[:] = [{"abcF" : {b"\0" : 1}}]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3470 l[:] = [{"abcF" : {"\0" : 1}}]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3473 …l[:] = [{"abcF" : Mapping({1 : 1})}]:(<class 'TypeError'>, TypeError('expected bytes() or str() in…
3474 …l[:] = [{"abcF" : Mapping({b"\0" : 1})}]:(<class 'TypeError'>, TypeError('expected bytes with no n…
3475 …l[:] = [{"abcF" : Mapping({"\0" : 1})}]:(<class 'TypeError'>, TypeError('expected bytes with no nu…
3478 …l[:] = [{"abcF" : FailingIter()}]:(<class 'TypeError'>, TypeError('unable to convert FailingIter t…
3479 …l[:] = [{"abcF" : FailingIterNext()}]:(<class 'NotImplementedError'>, NotImplementedError('next',))
3483 l[:] = [{"abcF" : {b"": 1}}]:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3484 l[:] = [{"abcF" : {"": 1}}]:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3485 … l[:] = [{"abcF" : FailingMapping()}]:(<class 'NotImplementedError'>, NotImplementedError('keys',))
3486 …l[:] = [{"abcF" : FailingMappingKey()}]:(<class 'NotImplementedError'>, NotImplementedError('getit…
3487 l[:] = [{"abcF" : FailingNumber()}]:(<class 'NotImplementedError'>, NotImplementedError('int',))
3490 …l[:] = [Mapping({1 : 1})]:(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but…
3491 l[:] = [Mapping({b"\0" : 1})]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3492 l[:] = [Mapping({"\0" : 1})]:(<class 'TypeError'>, TypeError('expected bytes with no null',))
3495 …l[:] = [Mapping({"abcG" : {1 : 1}})]:(<class 'TypeError'>, TypeError('expected bytes() or str() in…
3496 …l[:] = [Mapping({"abcG" : {b"\0" : 1}})]:(<class 'TypeError'>, TypeError('expected bytes with no n…
3497 …l[:] = [Mapping({"abcG" : {"\0" : 1}})]:(<class 'TypeError'>, TypeError('expected bytes with no nu…
3500 …l[:] = [Mapping({"abcG" : Mapping({1 : 1})})]:(<class 'TypeError'>, TypeError('expected bytes() or…
3501 …l[:] = [Mapping({"abcG" : Mapping({b"\0" : 1})})]:(<class 'TypeError'>, TypeError('expected bytes …
3502 …l[:] = [Mapping({"abcG" : Mapping({"\0" : 1})})]:(<class 'TypeError'>, TypeError('expected bytes w…
3505 …l[:] = [Mapping({"abcG" : FailingIter()})]:(<class 'TypeError'>, TypeError('unable to convert Fail…
3506 …l[:] = [Mapping({"abcG" : FailingIterNext()})]:(<class 'NotImplementedError'>, NotImplementedError…
3510 …l[:] = [Mapping({"abcG" : {b"": 1}})]:(<class 'ValueError'>, ValueError('empty keys are not allowe…
3511 …l[:] = [Mapping({"abcG" : {"": 1}})]:(<class 'ValueError'>, ValueError('empty keys are not allowed…
3512 …l[:] = [Mapping({"abcG" : FailingMapping()})]:(<class 'NotImplementedError'>, NotImplementedError(…
3513 …l[:] = [Mapping({"abcG" : FailingMappingKey()})]:(<class 'NotImplementedError'>, NotImplementedErr…
3514 …l[:] = [Mapping({"abcG" : FailingNumber()})]:(<class 'NotImplementedError'>, NotImplementedError('…
3517 …l[:] = [FailingIter()]:(<class 'TypeError'>, TypeError('unable to convert FailingIter to a Vim str…
3518 l[:] = [FailingIterNext()]:(<class 'NotImplementedError'>, NotImplementedError('next',))
3522 l[:] = [{b"": 1}]:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3523 l[:] = [{"": 1}]:(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3524 l[:] = [FailingMapping()]:(<class 'NotImplementedError'>, NotImplementedError('keys',))
3525 …l[:] = [FailingMappingKey()]:(<class 'NotImplementedError'>, NotImplementedError('getitem:mappingk…
3526 l[:] = [FailingNumber()]:(<class 'NotImplementedError'>, NotImplementedError('int',))
3530 l.extend(FailingIter()):(<class 'NotImplementedError'>, NotImplementedError('iter',))
3531 l.extend(FailingIterNext()):(<class 'NotImplementedError'>, NotImplementedError('next',))
3534 …l.extend([{1 : 1}]):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got i…
3535 l.extend([{b"\0" : 1}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3536 l.extend([{"\0" : 1}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3539 …l.extend([{"abcF" : {1 : 1}}]):(<class 'TypeError'>, TypeError('expected bytes() or str() instance…
3540 …l.extend([{"abcF" : {b"\0" : 1}}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3541 … l.extend([{"abcF" : {"\0" : 1}}]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3544 …l.extend([{"abcF" : Mapping({1 : 1})}]):(<class 'TypeError'>, TypeError('expected bytes() or str()…
3545 …l.extend([{"abcF" : Mapping({b"\0" : 1})}]):(<class 'TypeError'>, TypeError('expected bytes with n…
3546 …l.extend([{"abcF" : Mapping({"\0" : 1})}]):(<class 'TypeError'>, TypeError('expected bytes with no…
3549 …l.extend([{"abcF" : FailingIter()}]):(<class 'TypeError'>, TypeError('unable to convert FailingIte…
3550 …l.extend([{"abcF" : FailingIterNext()}]):(<class 'NotImplementedError'>, NotImplementedError('next…
3554 … l.extend([{"abcF" : {b"": 1}}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3555 l.extend([{"abcF" : {"": 1}}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3556 …l.extend([{"abcF" : FailingMapping()}]):(<class 'NotImplementedError'>, NotImplementedError('keys'…
3557 …l.extend([{"abcF" : FailingMappingKey()}]):(<class 'NotImplementedError'>, NotImplementedError('ge…
3558 …l.extend([{"abcF" : FailingNumber()}]):(<class 'NotImplementedError'>, NotImplementedError('int',))
3561 …l.extend([Mapping({1 : 1})]):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, …
3562 … l.extend([Mapping({b"\0" : 1})]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3563 l.extend([Mapping({"\0" : 1})]):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3566 …l.extend([Mapping({"abcG" : {1 : 1}})]):(<class 'TypeError'>, TypeError('expected bytes() or str()…
3567 …l.extend([Mapping({"abcG" : {b"\0" : 1}})]):(<class 'TypeError'>, TypeError('expected bytes with n…
3568 …l.extend([Mapping({"abcG" : {"\0" : 1}})]):(<class 'TypeError'>, TypeError('expected bytes with no…
3571 …l.extend([Mapping({"abcG" : Mapping({1 : 1})})]):(<class 'TypeError'>, TypeError('expected bytes()…
3572 …l.extend([Mapping({"abcG" : Mapping({b"\0" : 1})})]):(<class 'TypeError'>, TypeError('expected byt…
3573 …l.extend([Mapping({"abcG" : Mapping({"\0" : 1})})]):(<class 'TypeError'>, TypeError('expected byte…
3576 …l.extend([Mapping({"abcG" : FailingIter()})]):(<class 'TypeError'>, TypeError('unable to convert F…
3577 …l.extend([Mapping({"abcG" : FailingIterNext()})]):(<class 'NotImplementedError'>, NotImplementedEr…
3581 …l.extend([Mapping({"abcG" : {b"": 1}})]):(<class 'ValueError'>, ValueError('empty keys are not all…
3582 …l.extend([Mapping({"abcG" : {"": 1}})]):(<class 'ValueError'>, ValueError('empty keys are not allo…
3583 …l.extend([Mapping({"abcG" : FailingMapping()})]):(<class 'NotImplementedError'>, NotImplementedErr…
3584 …l.extend([Mapping({"abcG" : FailingMappingKey()})]):(<class 'NotImplementedError'>, NotImplemented…
3585 …l.extend([Mapping({"abcG" : FailingNumber()})]):(<class 'NotImplementedError'>, NotImplementedErro…
3588 …l.extend([FailingIter()]):(<class 'TypeError'>, TypeError('unable to convert FailingIter to a Vim …
3589 l.extend([FailingIterNext()]):(<class 'NotImplementedError'>, NotImplementedError('next',))
3593 l.extend([{b"": 1}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3594 l.extend([{"": 1}]):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3595 l.extend([FailingMapping()]):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3596 …l.extend([FailingMappingKey()]):(<class 'NotImplementedError'>, NotImplementedError('getitem:mappi…
3597 l.extend([FailingNumber()]):(<class 'NotImplementedError'>, NotImplementedError('int',))
3600 del l.locked:(<class 'AttributeError'>, AttributeError('cannot delete vim.List attributes',))
3601 l.locked = FailingTrue():(<class 'NotImplementedError'>, NotImplementedError('bool',))
3602 l.xxx = True:(<class 'AttributeError'>, AttributeError('cannot set attribute xxx',))
3606 vim.Function("123"):(<class 'ValueError'>, ValueError('unnamed function 123 does not exist',))
3607 …vim.Function("xxx_non_existent_function_xxx"):(<class 'ValueError'>, ValueError('function xxx_non_…
3609 …vim.Function("xxx_non_existent_function_xxx2", args=[]):(<class 'ValueError'>, ValueError('functio…
3610 …vim.Function("xxx_non_existent_function_xxx3", self={}):(<class 'ValueError'>, ValueError('functio…
3611 …vim.Function("xxx_non_existent_function_xxx4", args=[], self={}):(<class 'ValueError'>, ValueError…
3613 vim.Function("tr", self="abcFuncSelf"):(<class 'AttributeError'>, AttributeError('keys',))
3614 …vim.Function("tr", args=427423):(<class 'TypeError'>, TypeError('unable to convert int to a Vim li…
3615 …vim.Function("tr", self="abcFuncSelf2", args="abcFuncArgs2"):(<class 'AttributeError'>, AttributeE…
3616 …vim.Function(self="abcFuncSelf2", args="abcFuncArgs2"):(<class 'AttributeError'>, AttributeError('…
3617 …vim.Function("tr", "", self="abcFuncSelf2", args="abcFuncArgs2"):(<class 'AttributeError'>, Attrib…
3618 …vim.Function("tr", ""):(<class 'TypeError'>, TypeError('function takes exactly 1 argument (2 given…
3621 f({1 : 1}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int',))
3622 f({b"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3623 f({"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3626 …f({"abcF" : {1 : 1}}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got…
3627 f({"abcF" : {b"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3628 f({"abcF" : {"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3631 …f({"abcF" : Mapping({1 : 1})}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance…
3632 …f({"abcF" : Mapping({b"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3633 … f({"abcF" : Mapping({"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3636 …f({"abcF" : FailingIter()}):(<class 'TypeError'>, TypeError('unable to convert FailingIter to a Vi…
3637 f({"abcF" : FailingIterNext()}):(<class 'NotImplementedError'>, NotImplementedError('next',))
3641 f({"abcF" : {b"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3642 f({"abcF" : {"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3643 f({"abcF" : FailingMapping()}):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3644 …f({"abcF" : FailingMappingKey()}):(<class 'NotImplementedError'>, NotImplementedError('getitem:map…
3645 f({"abcF" : FailingNumber()}):(<class 'NotImplementedError'>, NotImplementedError('int',))
3648 …f(Mapping({1 : 1})):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got i…
3649 f(Mapping({b"\0" : 1})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3650 f(Mapping({"\0" : 1})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3653 …f(Mapping({"abcG" : {1 : 1}})):(<class 'TypeError'>, TypeError('expected bytes() or str() instance…
3654 …f(Mapping({"abcG" : {b"\0" : 1}})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3655 … f(Mapping({"abcG" : {"\0" : 1}})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3658 …f(Mapping({"abcG" : Mapping({1 : 1})})):(<class 'TypeError'>, TypeError('expected bytes() or str()…
3659 …f(Mapping({"abcG" : Mapping({b"\0" : 1})})):(<class 'TypeError'>, TypeError('expected bytes with n…
3660 …f(Mapping({"abcG" : Mapping({"\0" : 1})})):(<class 'TypeError'>, TypeError('expected bytes with no…
3663 …f(Mapping({"abcG" : FailingIter()})):(<class 'TypeError'>, TypeError('unable to convert FailingIte…
3664 …f(Mapping({"abcG" : FailingIterNext()})):(<class 'NotImplementedError'>, NotImplementedError('next…
3668 … f(Mapping({"abcG" : {b"": 1}})):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3669 f(Mapping({"abcG" : {"": 1}})):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3670 …f(Mapping({"abcG" : FailingMapping()})):(<class 'NotImplementedError'>, NotImplementedError('keys'…
3671 …f(Mapping({"abcG" : FailingMappingKey()})):(<class 'NotImplementedError'>, NotImplementedError('ge…
3672 …f(Mapping({"abcG" : FailingNumber()})):(<class 'NotImplementedError'>, NotImplementedError('int',))
3675 …f(FailingIter()):(<class 'TypeError'>, TypeError('unable to convert FailingIter to a Vim structure…
3676 f(FailingIterNext()):(<class 'NotImplementedError'>, NotImplementedError('next',))
3680 f({b"": 1}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3681 f({"": 1}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3682 f(FailingMapping()):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3683 … f(FailingMappingKey()):(<class 'NotImplementedError'>, NotImplementedError('getitem:mappingkey',))
3684 f(FailingNumber()):(<class 'NotImplementedError'>, NotImplementedError('int',))
3687 …fd(self={1 : 1}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but got int'…
3688 fd(self={b"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3689 fd(self={"\0" : 1}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3692 …fd(self={"abcF" : {1 : 1}}):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, b…
3693 fd(self={"abcF" : {b"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3694 fd(self={"abcF" : {"\0" : 1}}):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3697 …fd(self={"abcF" : Mapping({1 : 1})}):(<class 'TypeError'>, TypeError('expected bytes() or str() in…
3698 …fd(self={"abcF" : Mapping({b"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes with no n…
3699 …fd(self={"abcF" : Mapping({"\0" : 1})}):(<class 'TypeError'>, TypeError('expected bytes with no nu…
3702 …fd(self={"abcF" : FailingIter()}):(<class 'TypeError'>, TypeError('unable to convert FailingIter t…
3703 …fd(self={"abcF" : FailingIterNext()}):(<class 'NotImplementedError'>, NotImplementedError('next',))
3707 fd(self={"abcF" : {b"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3708 fd(self={"abcF" : {"": 1}}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3709 … fd(self={"abcF" : FailingMapping()}):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3710 …fd(self={"abcF" : FailingMappingKey()}):(<class 'NotImplementedError'>, NotImplementedError('getit…
3711 fd(self={"abcF" : FailingNumber()}):(<class 'NotImplementedError'>, NotImplementedError('int',))
3714 …fd(self=Mapping({1 : 1})):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, but…
3715 fd(self=Mapping({b"\0" : 1})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3716 fd(self=Mapping({"\0" : 1})):(<class 'TypeError'>, TypeError('expected bytes with no null',))
3719 …fd(self=Mapping({"abcG" : {1 : 1}})):(<class 'TypeError'>, TypeError('expected bytes() or str() in…
3720 …fd(self=Mapping({"abcG" : {b"\0" : 1}})):(<class 'TypeError'>, TypeError('expected bytes with no n…
3721 …fd(self=Mapping({"abcG" : {"\0" : 1}})):(<class 'TypeError'>, TypeError('expected bytes with no nu…
3724 …fd(self=Mapping({"abcG" : Mapping({1 : 1})})):(<class 'TypeError'>, TypeError('expected bytes() or…
3725 …fd(self=Mapping({"abcG" : Mapping({b"\0" : 1})})):(<class 'TypeError'>, TypeError('expected bytes …
3726 …fd(self=Mapping({"abcG" : Mapping({"\0" : 1})})):(<class 'TypeError'>, TypeError('expected bytes w…
3729 …fd(self=Mapping({"abcG" : FailingIter()})):(<class 'TypeError'>, TypeError('unable to convert Fail…
3730 …fd(self=Mapping({"abcG" : FailingIterNext()})):(<class 'NotImplementedError'>, NotImplementedError…
3734 …fd(self=Mapping({"abcG" : {b"": 1}})):(<class 'ValueError'>, ValueError('empty keys are not allowe…
3735 …fd(self=Mapping({"abcG" : {"": 1}})):(<class 'ValueError'>, ValueError('empty keys are not allowed…
3736 …fd(self=Mapping({"abcG" : FailingMapping()})):(<class 'NotImplementedError'>, NotImplementedError(…
3737 …fd(self=Mapping({"abcG" : FailingMappingKey()})):(<class 'NotImplementedError'>, NotImplementedErr…
3738 …fd(self=Mapping({"abcG" : FailingNumber()})):(<class 'NotImplementedError'>, NotImplementedError('…
3741 …fd(self=FailingIter()):(<class 'TypeError'>, TypeError('unable to convert FailingIter to a Vim dic…
3742 …fd(self=FailingIterNext()):(<class 'TypeError'>, TypeError('unable to convert FailingIterNext to a…
3745 … fd(self=None):(<class 'TypeError'>, TypeError('unable to convert NoneType to a Vim dictionary',))
3746 fd(self={b"": 1}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3747 fd(self={"": 1}):(<class 'ValueError'>, ValueError('empty keys are not allowed',))
3748 fd(self=FailingMapping()):(<class 'NotImplementedError'>, NotImplementedError('keys',))
3749 …fd(self=FailingMappingKey()):(<class 'NotImplementedError'>, NotImplementedError('getitem:mappingk…
3750 …fd(self=FailingNumber()):(<class 'TypeError'>, TypeError('unable to convert FailingNumber to a Vim…
3753 fd(self=[]):(<class 'AttributeError'>, AttributeError('keys',))
3757 …vim.current.tabpage.xxx:(<class 'AttributeError'>, AttributeError("'vim.tabpage' object has no att…
3760 vim.tabpages[1000]:(<class 'IndexError'>, IndexError('no such tab page',))
3763 …vim.current.window.xxx:(<class 'AttributeError'>, AttributeError("'vim.window' object has no attri…
3765 vim.current.window.buffer = 0:(<class 'TypeError'>, TypeError('readonly attribute: buffer',))
3766 …vim.current.window.cursor = (100000000, 100000000):(<class 'vim.error'>, error('cursor position ou…
3767 …vim.current.window.cursor = True:(<class 'TypeError'>, TypeError('argument must be 2-item sequence…
3769 …vim.current.window.height = []:(<class 'TypeError'>, TypeError('expected int() or something suppor…
3770 …vim.current.window.height = None:(<class 'TypeError'>, TypeError('expected int() or something supp…
3771 …vim.current.window.height = -1:(<class 'ValueError'>, ValueError('number must be greater or equal …
3774 …vim.current.window.width = []:(<class 'TypeError'>, TypeError('expected int() or something support…
3775 …vim.current.window.width = None:(<class 'TypeError'>, TypeError('expected int() or something suppo…
3776 …vim.current.window.width = -1:(<class 'ValueError'>, ValueError('number must be greater or equal t…
3778 vim.current.window.xxxxxx = True:(<class 'AttributeError'>, AttributeError('xxxxxx',))
3781 vim.windows[1000]:(<class 'IndexError'>, IndexError('no such window',))
3784 vim.current.buffer[0] = "\na":(<class 'vim.error'>, error('string cannot contain newlines',))
3785 vim.current.buffer[0] = b"\na":(<class 'vim.error'>, error('string cannot contain newlines',))
3787 …vim.current.buffer[0] = True:(<class 'TypeError'>, TypeError('bad argument type for built-in opera…
3789 …vim.current.buffer[:] = True:(<class 'TypeError'>, TypeError('bad argument type for built-in opera…
3790 …vim.current.buffer[:] = ["\na", "bc"]:(<class 'vim.error'>, error('string cannot contain newlines'…
3792 …vim.current.buffer.append(None):(<class 'TypeError'>, TypeError('bad argument type for built-in op…
3793 …vim.current.buffer.append(["\na", "bc"]):(<class 'vim.error'>, error('string cannot contain newlin…
3794 … vim.current.buffer.append("\nbc"):(<class 'vim.error'>, error('string cannot contain newlines',))
3796 vim.current.buffer[100000000]:(<class 'IndexError'>, IndexError('line number out of range',))
3798 … vim.current.buffer[100000000] = "":(<class 'IndexError'>, IndexError('line number out of range',))
3800 …vim.current.buffer.xxx:(<class 'AttributeError'>, AttributeError("'vim.buffer' object has no attri…
3802 …vim.current.buffer.name = True:(<class 'TypeError'>, TypeError('expected bytes() or str() instance…
3803 vim.current.buffer.xxx = True:(<class 'AttributeError'>, AttributeError('xxx',))
3805 …vim.current.buffer.mark(0):(<class 'TypeError'>, TypeError('expected bytes() or str() instance, bu…
3806 …vim.current.buffer.mark("abcM"):(<class 'ValueError'>, ValueError('mark name must be a single char…
3807 vim.current.buffer.mark("!"):(<class 'vim.error'>, error('invalid mark name',))
3809 …vim.current.buffer.range(1, 2, 3):(<class 'TypeError'>, TypeError('function takes exactly 2 argume…
3812 vim.buffers[100000000]:(<class 'KeyError'>, KeyError(100000000,))
3814 …vim.buffers[[]]:(<class 'TypeError'>, TypeError('expected int() or something supporting coercing t…
3815 …vim.buffers[None]:(<class 'TypeError'>, TypeError('expected int() or something supporting coercing…
3816 vim.buffers[-1]:(<class 'ValueError'>, ValueError('number must be greater than zero',))
3817 vim.buffers[0]:(<class 'ValueError'>, ValueError('number must be greater than zero',))
3821 …vim.current.xxx:(<class 'AttributeError'>, AttributeError("'vim.currentdata' object has no attribu…
3823 …vim.current.line = True:(<class 'TypeError'>, TypeError('bad argument type for built-in operation'…
3824 …vim.current.buffer = True:(<class 'TypeError'>, TypeError('expected vim.Buffer object, but got boo…
3825 …vim.current.window = True:(<class 'TypeError'>, TypeError('expected vim.Window object, but got boo…
3826 …vim.current.tabpage = True:(<class 'TypeError'>, TypeError('expected vim.TabPage object, but got b…
3827 vim.current.xxx = True:(<class 'AttributeError'>, AttributeError('xxx',))
3925 vim.command("throw 'abcN'"):(<class 'vim.error'>, error('abcN',))
3926 Exe("throw 'def'"):(<class 'vim.error'>, error('def',))
3927 vim.eval("Exe('throw ''ghi''')"):(<class 'vim.error'>, error('ghi',))
3928 vim.eval("Exe('echoerr ''jkl''')"):(<class 'vim.error'>, error('Vim(echoerr):jkl',))
3929 …vim.eval("Exe('xxx_non_existent_command_xxx')"):(<class 'vim.error'>, error('Vim:E492: Not an edit…
3930 …vim.eval("xxx_unknown_function_xxx()"):(<class 'vim.error'>, error('Vim:E117: Unknown function: xx…
3931 …vim.bindeval("Exe('xxx_non_existent_command_xxx')"):(<class 'vim.error'>, error('Vim:E492: Not an …