src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Sat Dec 23 15:40:23 2023 +0100
@@ -26,10 +26,14 @@
         """
         Constructor
 
-        @param interval new interval in seconds (integer)
-        @param project reference to the project object (Project)
+        @param interval new interval in seconds
+        @type int
+        @param project reference to the project object
+        @type Project
         @param vcs reference to the version control object
-        @param parent reference to the parent object (QObject)
+        @type Subversion
+        @param parent reference to the parent object
+        @type QObject
         """
         VcsStatusMonitorThread.__init__(self, interval, project, vcs, parent)
 
@@ -53,8 +57,9 @@
             <li>" " path is back at normal</li>
         </ul>
 
-        @return tuple of flag indicating successful operation (boolean) and
-            a status message in case of non successful operation (string)
+        @return tuple of flag indicating successful operation and a status message
+            in case of non successful operation
+        @rtype tuple of (bool, str)
         """
         self.shouldUpdate = False
 
@@ -157,6 +162,7 @@
             by subversion, username and password contain the relevant data
             as strings and save is a flag indicating, that username and
             password should be saved. Always returns (False, "", "", False).
+        @rtype tuple of (bool, str, str, bool)
         """
         return (False, "", "", False)
 
@@ -171,5 +177,6 @@
             acceptedFailures should indicate the accepted certificate failures
             and save should be True, if subversion should save the certificate.
             Always returns (False, 0, False).
+        @rtype tuple of (bool, int, bool)
         """
         return (False, 0, False)

eric ide

mercurial