summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-01-08 12:25:20 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-01-08 12:25:20 (GMT)
commit52b25795c02442fc40f8932d05e5d728266339a4 (patch)
tree6bd1515a655c8d46c892a9044f2aa10cf78152c8 /Misc
parentf66f95d419776bdb4fe0d3c9b8d848d3321a645b (diff)
downloadcpython-52b25795c02442fc40f8932d05e5d728266339a4.zip
cpython-52b25795c02442fc40f8932d05e5d728266339a4.tar.gz
cpython-52b25795c02442fc40f8932d05e5d728266339a4.tar.bz2
Issue #1757: The hash of a Decimal instance is no longer affected
by the current context. Thanks Mark Dickinson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4699e1b..0a01534 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -348,6 +348,9 @@ Core and builtins
Library
-------
+- Issue #1757: The hash of a Decimal instance is no longer affected by
+ the current context.
+
- Patch #467924: add ZipFile.extract() and ZipFile.extractall() in the
zipfile module.