﻿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
3529	Context.update doesn't do what it says it does	Chris Beaven	ggetzie	"`Context.update()` currently looks like:
{{{
#!python
    def update(self, other_dict):
        ""Like dict.update(). Pushes an entire dictionary's keys and values onto the context.""
        self.dicts = [other_dict] + self.dicts
}}}
but really to act like `dict.update()` it should it look like:
{{{
#!python
        self.dicts[0].update(other_dict)
}}}"		closed	Documentation	dev		fixed		goliath.mailinglist@…	Ready for checkin	1	0	0	0	0	0
