diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2007-08-31 05:43:21 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2007-08-31 05:43:21 +0000 |
| commit | 7405446b2e7ab27a40d768edbc928f66f9da5652 (patch) | |
| tree | c56cbc3d166238cf59d822c0dd8751c18e8ae825 /django/newforms/formsets.py | |
| parent | 2a45bdf9acc7bd057ece6ad9367a335437726fd9 (diff) | |
newforms-admin: Made import visibility of formsets and Media consistent with that of fields, widgets and forms.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6029 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/newforms/formsets.py')
| -rw-r--r-- | django/newforms/formsets.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/newforms/formsets.py b/django/newforms/formsets.py index 38982b47de..ef1083ba28 100644 --- a/django/newforms/formsets.py +++ b/django/newforms/formsets.py @@ -2,6 +2,8 @@ from forms import Form, ValidationError from fields import IntegerField, BooleanField from widgets import HiddenInput, Media +__all__ = ('BaseFormSet', 'formset_for_form', 'all_valid') + # special field names FORM_COUNT_FIELD_NAME = 'COUNT' ORDERING_FIELD_NAME = 'ORDER' |
