From: Georg Brandl Date: Sun, 4 Sep 2011 06:10:25 +0000 (+0200) Subject: Typo fix. X-Git-Tag: v3.2.3rc1~585 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3bb2cfb7ad8325dbf98312592221efc6e7625f2;p=thirdparty%2FPython%2Fcpython.git Typo fix. --- diff --git a/Misc/NEWS b/Misc/NEWS index 514d19afedd2..bd39f358b30e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -92,7 +92,7 @@ Core and Builtins - Issue #11627: Fix segfault when __new__ on a exception returns a non-exception class. -- Issue #12149: Update the method cache after a type's dictionnary gets +- Issue #12149: Update the method cache after a type's dictionary gets cleared by the garbage collector. This fixes a segfault when an instance and its type get caught in a reference cycle, and the instance's deallocator calls one of the methods on the type (e.g. when subclassing