diff -r e28b89693f37 -r 299802979277 src/eric7/DebugClients/Python/DebugClientBase.py --- a/src/eric7/DebugClients/Python/DebugClientBase.py Tue Dec 19 11:04:03 2023 +0100 +++ b/src/eric7/DebugClients/Python/DebugClientBase.py Tue Dec 19 19:57:08 2023 +0100 @@ -298,6 +298,7 @@ @param mode kind of code to be generated (exec or eval) @type str @return compiled code object (None in case of errors) + @rtype Code """ with codecs.open(filename, encoding=self.__coding) as fp: statement = fp.read() @@ -315,6 +316,7 @@ @param mode kind of code to be generated (exec or eval) @type str @return compiled code object (None in case of errors) + @rtype Code """ try: code = compile(statement + "\n", filename, mode) @@ -1047,6 +1049,7 @@ Public method called when there is data ready to be read. @param stream file like object that has data to be read + @type file like @return flag indicating an error condition @rtype bool """ @@ -1072,6 +1075,7 @@ Public method called when we are ready to write data. @param stream file like object that has data to be written + @type file like """ stream.write_p("") stream.flush()