Updates:
        Status: Pending

Comment #1 on issue 1666 by pekka.klarck: Use Python pprint module inside Log keywords
http://code.google.com/p/robotframework/issues/detail?id=1666

1) If your use case is logging data structures, why don't you use Log List and Log Dictionary keywords in Collections?

2) There's a problem that pprint adds quotes around strings:

import pprint
print 'foo'
foo
pprint.pprint('foo')
'foo'
print pprint.pformat('foo')
'foo'


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to