Ticket #17229: 17229.patch
File 17229.patch, 489 bytes (added by , 13 years ago) |
---|
-
django/template/context.py
18 18 self._reset_dicts(dict_) 19 19 20 20 def _reset_dicts(self, value=None): 21 self.dicts = [value or { }]21 self.dicts = [value or {'True': True, 'False': False, 'None': None}] 22 22 23 23 def __copy__(self): 24 24 duplicate = copy(super(BaseContext, self))