Zap one more use of Exact/Inexact.

This commit is contained in:
Raymond Hettinger 2008-03-15 20:37:50 +00:00
parent 6b46762974
commit cd6bfab410

View 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