[issue7828] chr() and ord() documentation for wide characters

2010-11-18 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Committed in r86526 (3.2) and r86527 (3.1). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue7828] chr() and ord() documentation for wide characters

2010-11-18 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Looks good to me, except for a 'stings' near the end of the patch. -- nosy: +amaury.forgeotdarc ___ Python tracker ___ ___

[issue7828] chr() and ord() documentation for wide characters

2010-11-18 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file19633/issue7828.diff ___ Python tracker ___ ___

[issue7828] chr() and ord() documentation for wide characters

2010-11-17 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- assignee: d...@python -> belopolsky nosy: +belopolsky ___ Python tracker ___ ___ Python-bugs-list

[issue7828] chr() and ord() documentation for wide characters

2010-10-20 Thread STINNER Victor
Changes by STINNER Victor : -- components: +Unicode ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue7828] chr() and ord() documentation for wide characters

2010-08-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: georg.brandl -> d...@python nosy: +d...@python, haypo versions: -Python 2.6, Python 2.7 ___ Python tracker ___ __

[issue7828] chr() and ord() documentation for wide characters

2010-08-03 Thread Dirkjan Ochtman
Changes by Dirkjan Ochtman : -- nosy: +djc ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue7828] chr() and ord() documentation for wide characters

2010-01-31 Thread nudgenudge
New submission from nudgenudge : The documentation of chr() and ord() fails to mention that on narrow Unicode builds, chr(n) will return a surrogate pair (hence a 2-character string) for n>=65536 and that ord(s) will accept a 2-character string if it's a surrogate pair. Example: Python 3.1.1