]> granicus.if.org Git - python/commitdiff
Fix minor wording issue.
authorÉric Araujo <merwok@netwok.org>
Tue, 4 Oct 2011 23:06:31 +0000 (01:06 +0200)
committerÉric Araujo <merwok@netwok.org>
Tue, 4 Oct 2011 23:06:31 +0000 (01:06 +0200)
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.

Doc/library/sys.rst

index 43f65e206b884200af9b9746172cec44c9c379fd..a64c221edde5160357f7f172e7b59a3792118f3d 100644 (file)
@@ -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.