[Python-checkins] python/dist/src/Doc/whatsnew whatsnew24.tex, 1.117, 1.118

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Thu Nov 25 02:15:28 CET 2004


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13432

Modified Files:
	whatsnew24.tex 
Log Message:
Following a LtU thread, change introductory paragraph of decimal section

Index: whatsnew24.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew24.tex,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -d -r1.117 -r1.118
--- whatsnew24.tex	19 Nov 2004 14:55:28 -0000	1.117
+++ whatsnew24.tex	25 Nov 2004 01:15:25 -0000	1.118
@@ -7,7 +7,7 @@
 % to be covered.  --amk
 
 \title{What's New in Python 2.4}
-\release{1.0}
+\release{1.01}
 \author{A.M.\ Kuchling}
 \authoraddress{
 	\strong{Python Software Foundation}\\
@@ -525,10 +525,12 @@
 
 Python has always supported floating-point (FP) numbers, based on the
 underlying C \ctype{double} type, as a data type.  However, while most
-programming languages provide a floating-point type, most people (even
-programmers) are unaware that computing with floating-point numbers
-entails certain unavoidable inaccuracies.  The new decimal type
-provides a way to avoid these inaccuracies.
+programming languages provide a floating-point type, many people (even
+programmers) are unaware that floating-point numbers don't represent
+certain decimal fractions accurately.  The new \class{Decimal} type
+can represent these fractions accurately, up to a user-specified
+precision limit.
+
 
 \subsection{Why is Decimal needed?}
 
@@ -1726,7 +1728,7 @@
 
 The author would like to thank the following people for offering
 suggestions, corrections and assistance with various drafts of this
-article: Hye-Shik Chang, Michael Dyck, Raymond Hettinger, Hamish Lawson,
-Fredrik Lundh.
+article: Koray Can, Hye-Shik Chang, Michael Dyck, Raymond Hettinger, 
+Brian Hurt, Hamish Lawson, Fredrik Lundh.
 
 \end{document}



More information about the Python-checkins mailing list