You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
214 B
19 lines
214 B
|
13 years ago
|
# coding: utf-8
|
||
|
|
|
||
|
|
context_tests = r"""
|
||
|
|
>>> from django.template import Context
|
||
|
|
>>> c = Context({'a': 1, 'b': 'xyzzy'})
|
||
|
|
>>> c['a']
|
||
|
|
1
|
||
|
|
>>> c.push()
|
||
|
|
{}
|
||
|
|
>>> c['a'] = 2
|
||
|
|
>>> c['a']
|
||
|
|
2
|
||
|
|
>>> c.pop()
|
||
|
|
{'a': 2}
|
||
|
|
>>> c['a']
|
||
|
|
1
|
||
|
|
"""
|
||
|
|
|