summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-11-22 15:14:44 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-11-22 15:14:44 (GMT)
commitb2a739d19b53af948ffe4bc1d4cd03e6ab70928c (patch)
tree5d1a076660028878973267140706197646d6f89a /Misc
parentdb57135226e92727fe6fbf4313a6dc5a96daac3f (diff)
downloadcpython-b2a739d19b53af948ffe4bc1d4cd03e6ab70928c.zip
cpython-b2a739d19b53af948ffe4bc1d4cd03e6ab70928c.tar.gz
cpython-b2a739d19b53af948ffe4bc1d4cd03e6ab70928c.tar.bz2
Typo fix
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 40be84c..77e280d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -758,7 +758,7 @@ Core and builtins
weakref to a dead object, or via any Python code run in any other thread
that managed to obtain the GIL while a __del__ or callback was running
in the thread doing gc). The most likely symptom was "impossible"
- ``AttributeEror`` exceptions, appearing seemingly at random, on weakly
+ ``AttributeError`` exceptions, appearing seemingly at random, on weakly
referenced objects. The cure was to clear all weakrefs to unreachable
objects before allowing any callbacks to run.