summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-09-04 06:10:25 (GMT)
committerGeorg Brandl <georg@python.org>2011-09-04 06:10:25 (GMT)
commite3bb2cfb7ad8325dbf98312592221efc6e7625f2 (patch)
treeedc30699b6782e912c770e241b445ef4df9fbd1a
parentf6f3a3544783496301537bc5c946b58b0e5cbac8 (diff)
downloadcpython-e3bb2cfb7ad8325dbf98312592221efc6e7625f2.zip
cpython-e3bb2cfb7ad8325dbf98312592221efc6e7625f2.tar.gz
cpython-e3bb2cfb7ad8325dbf98312592221efc6e7625f2.tar.bz2
Typo fix.
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 514d19a..bd39f35 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