﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
6021	RuntimeError when printing a SafeString	Jan Rademaker <j.rademaker@…>	nobody	"!SafeString's `__str__` method does not return a string but the !SafeString object itself. Simply removing the `__str__` method seems to solve the problem (all tests pass).

{{{
>>> from django.newforms.util import ErrorList
>>> e = ErrorList([u'foo'])
>>> e
[u'foo']
>>> type(str(e))
<class 'django.utils.safestring.SafeString'>
>>> print e
Traceback (most recent call last):
  File ""<stdin>"", line 1, in <module>
RuntimeError: print recursion
}}}
"		closed	Core (Other)	dev		fixed	print recursion		Accepted	1	0	0	0	0	0
