The errors seem to be related to Aymeric's change in r17894. If I
change

    def _reset_dicts(self, value=None):
        builtins = {'True': True, 'False': False, 'None': None}
        if value:
            builtins.update(value)
        self.dicts = [builtins]

to the seemingly equivalent

    def _reset_dicts(self, value=None):
        value = copy(value or {})
        value.update({'True': True, 'False': False, 'None': None})
        self.dicts = [value]

then the errors no longer occur.

Ticket created: https://code.djangoproject.com/ticket/18103

Regards,

Vinay Sajip

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to