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
This commit is contained in:
Adrian Holovaty 2007-02-15 03:46:43 +00:00
parent 2ec2bf6989
commit 41078ce146
1 changed files with 1 additions and 0 deletions

View File

@ -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.