From: Éric Araujo Date: Tue, 4 Oct 2011 23:06:31 +0000 (+0200) Subject: Fix minor wording issue. X-Git-Tag: v3.3.0a1~1290^2~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=525b1e9dd4de54575a57458b2ac0a59d45cf0885;p=thirdparty%2FPython%2Fcpython.git Fix minor wording issue. sys.maxunicode is not called and thus does not return anything; it *is* something. (I checked the doc quickly to see if it tells that expression return things but found nothing.) I also removed markup that would just generate a useless link to the enclosing section. --- diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 43f65e206b88..a64c221edde5 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -629,7 +629,7 @@ always available. i.e. ``1114111`` (``0x10FFFF`` in hexadecimal). .. versionchanged:: 3.3 - Before :pep:`393`, :data:`sys.maxunicode` used to return either ``0xFFFF`` + Before :pep:`393`, ``sys.maxunicode`` used to be either ``0xFFFF`` or ``0x10FFFF``, depending on the configuration option that specified whether Unicode characters were stored as UCS-2 or UCS-4.