Clears all cookies and history.
(self)
| 42 | return self.data.decode("utf-8") |
| 43 | |
| 44 | def reset(self): |
| 45 | """Clears all cookies and history.""" |
| 46 | self.cookiejar.clear() |
| 47 | |
| 48 | def build_opener(self): |
| 49 | """Builds the opener using (urllib2/urllib.request).build_opener. |