[issue12746] normalization is affected by unicode width

2011-09-29 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Issue fixed in Python 3.3 by Martin, changesets 40cf7204ca2b and 50f008019213. -- nosy: +loewis resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org

[issue12746] normalization is affected by unicode width

2011-09-28 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Not anymore, though. :) -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12746 ___

[issue12746] normalization is affected by unicode width

2011-09-28 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- versions: -Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12746 ___

[issue12746] normalization is affected by unicode width

2011-09-28 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org 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 rep...@bugs.python.org

[issue12746] normalization is affected by unicode width

2011-08-26 Thread Guido van Rossum
Guido van Rossum gu...@python.org 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 STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: See also #12737. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12746 ___ ___

[issue12746] normalization is affected by unicode width

2011-08-15 Thread Tom Christiansen
Changes by Tom Christiansen tchr...@perl.com: -- nosy: +tchrist ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12746 ___ ___ Python-bugs-list

[issue12746] normalization is affected by unicode width

2011-08-15 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12746 ___

[issue12746] normalization is affected by unicode width

2011-08-13 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- components: +Unicode nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12746 ___

[issue12746] normalization is affected by unicode width

2011-08-13 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +haypo, lemburg ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12746 ___ ___ Python-bugs-list

[issue12746] normalization is affected by unicode width

2011-08-12 Thread Benjamin Peterson
New submission from Benjamin Peterson benja...@python.org: Narrow build: unicodedata.normalize(NFKC, 픘픫픦픠픬픡픢) '픘픫픦픠픬픡픢' Wide build: unicodedata.normalize(NFKC, 픘픫픦픠픬픡픢) 'Unicode' Normalization needs to properly decode characters in the supplementary plane. -- components: Extension