From 077af42139db84d88f293ab5eadc989a9169dce1 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Thu, 28 Nov 2013 00:53:10 +0100 Subject: [PATCH] Fixed #21515 -- Corrected example of template.Context in documentation. Thanks to trac user oubiga for the report. --- docs/ref/templates/api.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt index b3e49b6773..6c22017943 100644 --- a/docs/ref/templates/api.txt +++ b/docs/ref/templates/api.txt @@ -306,10 +306,12 @@ If you ``pop()`` too much, it'll raise >>> 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' >>> c['foo'] = 'overwritten'