add the PRIORITY_CONNECTION optimization (closes #319)

This commit is contained in:
Romain Bignon 2010-11-11 14:12:59 +01:00
commit fd3ccda664
6 changed files with 174 additions and 13 deletions

View file

@ -184,6 +184,12 @@ class AuMBrowser(BaseBrowser):
self.home()
return self.page.nb_available_charms()
@pageaccess
def nb_godchilds(self, reload=False):
if reload or not self.is_on_page(HomePage):
self.home()
return self.page.nb_godchilds()
@pageaccess
def get_baskets(self):
self.location('/mails.php?type=1')