BindingDict should support standard dict-functions · Issue #2135 · encode/django-rest-framework (original) (raw)
Standard dict functions should be supported by rest_framework.utils.serializer_helpers.BindingDict, like:
- pop(<field_name>[, <default_value>])
- get(<field_name>[, <default_value>])
- len()
Perhaps, OrderedDict could be directly inherited from... I haven't looked at it in detail.
-Manuel