Home | Trees | Index | Help |
|
---|
Package cheesecake :: Module codeparser :: Class CodeParser |
|
object
--+
|
CodeParser
Information about the structure of a Python module.
Method Summary | |
---|---|
Initialize Code Parser object. | |
Return number of docstrings found in this module. | |
Return number of docstrings of given type found in this module. | |
Return number of objects found in this module. | |
Return list of functions called by functions/methods defined in this module. | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Property Summary | |
---|---|
functions_called |
Method Details |
---|
__init__(self,
pyfile,
log=None)
|
docstring_count(self)Return number of docstrings found in this module. |
docstring_count_by_type(self, type)Return number of docstrings of given type found in this module. |
object_count(self)Return number of objects found in this module. Objects include: * module * classes * methods * functions |
_functions_called(self)Return list of functions called by functions/methods defined in this module. |
Property Details |
---|
functions_called
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Fri Feb 9 02:15:12 2007 | http://epydoc.sf.net |