src/eric7/QtHelpInterface/QtHelpSchemeHandler.py

branch
eric7
changeset 10431
64157aeb0312
parent 9686
2eee7a645cba
child 10439
21c28b0f9e41
--- a/src/eric7/QtHelpInterface/QtHelpSchemeHandler.py	Wed Dec 20 19:28:22 2023 +0100
+++ b/src/eric7/QtHelpInterface/QtHelpSchemeHandler.py	Thu Dec 21 12:03:40 2023 +0100
@@ -193,8 +193,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)
@@ -210,8 +212,10 @@
         """
         Private method to guess the mime type given an URL.
 
-        @param url URL to guess the mime type from (QUrl)
-        @return mime type for the given URL (string)
+        @param url URL to guess the mime type from
+        @type QUrl
+        @return mime type for the given URL
+        @rtype str
         """
         path = url.path()
         ext = os.path.splitext(path)[1].lower()

eric ide

mercurial