summaryrefslogtreecommitdiffstats
path: root/Doc/library/sys.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-04 23:06:31 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-04 23:06:31 (GMT)
commit525b1e9dd4de54575a57458b2ac0a59d45cf0885 (patch)
tree383d12e3ff420428b3b0f23579d8acf4925dcc21 /Doc/library/sys.rst
parent5043f0904ba2254cbd65b41e3870c62a682e1c37 (diff)
downloadcpython-525b1e9dd4de54575a57458b2ac0a59d45cf0885.zip
cpython-525b1e9dd4de54575a57458b2ac0a59d45cf0885.tar.gz
cpython-525b1e9dd4de54575a57458b2ac0a59d45cf0885.tar.bz2
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.
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r--Doc/library/sys.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 43f65e2..a64c221 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.