Problem Description
If I press to autocomplete a keyword, instead of an = I get a () as a suggestion
What steps reproduce the problem?
def test(argument=True):
pass
# now write
test(argu<tab>
# expected
test(argument=
# instead
test(argument()
This worked fine in previous version. Is this a bug on my side?
- Spyder version: 4.1.2
- Python version: 3.7
- Operating System name/version: Win 10
Problem Description
If I press to autocomplete a keyword, instead of an
=I get a()as a suggestionWhat steps reproduce the problem?
This worked fine in previous version. Is this a bug on my side?