aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/utils
diff options
context:
space:
mode:
authorTom Christie2014-12-15 11:55:17 +0000
committerTom Christie2014-12-15 11:55:17 +0000
commit72e08a3e8b6427cb93f0f98b42724e31e5b3d8f9 (patch)
tree9d2fe5ded957a5e1c6d86ac87aeafb4be3055ab2 /rest_framework/utils
parenta72f812d80a4000e86a5ad96001f3fbf43fe310a (diff)
downloaddjango-rest-framework-72e08a3e8b6427cb93f0f98b42724e31e5b3d8f9.tar.bz2
Use unicode internally everywhere for 'repr'
Diffstat (limited to 'rest_framework/utils')
-rw-r--r--rest_framework/utils/representation.py5
-rw-r--r--rest_framework/utils/serializer_helpers.py7
2 files changed, 8 insertions, 4 deletions
diff --git a/rest_framework/utils/representation.py b/rest_framework/utils/representation.py
index 3f17a8b9..0d829a83 100644
--- a/rest_framework/utils/representation.py
+++ b/rest_framework/utils/representation.py
@@ -2,9 +2,11 @@
Helper functions for creating user-friendly representations
of serializer classes and serializer fields.
"""
+from __future__ import unicode_literals
from django.db import models
from django.utils.encoding import force_text
from django.utils.functional import Promise
+from rest_framework.compat import unicode_repr
import re
@@ -24,10 +26,11 @@ def smart_repr(value):
if isinstance(value, Promise) and value._delegate_text:
value = force_text(value)
- value = repr(value)
+ value = unicode_repr(value)
# Representations like u'help text'
# should simply be presented as 'help text'
+ print type(value), value
if value.startswith("u'") and value.endswith("'"):
return value[1:]
diff --git a/rest_framework/utils/serializer_helpers.py b/rest_framework/utils/serializer_helpers.py
index 277cf649..65a04d06 100644
--- a/rest_framework/utils/serializer_helpers.py
+++ b/rest_framework/utils/serializer_helpers.py
@@ -1,5 +1,6 @@
+from __future__ import unicode_literals
import collections
-from rest_framework.compat import OrderedDict
+from rest_framework.compat import OrderedDict, unicode_to_repr
class ReturnDict(OrderedDict):
@@ -47,9 +48,9 @@ class BoundField(object):
return self._field.__class__
def __repr__(self):
- return '<%s value=%s errors=%s>' % (
+ return unicode_to_repr('<%s value=%s errors=%s>' % (
self.__class__.__name__, self.value, self.errors
- )
+ ))
class NestedBoundField(BoundField):