This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients fdrake, pitrou, serhiy.storchaka
Date 2013-09-27.13:40:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380289250.98.0.0529515271695.issue19104@psf.upfronthosting.co.za>
In-reply-to
Content
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 '
History
Date User Action Args
2013-09-27 13:40:51serhiy.storchakasetrecipients: + serhiy.storchaka, fdrake, pitrou
2013-09-27 13:40:50serhiy.storchakasetmessageid: <1380289250.98.0.0529515271695.issue19104@psf.upfronthosting.co.za>
2013-09-27 13:40:50serhiy.storchakalinkissue19104 messages
2013-09-27 13:40:50serhiy.storchakacreate