blob: dae1ba9955e03c3e35cbd91cd85df4e7ecdc12d3 [file] [log] [blame]
'foo'.startswith('bar')
'foo'.startswith(('bar', 'baz'))
'foo'.startswith(<warning descr="Expected type 'str | unicode | tuple', got 'int' instead">2</warning>)
u'foo'.startswith(u'bar')
u'foo'.startswith((u'bar', u'baz'))
u'foo'.startswith(<warning descr="Expected type 'str | unicode | tuple', got 'int' instead">2</warning>)