summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-17 22:27:54 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-01-17 22:27:54 (GMT)
commit5e5fbb612d8109078c2777e1759277f9144616d0 (patch)
tree31cc5456eb32eb87d987bcdaea2a91a090947bf7
parent59ce042766d95a1471b08241038b8e0f4a65743a (diff)
downloadcpython-5e5fbb612d8109078c2777e1759277f9144616d0.zip
cpython-5e5fbb612d8109078c2777e1759277f9144616d0.tar.gz
cpython-5e5fbb612d8109078c2777e1759277f9144616d0.tar.bz2
fix inspect.isclass() on instances with a custom __getattr__ #1225107
-rw-r--r--Lib/inspect.py2
-rw-r--r--Lib/test/test_inspect.py13
-rw-r--r--Misc/NEWS3
3 files changed, 16 insertions, 2 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index a89d62e..1453f3b 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -62,7 +62,7 @@ def isclass(object):
Class objects provide these attributes:
__doc__ documentation string
__module__ name of module in which this class was defined"""
- return isinstance(object, types.ClassType) or hasattr(object, '__bases__')
+ return isinstance(object, (type, types.ClassType))
def ismethod(object):
"""Return true if the object is an instance method.
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index b653f40..7312cac 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -65,7 +65,6 @@ class TestPredicates(IsTestBase):
def test_excluding_predicates(self):
self.istest(inspect.isbuiltin, 'sys.exit')
self.istest(inspect.isbuiltin, '[].append')
- self.istest(inspect.isclass, 'mod.StupidGit')
self.istest(inspect.iscode, 'mod.spam.func_code')
self.istest(inspect.isframe, 'tb.tb_frame')
self.istest(inspect.isfunction, 'mod.spam')
@@ -91,6 +90,18 @@ class TestPredicates(IsTestBase):
self.assert_(inspect.isroutine(mod.spam))
self.assert_(inspect.isroutine([].count))
+ def test_isclass(self):
+ self.istest(inspect.isclass, 'mod.StupidGit')
+ self.assertTrue(inspect.isclass(list))
+
+ class newstyle(object): pass
+ self.assertTrue(inspect.isclass(newstyle))
+
+ class CustomGetattr(object):
+ def __getattr__(self, attr):
+ return None
+ self.assertFalse(inspect.isclass(CustomGetattr()))
+
def test_get_slot_members(self):
class C(object):
__slots__ = ("a", "b")
diff --git a/Misc/NEWS b/Misc/NEWS
index 2e9e47d..4c71db1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ Core and Builtins
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.