From 41078ce1465112ceab03638b2893863b2223be2f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 15 Feb 2007 03:46:43 +0000 Subject: [PATCH] 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 --- django/newforms/forms.py | 1 + 1 file changed, 1 insertion(+) 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.