Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Data Structures | |
class | InteractiveInterpreter |
class | InteractiveConsole |
Functions | |
def | softspace |
def | interact |
Variables | |
list | __all__ |
Utilities needed to emulate Python's interactive interpreter.
def code.interact | ( | banner = None , |
|
readfunc = None , |
|||
local = None |
|||
) |
Closely emulate the interactive Python interpreter. This is a backwards compatible interface to the InteractiveConsole class. When readfunc is not specified, it attempts to import the readline module to enable GNU readline if it is available. Arguments (all optional, all default to None): banner -- passed to InteractiveConsole.interact() readfunc -- if not None, replaces InteractiveConsole.raw_input() local -- passed to InteractiveInterpreter.__init__()
Definition at line 285 of file code.py.
def code.softspace | ( | file, | |
newvalue | |||
) |