summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-03-03 19:18:51 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-03-03 19:18:51 (GMT)
commitbe5b30b15f6ba8bb854968db3bd43390676b905b (patch)
treebc9f50a252ba8ad73136af4273222308a972d3c0 /Doc
parent180510d29b369b88b0eb8815086162d2d6ef60a7 (diff)
downloadcpython-be5b30b15f6ba8bb854968db3bd43390676b905b.zip
cpython-be5b30b15f6ba8bb854968db3bd43390676b905b.tar.gz
cpython-be5b30b15f6ba8bb854968db3bd43390676b905b.tar.bz2
Merged revisions 61203-61204 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r61203 | christian.heimes | 2008-03-03 13:40:17 +0100 (Mon, 03 Mar 2008) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-60195" from svn+ssh://pythondev@svn.python.org/python/branches/trunk-math ........ r61204 | christian.heimes | 2008-03-03 19:28:04 +0100 (Mon, 03 Mar 2008) | 1 line Since abc._Abstract was replaces by a new type flags the regression test suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too? ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/inspect.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index 03ee17f..c2bc15c 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -263,6 +263,12 @@ attributes:
Return true if the object is a user-defined or built-in function or method.
+.. function:: isabstract(object)
+
+ Return true if the object is an abstract base class.
+
+ .. versionadded:: 2.6
+
.. function:: ismethoddescriptor(object)