diff options
author | Fred Drake <fdrake@acm.org> | 2001-09-04 18:18:36 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-09-04 18:18:36 (GMT) |
commit | c05fc7dd9daffe4ee60965b68337773c84d47193 (patch) | |
tree | 99cadb462b6dd49cf28e74f4c5885979a715b447 /Doc | |
parent | 7cf613dc77302fb9a2a6533878aba7296276e12c (diff) | |
download | cpython-c05fc7dd9daffe4ee60965b68337773c84d47193.zip cpython-c05fc7dd9daffe4ee60965b68337773c84d47193.tar.gz cpython-c05fc7dd9daffe4ee60965b68337773c84d47193.tar.bz2 |
Added documentation for sys.maxunicode and sys.warnoptions.
Fixed a markup error which caused an em dash to be presented as a minus sign.
This closes SF bug #458350.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsys.tex | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex index 9f9cb0e..6e880ea 100644 --- a/Doc/lib/libsys.tex +++ b/Doc/lib/libsys.tex @@ -256,10 +256,17 @@ else: \begin{datadesc}{maxint} The largest positive integer supported by Python's regular integer type. This is at least 2**31-1. The largest negative integer is - \code{-maxint-1} -- the asymmetry results from the use of 2's + \code{-maxint-1} --- the asymmetry results from the use of 2's complement binary arithmetic. \end{datadesc} +\begin{datadesc}{maxunicode} + An integer giving the largest supported code point for a Unicode + character. The value of this depends on the configuration option + that specifies whether Unicode characters are stored as UCS-2 or + UCS-4. +\end{datadesc} + \begin{datadesc}{modules} This is a dictionary that maps module names to modules which have already been loaded. This can be manipulated to force reloading of @@ -450,6 +457,12 @@ else: \versionadded{2.0} \end{datadesc} +\begin{datadesc}{warnoptions} + This is an implementation detail of the warnings framework; do not + modify this value. Refer to the \refmodule{warnings} module for + more information on the warnings framework. +\end{datadesc} + \begin{datadesc}{winver} The version number used to form registry keys on Windows platforms. This is stored as string resource 1000 in the Python DLL. The value |