commit | cd6bfab4101f8923aadfdf392b9d0615a9686064 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Mar 15 20:37:50 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Mar 15 20:37:50 2008 +0000 |
tree | 59f05ce148deb30eccbfe882424107496de227d4 | |
parent | 6b46762974bb281106088dae124ca0059571db2a [diff] [blame] |
Zap one more use of Exact/Inexact.
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 @@ Real.register(float) -class Rational(Real, Exact): +class Rational(Real): """.numerator and .denominator should be in lowest terms.""" @abstractproperty