summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-03-15 20:37:50 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-03-15 20:37:50 (GMT)
commitcd6bfab4101f8923aadfdf392b9d0615a9686064 (patch)
tree59f05ce148deb30eccbfe882424107496de227d4
parent6b46762974bb281106088dae124ca0059571db2a (diff)
downloadcpython-cd6bfab4101f8923aadfdf392b9d0615a9686064.zip
cpython-cd6bfab4101f8923aadfdf392b9d0615a9686064.tar.gz
cpython-cd6bfab4101f8923aadfdf392b9d0615a9686064.tar.bz2
Zap one more use of Exact/Inexact.
-rw-r--r--Lib/numbers.py2
1 files changed, 1 insertions, 1 deletions
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