diff options
author | Fred Drake <fdrake@acm.org> | 2001-08-02 21:34:53 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-08-02 21:34:53 (GMT) |
commit | 8dd6ffd0ecd113d7a9de3498069fb5c4a2afa22a (patch) | |
tree | ff1f95617f99163da91add75dcbd18e43ca6daab /Doc/ref | |
parent | 51629c245a2d5895be040a27627b072a4f5479bf (diff) | |
download | cpython-8dd6ffd0ecd113d7a9de3498069fb5c4a2afa22a.zip cpython-8dd6ffd0ecd113d7a9de3498069fb5c4a2afa22a.tar.gz cpython-8dd6ffd0ecd113d7a9de3498069fb5c4a2afa22a.tar.bz2 |
User-defined methods *can* contain things other than user-defined functions
as the callable, so use more flexible language.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref3.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 97c03f8..35d137e 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} |