direct.tkpanels.Inspector
from direct.tkpanels.Inspector import ClassInspector, CodeInspector, ComplexInspector, DictionaryInspector, FunctionInspector, Inspector, InspectorWindow, InstanceInspector, InstanceMethodInspector, ModuleInspector, SequenceInspector, SliceInspector, initializeInspectorMap, inspect, inspectorFor
Inspectors allow you to visually browse through the members of
various Python objects. To open an inspector, import this module, and
execute inspector.inspect(anObject)
.
I start IDLE with this command line:
idle.py -c "from inspector import inspect"
so that I can just type: inspect(anObject)
any time.
See Utility Functions for more information.
Inheritance diagram
- class InspectorWindow(inspector)[source]
Bases:
object
- inspect(anObject)[source]
Opens up a window for visually inspecting the details of a given Python object. See Utility Functions.