[issue12746] normalization is affected by unicode width

2011-09-29 Thread STINNER Victor
STINNER Victor added the comment: Issue fixed in Python 3.3 by Martin, changesets 40cf7204ca2b and 50f008019213. -- nosy: +loewis resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue12746] normalization is affected by unicode width

2011-09-28 Thread Benjamin Peterson
Benjamin Peterson added the comment: Almost, that is. The unicodedata module still needs to use the new PEP 393 API. -- resolution: fixed -> status: closed -> open ___ Python tracker _

[issue12746] normalization is affected by unicode width

2011-09-28 Thread STINNER Victor
Changes by STINNER Victor : -- versions: -Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue12746] normalization is affected by unicode width

2011-09-28 Thread Benjamin Peterson
Benjamin Peterson added the comment: Not anymore, though. :) -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue12746] normalization is affected by unicode width

2011-08-26 Thread Guido van Rossum
Guido van Rossum added the comment: Yeah, we should fix this. At least in 3.3, but (without knowing what exactly is involved) I think backporting to 2.7 and 3.2 makes sense too. -- nosy: +gvanrossum ___ Python tracker

[issue12746] normalization is affected by unicode width

2011-08-15 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue12746] normalization is affected by unicode width

2011-08-15 Thread Tom Christiansen
Changes by Tom Christiansen : -- nosy: +tchrist ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue12746] normalization is affected by unicode width

2011-08-15 Thread STINNER Victor
STINNER Victor added the comment: See also #12737. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue12746] normalization is affected by unicode width

2011-08-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo, lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue12746] normalization is affected by unicode width

2011-08-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Unicode nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue12746] normalization is affected by unicode width

2011-08-12 Thread Benjamin Peterson
New submission from Benjamin Peterson : Narrow build: unicodedata.normalize("NFKC", "𝔘𝔫𝔦𝔠𝔬𝔡𝔢") '𝔘𝔫𝔦𝔠𝔬𝔡𝔢' Wide build: >>> unicodedata.normalize("NFKC", "𝔘𝔫𝔦𝔠𝔬𝔡𝔢") 'Unicode' Normalization needs to properly decode characters in the supplementary plane. -- components: Extension Modules mes