Lines Matching refs:extend

369   py l.extend([1, "as'd", [1, 2, f, {'a': 1}]])
671 py l.extend(list(l[0](1, 2, 3)))
673 py l.extend(list(l[1](1, 2, 3, self={'a': 'b'})))
675 py l.extend([l[0].name])
692 py l.extend([0.0])
706 m.extend([sys.exc_type.__name__])
757 silent! call extend(l, [0])
758 silent! call extend(ll, [0])
761 silent! call extend(l, [1])
762 silent! call extend(ll, [1])
876 l.extend([frame.f_lineno])
1935 list:__dir__,__members__,extend,locked
2381 dl.extend(dl2[0])
2727 iter_test('l.extend(%s)')
2728 convertfrompyobject_test('l.extend([%s])')
3341 >>> Testing *Iter* using l.extend(%s)
3342 l.extend(FailingIter()):NotImplementedError:('iter',)
3343 l.extend(FailingIterNext()):NotImplementedError:('next',)
3345 >>> Testing StringToChars using l.extend([{%s : 1}])
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',)
3350 >>> Testing StringToChars using l.extend([{"abcF" : {%s : 1}}])
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',)
3355 >>> Testing StringToChars using l.extend([{"abcF" : Mapping({%s : 1})}])
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',)
3360 >>> Testing *Iter* using l.extend([{"abcF" : %s}])
3361 …l.extend([{"abcF" : FailingIter()}]):TypeError:('unable to convert FailingIter to a Vim structure'…
3362 l.extend([{"abcF" : FailingIterNext()}]):NotImplementedError:('next',)
3364 >>> Testing ConvertFromPyObject using l.extend([{"abcF" : %s}])
3365 l.extend([{"abcF" : None}]):NOT FAILED
3366 l.extend([{"abcF" : {"": 1}}]):ValueError:('empty keys are not allowed',)
3367 l.extend([{"abcF" : {u"": 1}}]):ValueError:('empty keys are not allowed',)
3368 l.extend([{"abcF" : FailingMapping()}]):NotImplementedError:('keys',)
3369 l.extend([{"abcF" : FailingMappingKey()}]):NotImplementedError:('getitem:mappingkey',)
3370 … l.extend([{"abcF" : FailingNumber()}]):TypeError:('long() argument must be a string or a number',)
3372 >>> Testing StringToChars using l.extend([Mapping({%s : 1})])
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',)
3377 >>> Testing StringToChars using l.extend([Mapping({"abcG" : {%s : 1}})])
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',)
3382 >>> Testing StringToChars using l.extend([Mapping({"abcG" : Mapping({%s : 1})})])
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…
3387 >>> Testing *Iter* using l.extend([Mapping({"abcG" : %s})])
3388 …l.extend([Mapping({"abcG" : FailingIter()})]):TypeError:('unable to convert FailingIter to a Vim s…
3389 l.extend([Mapping({"abcG" : FailingIterNext()})]):NotImplementedError:('next',)
3391 >>> Testing ConvertFromPyObject using l.extend([Mapping({"abcG" : %s})])
3392 l.extend([Mapping({"abcG" : None})]):NOT FAILED
3393 l.extend([Mapping({"abcG" : {"": 1}})]):ValueError:('empty keys are not allowed',)
3394 l.extend([Mapping({"abcG" : {u"": 1}})]):ValueError:('empty keys are not allowed',)
3395 l.extend([Mapping({"abcG" : FailingMapping()})]):NotImplementedError:('keys',)
3396 l.extend([Mapping({"abcG" : FailingMappingKey()})]):NotImplementedError:('getitem:mappingkey',)
3397 …l.extend([Mapping({"abcG" : FailingNumber()})]):TypeError:('long() argument must be a string or a …
3399 >>> Testing *Iter* using l.extend([%s])
3400 l.extend([FailingIter()]):TypeError:('unable to convert FailingIter to a Vim structure',)
3401 l.extend([FailingIterNext()]):NotImplementedError:('next',)
3403 >>> Testing ConvertFromPyObject using l.extend([%s])
3404 l.extend([None]):NOT FAILED
3405 l.extend([{"": 1}]):ValueError:('empty keys are not allowed',)
3406 l.extend([{u"": 1}]):ValueError:('empty keys are not allowed',)
3407 l.extend([FailingMapping()]):NotImplementedError:('keys',)
3408 l.extend([FailingMappingKey()]):NotImplementedError:('getitem:mappingkey',)
3409 l.extend([FailingNumber()]):TypeError:('long() argument must be a string or a number',)