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 methane
Recipients Kiril Dimitrov, ezio.melotti, methane, vstinner
Date 2018-03-20.13:28:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1521552528.94.0.467229070634.issue33108@psf.upfronthosting.co.za>
In-reply-to
Content
Another example:

>>> s = "ß"
>>> len(s)
1
>>> len(s.upper())
2
>>> s.upper()
'SS'
>>> ord(s)
223


> This breaks unicode text matching.

What do you talking about? re module?
History
Date User Action Args
2018-03-20 13:28:49methanesetrecipients: + methane, vstinner, ezio.melotti, Kiril Dimitrov
2018-03-20 13:28:48methanesetmessageid: <1521552528.94.0.467229070634.issue33108@psf.upfronthosting.co.za>
2018-03-20 13:28:48methanelinkissue33108 messages
2018-03-20 13:28:48methanecreate