Merged revisions 85154 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85154 | benjamin.peterson | 2010-10-01 19:03:31 -0500 (Fri, 01 Oct 2010) | 1 line

  type.__abstractmethods__ should raise an AttributeError #10006
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 1fabf61..94c0ff7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,8 @@
   fixes an interpreter crash when initializing an instance of a long
   subclass from an object whose __long__ method returns a plain int.
 
+- Issue #10006: type.__abstractmethods__ now raises an AttributeError.
+
 - Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
   thread-local storage key.