diff options
| author | Tom Christie | 2015-01-21 13:12:14 +0000 |
|---|---|---|
| committer | Tom Christie | 2015-01-21 13:12:14 +0000 |
| commit | 9ec08ce57889dc329506a572044438a55da61303 (patch) | |
| tree | 6ef0132e70ae38680a006322a31c272ec2ae4d6b /rest_framework/utils/serializer_helpers.py | |
| parent | 3cc39ffbceffc5fdbb511d9a10e7732329e8baa4 (diff) | |
| parent | 9d24809a4dee67ee414ee79820331f0794c42a13 (diff) | |
| download | django-rest-framework-9ec08ce57889dc329506a572044438a55da61303.tar.bz2 | |
Merge master
Diffstat (limited to 'rest_framework/utils/serializer_helpers.py')
| -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) |
