diff options
author | Guido van Rossum <guido@python.org> | 2001-12-07 22:03:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-12-07 22:03:18 (GMT) |
commit | b62f0e1a7b1f2558695542251d26bbf5b751fbf4 (patch) | |
tree | 1116ca95393793908101806a884e1b5a234bfa03 /Doc/lib/libinspect.tex | |
parent | 79619305958ecec5d18eaa7994c14cc84df9c7ec (diff) | |
download | cpython-b62f0e1a7b1f2558695542251d26bbf5b751fbf4.zip cpython-b62f0e1a7b1f2558695542251d26bbf5b751fbf4.tar.gz cpython-b62f0e1a7b1f2558695542251d26bbf5b751fbf4.tar.bz2 |
Correct the description of im_class. (Fred, this is changed in 2.2.
Should this be labeled as changed? How?)
Diffstat (limited to 'Doc/lib/libinspect.tex')
-rw-r--r-- | Doc/lib/libinspect.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libinspect.tex b/Doc/lib/libinspect.tex index 1283cdd..06ee6de 100644 --- a/Doc/lib/libinspect.tex +++ b/Doc/lib/libinspect.tex @@ -39,7 +39,7 @@ you can expect to find the following special attributes: \hline \lineiii{method}{__doc__}{documentation string} \lineiii{}{__name__}{name with which this method was defined} - \lineiii{}{im_class}{class object in which this method belongs} + \lineiii{}{im_class}{class object that asked for this method} \lineiii{}{im_func}{function object containing implementation of method} \lineiii{}{im_self}{instance to which this method is bound, or \code{None}} \hline |