qubx :: pyenv :: ScriptModule :: Class ScriptModule
[hide private]
[frames] | no frames]

Class ScriptModule

source code

object --+
         |
        ScriptModule

Instance Methods [hide private]
 
__init__(self, filename, globals, process_events=True)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__nonzero__(self) source code
 
preload(self, expr, raise_exceptions=True) source code
 
__call__(self, expr=None, locals=None, raise_exceptions=False) source code
 
resume_none(self) source code
 
script_pause(self)
Called from within a script; doesn't return until someone calls resume().
source code
 
pause(self)
Called from outside a script; pauses via the trace function.
source code
 
step(self)
Moves forward one line in the script.
source code
 
stop(self) source code
 
on_trace(self, frame, event, arg) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, filename, globals, process_events=True)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)