Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Doc/library/inspect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,11 @@ attributes (see :ref:`import-mod-attrs` for module attributes):

Return ``True`` if the object is a bound method written in Python.

Note that accessing a method through the class (rather than an instance)
returns a plain :term:`function`, not a bound method, so :func:`ismethod`
will return ``False`` in that case. See :ref:`instance-methods` in the
language reference for details.


.. function:: ispackage(object)

Expand Down
Loading