[Python-checkins] CVS: python/dist/src/Doc/lib libsys.tex,1.51,1.52
Fred L. Drake
fdrake@users.sourceforge.net
2001年9月04日 11:18:38 -0700
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv16527/lib
Modified Files:
libsys.tex
Log Message:
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.
Index: libsys.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsys.tex,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** libsys.tex 2001年07月26日 13:41:05 1.51
--- libsys.tex 2001年09月04日 18:18:36 1.52
***************
*** 257,264 ****
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
complement binary arithmetic.
\end{datadesc}
\begin{datadesc}{modules}
This is a dictionary that maps module names to modules which have
--- 257,271 ----
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
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
***************
*** 449,452 ****
--- 456,465 ----
'final', 0)}.
\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}