see HTTPRequest for argument list
(self, *args, **kwargs)
| 66 | return HTTPRequest(CookieJar(None), options) |
| 67 | |
| 68 | def getURL(self, *args, **kwargs): |
| 69 | """ see HTTPRequest for argument list """ |
| 70 | h = HTTPRequest(None, self.getOptions()) |
| 71 | try: |
| 72 | rep = h.load(*args, **kwargs) |
| 73 | finally: |
| 74 | h.close() |
| 75 | |
| 76 | return rep |
| 77 | |
| 78 | def getCookieJar(self, pluginName, account=None): |
| 79 | if (pluginName, account) in self.cookiejars: |
no test coverage detected