56 |
56 |
57 def __replyClosed(self): |
57 def __replyClosed(self): |
58 """ |
58 """ |
59 Private slot handling the closed signal of a reply. |
59 Private slot handling the closed signal of a reply. |
60 """ |
60 """ |
61 object = self.sender() |
61 reply = self.sender() |
62 if object and object in self.__replies: |
62 if reply and reply in self.__replies: |
63 self.__replies.remove(object) |
63 self.__replies.remove(reply) |
64 |
64 |
65 |
65 |
66 class EricSchemeReply(QIODevice): |
66 class EricSchemeReply(QIODevice): |
67 """ |
67 """ |
68 Class implementing a reply for a requested eric: page. |
68 Class implementing a reply for a requested eric: page. |