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 pitrou
Recipients barry, georg.brandl, pitrou
Date 2013-07-29.12:49:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375102150.65.0.445691594018.issue18585@psf.upfronthosting.co.za>
In-reply-to
Content
Following patch proposed to add a function named textwrap.summarize():

   >>> textwrap.summarize("Hello  world!", width=12)
   'Hello world!'
   >>> textwrap.summarize("Hello  world!", width=11)
   'Hello (...)'
History
Date User Action Args
2013-07-29 12:49:10pitrousetrecipients: + pitrou, barry, georg.brandl
2013-07-29 12:49:10pitrousetmessageid: <1375102150.65.0.445691594018.issue18585@psf.upfronthosting.co.za>
2013-07-29 12:49:10pitroulinkissue18585 messages
2013-07-29 12:49:10pitroucreate