tools/short_format: increase max string length

pull/235/head
Sebastien Bourdeauducq 2015-10-18 13:32:29 +08:00
parent d7b41207da
commit 661b9bfbfa
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ def short_format(v):
if t is bool or np.issubdtype(t, int) or np.issubdtype(t, float):
return str(v)
elif t is str:
return "\"" + elide(v, 15) + "\""
return "\"" + elide(v, 50) + "\""
else:
r = t.__name__
if t is list or t is dict or t is set: