﻿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
21515	template.Context Documentation: c.pop() and c.push() return nothing in the example	Pablo Oubiña	nobody	"https://docs.djangoproject.com/en/1.6/ref/templates/api/#django.template.Context.pop shows:


{{{
>>> c = Context()
>>> c['foo'] = 'first level'
>>> c.push()
>>> c['foo'] = 'second level'
>>> c['foo']
'second level'
>>> c.pop()
>>> c['foo']
'first level'
}}}


Is my suggestion more understandable?


{{{
>>> c = Context()
>>> c['foo'] = 'first level'
>>> c.push()
{}
>>> c['foo'] = 'second level'
>>> c['foo']
'second level'
>>> c.pop()
{'foo': 'second level'}
>>> c['foo']
'first level'
}}}


"	Uncategorized	closed	Documentation	1.6	Normal	fixed	context, pop, push		Unreviewed	0	0	0	0	0	0
