add __all__ variable to many modules

This commit is contained in:
Christophe Benz 2010-04-16 18:02:03 +02:00
commit cebcead318
10 changed files with 38 additions and 2 deletions

View file

@ -26,6 +26,9 @@ except ImportError, e:
from mechanize import CookieJar, Cookie
__all__ = ['FirefoxCookieJar']
class FirefoxCookieJar(CookieJar):
def __init__(self, domain, sqlite_file=None, policy=None):
CookieJar.__init__(self, policy)