diff options
| author | Tom Christie | 2015-01-21 20:29:58 +0000 |
|---|---|---|
| committer | Tom Christie | 2015-01-21 20:29:58 +0000 |
| commit | 5e52f0fd8c3b4dbe70f1332d1323e3a544951e66 (patch) | |
| tree | 61eab5961b51ad29072c7de0f4570bf648bc192f /rest_framework/utils | |
| parent | e5b94f7b7bbf2f6f35c5e33fb2723bdb0d33bad3 (diff) | |
| parent | 9ec08ce57889dc329506a572044438a55da61303 (diff) | |
| download | django-rest-framework-5e52f0fd8c3b4dbe70f1332d1323e3a544951e66.tar.bz2 | |
Merge branch 'version-3.1' into cursor-pagination
Diffstat (limited to 'rest_framework/utils')
| -rw-r--r-- | rest_framework/utils/serializer_helpers.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rest_framework/utils/serializer_helpers.py b/rest_framework/utils/serializer_helpers.py index f9960603..ab057862 100644 --- a/rest_framework/utils/serializer_helpers.py +++ b/rest_framework/utils/serializer_helpers.py @@ -105,3 +105,6 @@ class BindingDict(collections.MutableMapping): def __len__(self): return len(self.fields) + + def __repr__(self): + return dict.__repr__(self.fields) |
