eric6/QScintilla/SpellChecker.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 6942
2602857055c5
child 7229
53054eb5b15a
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
544 self.replace(self.__replaceWords[word]) 544 self.replace(self.__replaceWords[word])
545 continue 545 continue
546 return self 546 return self
547 547
548 raise StopIteration 548 raise StopIteration
549
550 if sys.version_info.major == 2:
551 def next(self):
552 """
553 Public method to advance to the next error.
554
555 @return self
556 """
557 return self.__next__()

eric ide

mercurial