From cd6bfab4101f8923aadfdf392b9d0615a9686064 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 15 Mar 2008 20:37:50 +0000 Subject: Zap one more use of Exact/Inexact. --- Lib/numbers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/numbers.py b/Lib/numbers.py index 7fb61b0..38240d6 100644 --- a/Lib/numbers.py +++ b/Lib/numbers.py @@ -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 -- cgit v0.12