[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.112,1.113
akuchling@users.sourceforge.net
akuchling@users.sourceforge.net
2003年2月06日 07:14:08 -0800
Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1:/tmp/cvs-serv24641
Modified Files:
whatsnew23.tex
Log Message:
Mention FutureWarning for large ints
Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -d -r1.112 -r1.113
*** whatsnew23.tex 3 Feb 2003 15:16:15 -0000 1.112
--- whatsnew23.tex 6 Feb 2003 15:14:04 -0000 1.113
***************
*** 2074,2077 ****
--- 2074,2082 ----
exists.
+ \item Large octal and hex literals such as
+ 0xffffffff now trigger a \exception{FutureWarning} because currently
+ they're stored as 32-bit numbers and result in a negative value, but
+ in Python 2.4 they'll become positive long integers.
+
\item You can no longer disable assertions by assigning to \code{__debug__}.