From: Ezio Melotti Date: Tue, 25 Oct 2011 06:32:34 +0000 (+0300) Subject: Remove mention of narrow/wide builds from ord/chr doc. X-Git-Tag: v3.3.0a1~1068 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c99c85899af0c1e24f50cc4de25d1a34fb470ac3;p=thirdparty%2FPython%2Fcpython.git Remove mention of narrow/wide builds from ord/chr doc. --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 6944e1dcd036..1ff6b2a6a85e 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -152,10 +152,6 @@ are always available. They are listed here in alphabetical order. 1,114,111 (0x10FFFF in base 16). :exc:`ValueError` will be raised if *i* is outside that range. - Note that on narrow Unicode builds, the result is a string of - length two for *i* greater than 65,535 (0xFFFF in hexadecimal). - - .. function:: classmethod(function) @@ -919,14 +915,11 @@ are always available. They are listed here in alphabetical order. .. XXX works for bytes too, but should it? .. function:: ord(c) - Given a string representing one Uncicode character, return an integer + Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, ``ord('a')`` returns the integer ``97`` and ``ord('\u2020')`` returns ``8224``. This is the inverse of :func:`chr`. - On wide Unicode builds, if the argument length is not one, a - :exc:`TypeError` will be raised. On narrow Unicode builds, strings - of length two are accepted when they form a UTF-16 surrogate pair. .. function:: pow(x, y[, z])