]> granicus.if.org Git - python/commitdiff
Remove out-of-date section on Exact/Inexact.
authorRaymond Hettinger <python@rcn.com>
Tue, 22 Jul 2008 18:54:02 +0000 (18:54 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 22 Jul 2008 18:54:02 +0000 (18:54 +0000)
Doc/whatsnew/2.6.rst

index 5cf29cb69bcc7ba6a1d46a355bc39deba058b140..cf9682b86c8d113fc40230ea562f670d547c4d2b 100644 (file)
@@ -1324,14 +1324,6 @@ The most general ABC is :class:`Number`.  It defines no operations at
 all, and only exists to allow checking if an object is a number by
 doing ``isinstance(obj, Number)``.
 
-Numbers are further divided into :class:`Exact` and :class:`Inexact`.
-Exact numbers can represent values precisely and operations never
-round off the results or introduce tiny errors that may break the
-commutativity and associativity properties; inexact numbers may
-perform such rounding or introduce small errors.  Integers, long
-integers, and rational numbers are exact, while floating-point
-and complex numbers are inexact.
-
 :class:`Complex` is a subclass of :class:`Number`.  Complex numbers
 can undergo the basic operations of addition, subtraction,
 multiplication, division, and exponentiation, and you can retrieve the