Changeset 391 for python/trunk/Doc/library/pyclbr.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/pyclbr.rst
r2 r391 1 2 1 :mod:`pyclbr` --- Python class browser support 3 2 ============================================== … … 7 6 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> 8 7 8 **Source code:** :source:`Lib/pyclbr.py` 9 10 -------------- 9 11 10 12 The :mod:`pyclbr` module can be used to determine some limited information … … 18 20 19 21 20 .. function:: readmodule(module [, path=None])22 .. function:: readmodule(module, path=None) 21 23 22 24 Read a module and return a dictionary mapping class names to class … … 27 29 28 30 29 .. function:: readmodule_ex(module [, path=None])31 .. function:: readmodule_ex(module, path=None) 30 32 31 33 Like :func:`readmodule`, but the returned dictionary, in addition to … … 44 46 The :class:`Class` objects used as values in the dictionary returned by 45 47 :func:`readmodule` and :func:`readmodule_ex` provide the following data 46 members:48 attributes: 47 49 48 50 … … 88 90 89 91 The :class:`Function` objects used as values in the dictionary returned by 90 :func:`readmodule_ex` provide the following data members:92 :func:`readmodule_ex` provide the following attributes: 91 93 92 94
Note:
See TracChangeset
for help on using the changeset viewer.