summaryrefslogtreecommitdiff
path: root/django/newforms/forms.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-05-20 20:59:24 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-05-20 20:59:24 +0000
commitc2cdd2d4b43e65d0b7e900fd5e12f6abd4e1e29c (patch)
tree1506f6339770ed1feb52aa9410b93cfe22be4bf8 /django/newforms/forms.py
parent433659139596a75eab03940ea2029970de6ee287 (diff)
newforms-admin: Merged to [5300]
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@5301 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/newforms/forms.py')
-rw-r--r--django/newforms/forms.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/django/newforms/forms.py b/django/newforms/forms.py
index 0eec71a516..a6409d8504 100644
--- a/django/newforms/forms.py
+++ b/django/newforms/forms.py
@@ -2,13 +2,15 @@
Form classes
"""
-from django.utils.datastructures import SortedDict, MultiValueDict
+import copy
+
+from django.utils.datastructures import SortedDict
from django.utils.html import escape
from django.utils.encoding import StrAndUnicode
+
from fields import Field
-from widgets import TextInput, Textarea, HiddenInput, MultipleHiddenInput
+from widgets import TextInput, Textarea
from util import flatatt, ErrorDict, ErrorList, ValidationError
-import copy
__all__ = ('BaseForm', 'Form')