From: Raymond Hettinger Date: Sat, 15 Mar 2008 20:37:50 +0000 (+0000) Subject: Zap one more use of Exact/Inexact. X-Git-Tag: v2.6a2~317 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd6bfab4101f8923aadfdf392b9d0615a9686064;p=thirdparty%2FPython%2Fcpython.git Zap one more use of Exact/Inexact. --- diff --git a/Lib/numbers.py b/Lib/numbers.py index 7fb61b04e769..38240d62502c 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