add __all__ variable to many modules
This commit is contained in:
parent
8638024756
commit
cebcead318
10 changed files with 38 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue