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 BreamoreBoy, chris.jerdonek, georg.brandl, gvanrossum, gward, jerith, mark.dickinson, mrabarnett, otto, palfrey, serhiy.storchaka, terry.reedy, tlynn
Date 2012-07-28.06:51:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1343458296.58.0.451038789278.issue1859@psf.upfronthosting.co.za>
In-reply-to
Content
def wrap_paragraphs(text, width=70, **kwargs):
    return [line for para in text.splitlines() for line in textwrap.wrap(para, width, **kwargs) or ['']]
History
Date User Action Args
2012-07-28 06:51:36serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, gward, georg.brandl, terry.reedy, mark.dickinson, tlynn, palfrey, jerith, mrabarnett, chris.jerdonek, BreamoreBoy, otto
2012-07-28 06:51:36serhiy.storchakasetmessageid: <1343458296.58.0.451038789278.issue1859@psf.upfronthosting.co.za>
2012-07-28 06:51:36serhiy.storchakalinkissue1859 messages
2012-07-28 06:51:35serhiy.storchakacreate