Message198474
The documentation says:
"""The pprint module provides a capability to “pretty-print” arbitrary Python data structures in a form which can be used as input to the interpreter."""
But #since issue17150 long lines are splitted on shorter lines without continuation character and the result can't be used as input to the interpreter.
>>> pprint.pprint('abc '*20)
'abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc '\
'abc ' |
|
Date |
User |
Action |
Args |
2013-09-27 13:40:51 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, fdrake, pitrou |
2013-09-27 13:40:50 | serhiy.storchaka | set | messageid: <1380289250.98.0.0529515271695.issue19104@psf.upfronthosting.co.za> |
2013-09-27 13:40:50 | serhiy.storchaka | link | issue19104 messages |
2013-09-27 13:40:50 | serhiy.storchaka | create | |
|