]> granicus.if.org Git - python/commitdiff
Fix issue number typo.
authorMark Dickinson <dickinsm@gmail.com>
Fri, 11 Jun 2010 10:46:57 +0000 (10:46 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Fri, 11 Jun 2010 10:46:57 +0000 (10:46 +0000)
Misc/NEWS

index 8b8636679edee97c1275e4ef366a245f1bf387cc..21b396267e43c396c5252b9544412f30df541fcf 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -417,7 +417,7 @@ C-API
 Library
 -------
 
-- Issue #8118: Comparisons between Decimal and Fraction objects are
+- Issue #8188: Comparisons between Decimal and Fraction objects are
   now permitted, returning a result based on the exact numerical
   values of the operands.  This builds on issue #2531, which allowed
   Decimal-to-float comparisons;  all comparisons involving numeric
@@ -722,7 +722,7 @@ Library
   instances now return a result based on the numeric values of the
   operands;  previously they returned an arbitrary result based on
   the relative ordering of id(float) and id(Decimal).  See also
-  issue #8118, which adds Decimal-to-Fraction comparisons.
+  issue #8188, which adds Decimal-to-Fraction comparisons.
 
 - Added a subtract() method to collections.Counter().