Changeset 644
- Timestamp:
- 09/17/05 18:06:16 (3 years ago)
- Files:
-
- django/trunk/django/core/template.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/template.py
r634 r644 123 123 class Context: 124 124 "A stack container for variable context" 125 def __init__(self, dict={}): 125 def __init__(self, dict=None): 126 dict = dict or {} 126 127 self.dicts = [dict] 127 128
