diff options
Diffstat (limited to 'Doc/library/operator.rst')
-rw-r--r-- | Doc/library/operator.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 40acc6b..cb89a7f 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -390,7 +390,7 @@ objects. Use the :func:`callable` built-in function instead. Returns true if the object *obj* can be called like a function, otherwise it - returns false. True is returned for functions, bound and unbound methods, class + returns false. True is returned for functions, instance methods, class objects, and instance objects which support the :meth:`__call__` method. |