]> granicus.if.org Git - python/commitdiff
Zap one more use of Exact/Inexact.
authorRaymond Hettinger <python@rcn.com>
Sat, 15 Mar 2008 20:37:50 +0000 (20:37 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 15 Mar 2008 20:37:50 +0000 (20:37 +0000)
Lib/numbers.py

index 7fb61b04e769b275c3a856094363cb617e02d8cc..38240d62502c41d36c6d2910895f5287c8ce2dd3 100644 (file)
@@ -259,7 +259,7 @@ class Real(Complex):
 Real.register(float)
 
 
-class Rational(Real, Exact):
+class Rational(Real):
     """.numerator and .denominator should be in lowest terms."""
 
     @abstractproperty