summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-02-15 03:46:43 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-02-15 03:46:43 +0000
commit41078ce1465112ceab03638b2893863b2223be2f (patch)
treeb8b2be2db550912288e8e5abd6cf09f7248e1af5
parent2ec2bf698938c81ef8703699bb85eb5d32997631 (diff)
Added empty space in newforms BaseForm.__init__() to visually group a lengthy comment with the code that it's commenting
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4520 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/newforms/forms.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/newforms/forms.py b/django/newforms/forms.py
index 1032d02e35..0ce24d3004 100644
--- a/django/newforms/forms.py
+++ b/django/newforms/forms.py
@@ -61,6 +61,7 @@ class BaseForm(StrAndUnicode):
self.prefix = prefix
self.initial = initial or {}
self.__errors = None # Stores the errors after clean() has been called.
+
# The base_fields class attribute is the *class-wide* definition of
# fields. Because a particular *instance* of the class might want to
# alter self.fields, we create self.fields here by copying base_fields.