﻿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
17472	RequestContext function with dict={} kwarg paramater fails	anonymous	nobody	"1.4 introduces changes in RequestContext that renders the following non-functional:

{{{
c = RequestContext(request, dict={
        'promotion':            promotion,
        'products_dict':        products_dict,
    })
}}}

The following will work:

{{{
c = RequestContext(request, {
        'promotion':            promotion,
        'products_dict':        products_dict,
    })
}}}

It's probably a good idea to make the 1.4 changes backwards compatible, allowing dict={} as a param to RequestContext.
"	Bug	closed	Template system	1.4-alpha-1	Normal	wontfix	RequestContext		Unreviewed	0	0	0	0	1	0
