summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-09-05 02:24:03 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-09-05 02:24:03 (GMT)
commita22975fb35e1bae0f85fc6ede1572264a7bcd1e6 (patch)
tree4010d55ca48619982bced6b5d41dacd575c6b350 /Misc
parentc4a70fbb78211261c9edf4a80029a124bb3cc826 (diff)
downloadcpython-a22975fb35e1bae0f85fc6ede1572264a7bcd1e6.zip
cpython-a22975fb35e1bae0f85fc6ede1572264a7bcd1e6.tar.gz
cpython-a22975fb35e1bae0f85fc6ede1572264a7bcd1e6.tar.bz2
Fix SF bug #1546288, crash in dict_equal.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 04c78c0..c7bd4d6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,12 +17,14 @@ Core and builtins
- Patch #1542451: disallow continue anywhere under a finally.
+- Patch #1546288: fix seg fault in dict_equal due to ref counting bug.
+
Library
-------
- Patch #1550886: Fix decimal module context management implementation
- to match the localcontext() example from PEP 343
+ to match the localcontext() example from PEP 343.
- Bug #1541863: uuid.uuid1 failed to generate unique identifiers
on systems with low clock resolution.