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 mrabarnett
Recipients ezio.melotti, jjl, mrabarnett
Date 2013-08-06.16:18:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375805908.99.0.825687908285.issue18662@psf.upfronthosting.co.za>
In-reply-to
Content
I can think of a real disadvantage with the current behaviour: it messes up Unicode graphemes.

For example:

>>> print('हिन्दी')
हिन्दी
>>> print(re.escape('हिन्दी'))
\ह\ि\न\्\द\ी

Of course, that's only a problem if you need to print it out or write it to a file.
History
Date User Action Args
2013-08-06 16:18:29mrabarnettsetrecipients: + mrabarnett, ezio.melotti, jjl
2013-08-06 16:18:28mrabarnettsetmessageid: <1375805908.99.0.825687908285.issue18662@psf.upfronthosting.co.za>
2013-08-06 16:18:28mrabarnettlinkissue18662 messages
2013-08-06 16:18:28mrabarnettcreate