| | |
- exceptions.Exception
-
- hotshot.ProfilerError
- __builtin__.object
-
- LogReaderType
- ProfilerType
class ProfilerType(__builtin__.object) |
| |
High-performance profiler object.
Methods:
close(): Stop the profiler and close the log files.
runcall(): Run a single function call with profiling enabled.
runcode(): Execute a code object with profiling enabled.
start(): Install the profiler and return.
stop(): Remove the profiler.
Attributes (read-only):
closed: True if the profiler has already been closed.
frametimings: True if ENTER/EXIT events collect timing information.
lineevents: True if SET_LINENO events are reported to the profiler.
linetimings: True if SET_LINENO events collect timing information. |
| |
Methods inherited from __builtin__.object:
- __delattr__(...)
- x.__delattr__('name') <==> del x.name
- __getattribute__(...)
- x.__getattribute__('name') <==> x.name
- __hash__(...)
- x.__hash__() <==> hash(x)
- __init__(...)
- x.__init__(...) initializes x; see x.__class__.__doc__ for signature
- __reduce__(...)
- helper for pickle
- __repr__(...)
- x.__repr__() <==> repr(x)
- __setattr__(...)
- x.__setattr__('name', value) <==> x.name = value
- __str__(...)
- x.__str__() <==> str(x)
Data and non-method functions inherited from __builtin__.object:
- __class__ = <type 'type'>
- the object's class
- __new__ = <built-in method __new__ of type object>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
| |