[Python-checkins] r61405 - python/trunk/Lib/numbers.py

raymond.hettinger python-checkins at python.org
Sat Mar 15 21:37:50 CET 2008


Author: raymond.hettinger
Date: Sat Mar 15 21:37:50 2008
New Revision: 61405

Modified:
   python/trunk/Lib/numbers.py
Log:
Zap one more use of Exact/Inexact.

Modified: python/trunk/Lib/numbers.py
==============================================================================
--- python/trunk/Lib/numbers.py	(original)
+++ python/trunk/Lib/numbers.py	Sat Mar 15 21:37:50 2008
@@ -259,7 +259,7 @@
 Real.register(float)
 
 
-class Rational(Real, Exact):
+class Rational(Real):
     """.numerator and .denominator should be in lowest terms."""
 
     @abstractproperty


More information about the Python-checkins mailing list