refine to allow more characters for instance reprs like it was before

--HG--
branch : trunk
This commit is contained in:
holger krekel 2010-04-29 15:52:59 +02:00
parent 5ece3858e4
commit 25ed74a77a
1 changed files with 1 additions and 0 deletions

View File

@ -52,4 +52,5 @@ def saferepr(obj, maxsize=240):
srepr = SafeRepr()
srepr.maxstring = maxsize
srepr.maxsize = maxsize
srepr.maxother = 160
return srepr.repr(obj)