Django

Code

Changeset 4889

Show
Ignore:
Timestamp:
04/01/07 00:05:59 (2 years ago)
Author:
mtredinnick
Message:

Tweaked formatting so that comments are readable on 80-char terminals.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/newforms/fields.py

    r4549 r4889  
    3939        # required -- Boolean that specifies whether the field is required. 
    4040        #             True by default. 
    41         # widget -- A Widget class, or instance of a Widget class, that should be 
    42         #         used for this Field when displaying it. Each Field has a default 
    43         #         Widget that it'll use if you don't specify this. In most cases, 
    44         #         the default widget is TextInput. 
    45         # label -- A verbose name for this field, for use in displaying this field in 
    46         #         a form. By default, Django will use a "pretty" version of the form 
    47         #         field name, if the Field is part of a Form. 
    48         # initial -- A value to use in this Field's initial display. This value is 
    49         #            *not* used as a fallback if data isn't given. 
     41        # widget -- A Widget class, or instance of a Widget class, that should 
     42        #           be used for this Field when displaying it. Each Field has a 
     43        #           default Widget that it'll use if you don't specify this. In 
     44        #           most cases, the default widget is TextInput. 
     45        # label -- A verbose name for this field, for use in displaying this 
     46        #          field in a form. By default, Django will use a "pretty" 
     47        #          version of the form field name, if the Field is part of a 
     48        #          Form. 
     49        # initial -- A value to use in this Field's initial display. This value 
     50        #            is *not* used as a fallback if data isn't given. 
    5051        # help_text -- An optional string to use as "help text" for this Field. 
    5152        if label is not None: