Index: /www-libs/django/django/newforms/util.py
===================================================================
--- /www-libs/django/django/newforms/util.py	(revision 4343)
+++ /www-libs/django/django/newforms/util.py	(working copy)
@@ -2,7 +2,10 @@
 
 def smart_unicode(s):
     if not isinstance(s, basestring):
-        s = unicode(str(s))
+        try:
+            s = unicode(str(s))
+        except UnicodeDecodeError:
+            s = unicode(str(s), settings.DEFAULT_CHARSET)
     elif not isinstance(s, unicode):
         s = unicode(s, settings.DEFAULT_CHARSET)
     return s
