52403a5ddf
get rid of the alias for true to True and false to False to keep consistent python syntax. util/stats/info.py: Fix typo --HG-- extra : convert_revision : e69588a8de52424e043315e70008ca3a3ede7d5b
11 lines
453 B
Text
11 lines
453 B
Text
simobj ConsoleListener(SimObject):
|
|
type = 'ConsoleListener'
|
|
port = Param.UInt16(3456, "listen port")
|
|
|
|
simobj SimConsole(SimObject):
|
|
type = 'SimConsole'
|
|
append_name = Param.Bool(True, "append name() to filename")
|
|
intr_control = Param.IntrControl(Super, "interrupt controller")
|
|
listener = Param.ConsoleListener("console listener")
|
|
number = Param.Int(0, "console number")
|
|
output = Param.String('', "file to dump output to")
|