Helpviewer/Network/FollowRedirectReply.py

changeset 1955
9e6da33c1c10
parent 1953
26aa6fd94dc2
child 2302
f29e9405c851
--- a/Helpviewer/Network/FollowRedirectReply.py	Sun Jul 22 15:32:52 2012 +0200
+++ b/Helpviewer/Network/FollowRedirectReply.py	Mon Jul 23 19:21:44 2012 +0200
@@ -66,6 +66,14 @@
         """
         return self.__reply.error()
     
+    def errorString(self):
+        """
+        Public method to get the error message.
+        
+        @return error message (string)
+        """
+        return self.__reply.errorString()
+    
     def readAll(self):
         """
         Public method to read all received data.
@@ -74,6 +82,12 @@
         """
         return self.__reply.readAll()
     
+    def close(self):
+        """
+        Public method to close the data stream.
+        """
+        self.__reply.close()
+    
     def __replyFinished(self):
         """
         Private slot handling the receipt of the requested data.

eric ide

mercurial