﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33069	Comment to match code in django.form.widget.Widget.value_from_datadict	Michael	nobody	"The comment says it returns `None` if not provided,  maybe you are expecting a default dict to be passed in as `data`, in which case this ticket is invalid, but if it is a normal dict:

django/form/widget.py line 258 (class Widget):
{{{
    def value_from_datadict(self, data, files, name):
        """"""
        Given a dictionary of data and this widget's name, return the value
        of this widget or None if it's not provided.
        """"""
        return data.get(name)
}}}

then either the comment needs to trim `or None if it's not provided` or the code changed to `data.get(name, None)`"	Uncategorized	closed	Uncategorized	3.2	Normal	invalid			Unreviewed	0	0	0	0	1	0
