eric6/QScintilla/Lexers/LexerPython.py

changeset 8260
2161475d9639
parent 8259
2bbec88047dd
equal deleted inserted replaced
8259:2bbec88047dd 8260:2161475d9639
184 indentDifference = ( 184 indentDifference = (
185 last - lead_spaces 185 last - lead_spaces
186 if (lead_spaces % indent_width != 0 or 186 if (lead_spaces % indent_width != 0 or
187 lead_spaces == 0 or 187 lead_spaces == 0 or
188 self.lastIndented != line) else 188 self.lastIndented != line) else
189 -indent_width 189 -indent_width # __IGNORE_WARNING_W503__
190 ) 190 )
191 191
192 return indentDifference 192 return indentDifference
193 193
194 def autoCompletionWordSeparators(self): 194 def autoCompletionWordSeparators(self):

eric ide

mercurial