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 ezio.melotti, fgallaire, georg.brandl, pitrou, r.david.murray, serhiy.storchaka, vstinner
Date 2015-07-21.06:18:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437459508.78.0.833832428534.issue24665@psf.upfronthosting.co.za>
In-reply-to
Content
What textwrap does not take into account the width of characters is not the only problem. It also does not take into account combining characters and control codes. Implementing all this will significantly complicate the code and possibly should lie outside the standard library. Such large change obviously is new feature. I believe that we should first provide a common interface to determine the width of the line (issue12499) and allow to determine the appropriate algorithm at the application level. Also provide helper functions like in issue12568.
History
Date User Action Args
2015-07-21 06:18:28serhiy.storchakasetrecipients: + serhiy.storchaka, georg.brandl, pitrou, vstinner, ezio.melotti, r.david.murray, fgallaire
2015-07-21 06:18:28serhiy.storchakasetmessageid: <1437459508.78.0.833832428534.issue24665@psf.upfronthosting.co.za>
2015-07-21 06:18:28serhiy.storchakalinkissue24665 messages
2015-07-21 06:18:27serhiy.storchakacreate