1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Changed the fix from [5231] so that the backwards-incompatibility is made more

obvious and everything still has nice names.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@5237 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick
2007-05-14 16:24:51 +00:00
parent 41fbd35613
commit b996e214c0
7 changed files with 81 additions and 78 deletions

View File

@@ -46,6 +46,6 @@ doesn't come back.
>>> f = DataForm({'data': 'xyzzy'})
>>> f.is_valid()
True
>>> f.clean_data
>>> f.cleaned_data
{'data': u'xyzzy'}
"""