summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-06-11 10:46:57 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-06-11 10:46:57 (GMT)
commit9b88b916a903d97e3125b4436ac5c14620a78238 (patch)
tree5a1ff506f07e97515d98d072ff564cc90f4426af
parent08ade6faa0369a9167d150a1d85265b1a9ea58ef (diff)
downloadcpython-9b88b916a903d97e3125b4436ac5c14620a78238.zip
cpython-9b88b916a903d97e3125b4436ac5c14620a78238.tar.gz
cpython-9b88b916a903d97e3125b4436ac5c14620a78238.tar.bz2
Fix issue number typo.
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8b86366..21b3962 100644
--- 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().