From: Fred Drake Date: Thu, 2 Aug 2001 21:34:53 +0000 (+0000) Subject: User-defined methods *can* contain things other than user-defined functions X-Git-Tag: v2.2a3~861 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8dd6ffd0ecd113d7a9de3498069fb5c4a2afa22a;p=thirdparty%2FPython%2Fcpython.git User-defined methods *can* contain things other than user-defined functions as the callable, so use more flexible language. --- diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 97c03f8756fb..35d137e4f303 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -446,7 +446,8 @@ unless nested scopes are enabled. (See the appendix.) \item[User-defined methods] A user-defined method object combines a class, a class instance (or -\code{None}) and a user-defined function. +\code{None}) and any callable object (normally a user-defined +function). \obindex{method} \obindex{user-defined method} \indexii{user-defined}{method}