[wwwsearch-commits] r43644 - wwwsearch/ClientForm/trunk

jjlee at codespeak.net jjlee at codespeak.net
Fri May 25 20:44:45 CEST 2007


Author: jjlee
Date: Fri May 25 20:44:44 2007
New Revision: 43644

Modified:
   wwwsearch/ClientForm/trunk/ClientForm.py
Log:
Add an __all__

Modified: wwwsearch/ClientForm/trunk/ClientForm.py
==============================================================================
--- wwwsearch/ClientForm/trunk/ClientForm.py	(original)
+++ wwwsearch/ClientForm/trunk/ClientForm.py	Fri May 25 20:44:44 2007
@@ -15,7 +15,7 @@
 HTML 4.01 Specification, W3C Recommendation 24 December 1999
 
 
-Copyright 2002-2006 John J. Lee <jjl at pobox.com>
+Copyright 2002-2007 John J. Lee <jjl at pobox.com>
 Copyright 2005 Gary Poster
 Copyright 2005 Zope Corporation
 Copyright 1998-2000 Gisle Aas.
@@ -27,7 +27,6 @@
 """
 
 # XXX
-# add an __all__
 # Remove parser testing hack
 # safeUrl()-ize action
 # Switch to unicode throughout (would be 0.3.x)
@@ -57,6 +56,16 @@
 # Work on DOMForm.
 # XForms?  Don't know if there's a need here.
 
+__all__ = ['AmbiguityError', 'CheckboxControl', 'Control',
+           'ControlNotFoundError', 'FileControl', 'FormParser', 'HTMLForm',
+           'HiddenControl', 'IgnoreControl', 'ImageControl', 'IsindexControl',
+           'Item', 'ItemCountError', 'ItemNotFoundError', 'Label',
+           'ListControl', 'LocateError', 'Missing', 'NestingRobustFormParser',
+           'ParseError', 'ParseFile', 'ParseFileEx', 'ParseResponse',
+           'ParseResponseEx', 'PasswordControl', 'RadioControl',
+           'RobustFormParser', 'ScalarControl', 'SelectControl',
+           'SubmitButtonControl', 'SubmitControl', 'TextControl',
+           'TextareaControl', 'XHTMLCompatibleFormParser']
 
 try: True
 except NameError:


More information about the wwwsearch-commits mailing list