diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-20 18:18:53 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-20 18:18:53 +0000 |
commit | f1e40cc4859a92aee4d7c7802eab8f13c7a9e00b (patch) | |
tree | ccdb0661b107560871c2f4d7df304219079ae950 | |
parent | 0433995438079f29372e500bfc44a6de3e02727e (diff) | |
download | cpython-f1e40cc4859a92aee4d7c7802eab8f13c7a9e00b.tar.gz |
Added doc for the "module" attribute on the class descriptor objects;
omission repoorted by Glyn Webster <glyn@ninz.org.nz>.
-rw-r--r-- | Doc/lib/libpyclbr.tex | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Doc/lib/libpyclbr.tex b/Doc/lib/libpyclbr.tex index 7381e4e997..aba83f8c33 100644 --- a/Doc/lib/libpyclbr.tex +++ b/Doc/lib/libpyclbr.tex @@ -1,9 +1,9 @@ \section{\module{pyclbr} --- - Python class browser information} + Python class browser support} \declaremodule{standard}{pyclbr} \modulesynopsis{Supports information extraction for a Python class -browser.} + browser.} \sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org} @@ -32,6 +32,11 @@ The class descriptor objects used as values in the dictionary returned by \function{readmodule()} provide the following data members: +\begin{memberdesc}[class descriptor]{module} + The name of the module defining the class described by the class + descriptor. +\end{memberdesc} + \begin{memberdesc}[class descriptor]{name} The name of the class. \end{memberdesc} |