https://bugs.kde.org/show_bug.cgi?id=373850
--- Comment #4 from Francis Herne <m...@flherne.uk> --- Git commit 2049938304a0a8b65240d551117c8c169ee60ece by Francis Herne. Committed on 25/12/2016 at 10:56. Pushed by flherne into branch 'master'. Set mostly-correct endCol on numbers, single-quoted strings and subscripts. Before, endCol of number/string literals was identical to startCol; endCol of subscripts was the end of their slice node. This caused highlighting glitches when trying to position things after them. Unaddressed: - Triple-quoted (particularly multiline) strings. This gets length 2 (inc. quotes) or does nothing, which is no worse than at present. Such strings are very unusual inside expressions where we care about the length. - Space between the end of a slice and the closing bracket of a subscript: `a = b[ 2 ]`. Recommended against by PEP-8, but happens. This should fix most remaining examples of bug 373850. M +31 -1 parser/astbuilder.cpp https://commits.kde.org/kdev-python/2049938304a0a8b65240d551117c8c169ee60ece -- You are receiving this mail because: You are watching all bug changes.