--- a/QScintilla/Shell.py Tue Oct 15 22:03:54 2013 +0200 +++ b/QScintilla/Shell.py Fri Oct 18 23:00:41 2013 +0200 @@ -886,6 +886,8 @@ def __isCursorOnLastLine(self): """ Private method to check, if the cursor is on the last line. + + @return flag indicating that the cursor is on the last line (boolean) """ cline, ccol = self.getCursorPosition() return cline == self.lines() - 1