]> granicus.if.org Git - python/commitdiff
Manually merge r68096,68189 from 3.0 branch.
authorGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 22:07:57 +0000 (22:07 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 22:07:57 +0000 (22:07 +0000)
Lib/fractions.py
Lib/heapq.py
Lib/test/test_fractions.py
Misc/NEWS

index bc065243d418b56e8bfb32c456f15b48d089da0f..ed1e9a0c1035e570366840efbf0405172a724117 100755 (executable)
@@ -109,7 +109,7 @@ class Fraction(numbers.Rational):
 
         """
         if isinstance(f, numbers.Integral):
-            f = float(f)
+            return cls(f)
         elif not isinstance(f, float):
             raise TypeError("%s.from_float() only takes floats, not %r (%s)" %
                             (cls.__name__, f, type(f).__name__))
index 380fe1268bf834189a49aeb675d06ff4ed835401..2d3404644aa4db308213f816c416f1fa95be1639 100644 (file)
@@ -354,9 +354,12 @@ def nsmallest(n, iterable, key=None):
 
     Equivalent to:  sorted(iterable, key=key)[:n]
     """
+    if key is None:
+        it = zip(iterable, count())                         # decorate
+        result = _nsmallest(n, it)
+        return list(map(itemgetter(0), result))             # undecorate
     in1, in2 = tee(iterable)
-    keys = in1 if key is None else map(key, in1)
-    it = zip(keys, count(), in2)                           # decorate
+    it = zip(map(key, in1), count(), in2)                   # decorate
     result = _nsmallest(n, it)
     return list(map(itemgetter(2), result))                 # undecorate
 
@@ -366,9 +369,12 @@ def nlargest(n, iterable, key=None):
 
     Equivalent to:  sorted(iterable, key=key, reverse=True)[:n]
     """
+    if key is None:
+        it = zip(iterable, map(neg, count()))               # decorate
+        result = _nlargest(n, it)
+        return list(map(itemgetter(0), result))             # undecorate
     in1, in2 = tee(iterable)
-    keys = in1 if key is None else map(key, in1)
-    it = zip(keys, map(neg, count()), in2)                 # decorate
+    it = zip(map(key, in1), map(neg, count()), in2)         # decorate
     result = _nlargest(n, it)
     return list(map(itemgetter(2), result))                 # undecorate
 
index 4fadf6caa49656394674a5203de0de0d00a92fca..6851d2d31325970fede57af8f0f068e454e2ef99 100644 (file)
@@ -136,6 +136,8 @@ class FractionTest(unittest.TestCase):
     def testFromFloat(self):
         self.assertRaises(TypeError, F.from_float, 3+4j)
         self.assertEquals((10, 1), _components(F.from_float(10)))
+        bigint = 1234567890123456789
+        self.assertEquals((bigint, 1), _components(F.from_float(bigint)))
         self.assertEquals((0, 1), _components(F.from_float(-0.0)))
         self.assertEquals((10, 1), _components(F.from_float(10.0)))
         self.assertEquals((-5, 2), _components(F.from_float(-2.5)))
index e0b9eec1cd2e379878697f71da22207747d19ea5..2c59b005f4bab38d3765cc76747227776abc8e23 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -92,9 +92,15 @@ Library
 - Issue #4796: Added Decimal.from_float() and Context.create_decimal_from_float()
   to the decimal module.
 
+- Fractions.from_float() no longer loses precision for integers too big to
+  cast as floats.
+
 - Issue #4812: add missing underscore prefix to some internal-use-only
   constants in the decimal module.  (Dec_0 becomes _Dec_0, etc.)
 
+- Issue 4790: The nsmallest() and nlargest() functions in the heapq module
+  did unnecessary work in the common case where no key function was specified.
+
 - Issue #4702: Throwing a DistutilsPlatformError instead of IOError in case 
   no MSVC compiler is found under Windows. Original patch by Philip Jenvey.