From e147484666bae5ce0d9972ba898c406c80d3ccd8 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Thu, 17 Mar 2011 23:40:53 +0100 Subject: [PATCH] Oops, wrong issue number in NEWS --- Misc/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 5732a0de6e8..156ad785693 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,7 +10,7 @@ What's New in Python 3.2.1? Core and Builtins ----------------- -- Issue #10914: fix bogus memory management in Modules/getpath.c, leading to +- Issue #11320: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath(). - Issue #11510: Fixed optimizer bug which turned "a,b={1,1}" into "a,b=(1,1)".