[Lxml-checkins] r44555 - lxml/branch/html/src/lxml/html

ianb at codespeak.net ianb at codespeak.net
Wed Jun 27 00:59:13 CEST 2007


Author: ianb
Date: Wed Jun 27 00:59:12 2007
New Revision: 44555

Modified:
   lxml/branch/html/src/lxml/html/formfill.py
Log:
put all public objects in __all__

Modified: lxml/branch/html/src/lxml/html/formfill.py
==============================================================================
--- lxml/branch/html/src/lxml/html/formfill.py	(original)
+++ lxml/branch/html/src/lxml/html/formfill.py	Wed Jun 27 00:59:12 2007
@@ -2,7 +2,9 @@
 from lxml.html import parse, tostring
 from lxml.html import defs
 
-__all__ = ['FormNotFound', 'fill_form']
+__all__ = ['FormNotFound', 'fill_form', 'fill_form_html',
+           'insert_errors', 'insert_errors_html',
+           'DefaultErrorCreator']
 
 class FormNotFound(LookupError):
     """


More information about the lxml-checkins mailing list