Functions | |
| def | showDict |
| def | showMethods |
| def | showDataMembers |
| def | showLoadedModules |
| def | showObjectSymbolTable |
| def | showCurrentLocalSymbolTable |
| def | inspectModule |
| def | inspectClass |
| def | inspectMethod |
| def | inspectFunction |
Variables | |
| string | __file__ = "introspection.py" |
| string | __title__ = "This is the introspection module, made to retrieve easily informations about python objects." |
| string | __version__ = "0.2" |
| string | __author__ = "Olivier Boudeville (olivier.boudeville@online.fr)" |
| string | __project__ = "Ceylan" |
| string | __creationDate__ = "2001, August 23" |
| string | __comments__ = "Use its own introspection capabilities to discover what this module can do !" |
| string | __source__ = "Mark Pilgrim, http://diveintopython.org/, and al." |
| string | __doc__ = '\n' |
| def introspection::inspectClass | ( | myClass, | ||
spacing = 10, |
||||
collapse = 1 | ||||
| ) |
| def introspection::inspectFunction | ( | myFunc, | ||
spacing = 10, |
||||
collapse = 1 | ||||
| ) |
| def introspection::inspectMethod | ( | myMethod, | ||
spacing = 15, |
||||
collapse = 1 | ||||
| ) |
| def introspection::inspectModule | ( | myModule, | ||
spacing = 10, |
||||
collapse = 1 | ||||
| ) |
| def introspection::showCurrentLocalSymbolTable | ( | spacing = 10, |
||
collapse = 1 | ||||
| ) |
| def introspection::showDataMembers | ( | object, | ||
spacing = 10, |
||||
collapse = 1 | ||||
| ) |
Affiche les données membres de l'objet spécifié et leur type
Definition at line 45 of file introspection.py.
| def introspection::showDict | ( | myDict, | ||
spacing = 10, |
||||
collapse = 1 | ||||
| ) |
Affiche un dictionnaire, en plaçant sur la même ligne une clé et l'objet qui lui correspond
Definition at line 19 of file introspection.py.
| def introspection::showLoadedModules | ( | spacing = 10, |
||
collapse = 1 | ||||
| ) |
| def introspection::showMethods | ( | object, | ||
spacing = 15, |
||||
collapse = 1 | ||||
| ) |
Affiche les méthodes de l'objet spécifié et leur documentation __doc__
Definition at line 29 of file introspection.py.
| def introspection::showObjectSymbolTable | ( | myObject | ) |
| string introspection::__author__ = "Olivier Boudeville (olivier.boudeville@online.fr)" |
Definition at line 6 of file introspection.py.
| string introspection::__comments__ = "Use its own introspection capabilities to discover what this module can do !" |
Definition at line 9 of file introspection.py.
| string introspection::__creationDate__ = "2001, August 23" |
Definition at line 8 of file introspection.py.
| string introspection::__doc__ = '\n' |
Definition at line 11 of file introspection.py.
| string introspection::__file__ = "introspection.py" |
Definition at line 3 of file introspection.py.
| string introspection::__project__ = "Ceylan" |
Definition at line 7 of file introspection.py.
| string introspection::__source__ = "Mark Pilgrim, http://diveintopython.org/, and al." |
Definition at line 10 of file introspection.py.
| string introspection::__title__ = "This is the introspection module, made to retrieve easily informations about python objects." |
Definition at line 4 of file introspection.py.
| string introspection::__version__ = "0.2" |
Definition at line 5 of file introspection.py.
1.5.8