Lines Matching refs:True
551 call assert_equal('True', pyeval('repr(d.has_key(''0''))'))
553 call assert_equal('True', pyeval('repr(''0'' in d)'))
740 py d.locked = True
759 py l.locked = True
841 self.running = True
1519 call assert_equal('valid: b:False, cb:True', getline(2))
1866 w.valid: [True, False]
1867 t.valid: [True, False, True, False]
1895 vim.vars:Dictionary:True
1896 vim.options:Options:True
1897 vim.bindeval("{}"):Dictionary:True
1898 vim.bindeval("[]"):List:True
1899 vim.bindeval("function('tr')"):Function:True
1900 vim.current.buffer:Buffer:True
1901 vim.current.range:Range:True
1902 vim.current.window:Window:True
1903 vim.current.tabpage:TabPage:True
2018 psa9 = vim.Function('SelfArgs', self={'abcSelfPSA9': 'abcSelfPSA9Val'}, auto_rebind=True)
2063 psa9: <vim.Function 'SelfArgs', self={'abcSelfPSA9': 'abcSelfPSA9Val'}, auto_rebind=True>
2064 …unction 'SelfArgs', args=['abcArgsPSAA'], self={'abcSelfPSAA': 'abcSelfPSAAVal'}, auto_rebind=True>
2460 dl.locked = True
2463 ll.locked = True
2496 def convertfrompyobject_test(expr, recurse=True):
2530 unsigned = True
2602 number_test('sys.stdout.softspace = %s', unsigned=True)
2603 number_test('sys.stderr.softspace = %s', unsigned=True)
2614 ee('assert sys.stdout.writable()==True')
2616 ee('assert sys.stderr.writable()==True')
2672 ee('d.scope = True')
2673 ee('d.xxx = True')
2732 ee('l.xxx = True')
2764 ee('vim.current.window.cursor = True')
2765 number_test('vim.current.window.height = %s', unsigned=True)
2766 number_test('vim.current.window.width = %s', unsigned=True)
2767 ee('vim.current.window.xxxxxx = True')
2776 ee('vim.current.buffer[0] = True')
2778 ee('vim.current.buffer[:] = True')
2791 ee('vim.current.buffer.name = True')
2792 ee('vim.current.buffer.xxx = True')
2802 number_test('vim.buffers[%s]', natural=True)
2807 ee('vim.current.line = True')
2808 ee('vim.current.buffer = True')
2809 ee('vim.current.window = True')
2810 ee('vim.current.tabpage = True')
2811 ee('vim.current.xxx = True')
2865 assert sys.stdout.writable()==True:NOT FAILED
2867 assert sys.stderr.writable()==True:NOT FAILED
2941 d.scope = True:AttributeError:('cannot set attribute scope',)
2942 d.xxx = True:AttributeError:('cannot set attribute xxx',)
3414 l.xxx = True:AttributeError:('cannot set attribute xxx',)
3579 vim.current.window.cursor = True:TypeError:('argument must be 2-item sequence, not bool',)
3590 vim.current.window.xxxxxx = True:AttributeError:('xxxxxx',)
3599 vim.current.buffer[0] = True:TypeError:('bad argument type for built-in operation',)
3601 vim.current.buffer[:] = True:TypeError:('bad argument type for built-in operation',)
3614 vim.current.buffer.name = True:TypeError:('expected str() or unicode() instance, but got bool',)
3615 vim.current.buffer.xxx = True:AttributeError:('xxx',)
3635 vim.current.line = True:TypeError:('bad argument type for built-in operation',)
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',)
3639 vim.current.xxx = True:AttributeError:('xxx',)