parenthetical expressions autocomplete incorrectly
Brought to you by:
fabioz
x = Foo()
x.<content assist>
gives completions for Foo's methods and attributes, as expected; however,
x = (Foo())
x.<content assist>
gives completions for the 'tuple' built-in type's methods and attributes. I suspect this is because parentheses are misparsed somewhere as starting a tuple, where the parser should really be only looking for the comma.