--- a/src/eric7/WebBrowser/Network/EricSchemeHandler.py Fri Dec 22 13:57:47 2023 +0100 +++ b/src/eric7/WebBrowser/Network/EricSchemeHandler.py Fri Dec 22 17:24:07 2023 +0100 @@ -135,8 +135,10 @@ """ Public method to retrieve data from the reply object. - @param maxlen maximum number of bytes to read (integer) - @return string containing the data (bytes) + @param maxlen maximum number of bytes to read + @type int + @return string containing the data + @rtype bytes """ with EricMutexLocker(self.__mutex): return self.__buffer.read(maxlen)