fix inspect.isclass() on instances with a custom __getattr__ #1225107
diff --git a/Misc/NEWS b/Misc/NEWS
index 2e9e47d..4c71db1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@
 Library
 -------
 
+- Issue #1225107: inspect.isclass() returned True for instances with a custom
+  __getattr__.
+
 - Issue #3997: zipfiles generated with more than 65536 files could not be
   opened with other applications.