--- a/QScintilla/Shell.py Sun Sep 29 15:54:10 2013 +0200 +++ b/QScintilla/Shell.py Sun Sep 29 18:22:08 2013 +0200 @@ -884,6 +884,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