comparison: QScintilla/SpellChecker.py
QScintilla/SpellChecker.py
- changeset 97
- c4086afea02b
- parent 13
- 1af94a91f439
- child 774
- 78581c534c74
equal
deleted
inserted
replaced
444 def __iter__(self): |
444 def __iter__(self): |
445 """ |
445 """ |
446 Private method to create an iterator. |
446 Private method to create an iterator. |
447 """ |
447 """ |
448 return self |
448 return self |
449 |
|
450 def __next__(self): |
|
451 """ |
|
452 Private method to advance to the next error. |
|
453 """ |
|
454 |
449 |
455 def __next__(self): |
450 def __next__(self): |
456 """ |
451 """ |
457 Public method to advance to the next error. |
452 Public method to advance to the next error. |
458 |
453 |