Ticket #8194: 8194_against_8752.diff

File 8194_against_8752.diff, 441 bytes (added by Fred Bartle, 16 years ago)

Allows access to BoundField

  • django/forms/forms.py

     
    1313from widgets import Media, media_property, TextInput, Textarea
    1414from util import flatatt, ErrorDict, ErrorList, ValidationError
    1515
    16 __all__ = ('BaseForm', 'Form')
     16__all__ = ('BaseForm', 'Form', 'BoundField')
    1717
    1818NON_FIELD_ERRORS = '__all__'
    1919
Back to Top