[Zope3-checkins] SVN: zope.testing/trunk/src/zope/testing/formparser.py add a comment about a possible useful extension

Fred L. Drake, Jr. fdrake at gmail.com
Wed Jul 13 10:46:04 EDT 2005


Log message for revision 33297:
  add a comment about a possible useful extension

Changed:
  U   zope.testing/trunk/src/zope/testing/formparser.py

-=-
Modified: zope.testing/trunk/src/zope/testing/formparser.py
===================================================================
--- zope.testing/trunk/src/zope/testing/formparser.py	2005-07-13 14:07:13 UTC (rev 33296)
+++ zope.testing/trunk/src/zope/testing/formparser.py	2005-07-13 14:46:04 UTC (rev 33297)
@@ -170,6 +170,10 @@
 class Form(dict):
     """A specific form within a page."""
 
+    # This object should provide some method to prepare a dictionary
+    # that can be passed directly as the value of the `form` argument
+    # to the `http()` function of the Zope functional test.
+
     def __init__(self, name, id, method, action, enctype):
         super(Form, self).__init__()
         self.name = name



More information about the Zope3-Checkins mailing list