Mercurial > hg > CommandParser
changeset 2:d36032625794
add __all__ and whitespace cleanup
| author | Jeff Hammel <jhammel@mozilla.com> | 
|---|---|
| date | Fri, 30 Mar 2012 09:00:18 -0700 | 
| parents | e2a78e13424e | 
| children | 406183d93e48 | 
| files | commandparser/command.py | 
| diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] | 
line wrap: on
 line diff
--- a/commandparser/command.py Thu Mar 29 16:50:23 2012 -0700 +++ b/commandparser/command.py Fri Mar 30 09:00:18 2012 -0700 @@ -9,6 +9,8 @@ from optparse import OptionParser from pprint import pprint +__all__ = ['Undefined', 'CommandParser'] + class Undefined(object): def __init__(self, default): self.default=default
