You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enter max('', *[], key=len) and execute it. Now go back in the history (arrow up), change *[] to '2' and execute it again. Notice how it executes the correct code, but the line changes back to max('', *[], key=len).
A git bisect say that the issue was introduced in 648d0b2.
The text was updated successfully, but these errors were encountered:
This is due to unhighlight_paren, but hard to imagine how the code in 648d0b2 is responsible. Reminder to me to write a test for it before trying to fix it!
Enter
max('', *[], key=len)
and execute it. Now go back in the history (arrow up), change*[]
to'2'
and execute it again. Notice how it executes the correct code, but the line changes back tomax('', *[], key=len)
.A git bisect say that the issue was introduced in 648d0b2.
The text was updated successfully, but these errors were encountered: