2014-07-16 01:20:13 +08:00
|
|
|
from operator import itemgetter
|
|
|
|
|
|
|
|
|
2015-07-14 04:08:20 +08:00
|
|
|
class Comm:
|
|
|
|
def __init__(self, dmgr):
|
2015-08-07 21:15:44 +08:00
|
|
|
super().__init__()
|
2015-07-14 04:08:20 +08:00
|
|
|
|
2014-12-03 18:16:18 +08:00
|
|
|
def switch_clock(self, external):
|
|
|
|
pass
|
2014-09-05 12:03:22 +08:00
|
|
|
|
2015-08-28 13:47:28 +08:00
|
|
|
def load(self, kernel_library):
|
|
|
|
pass
|
2014-09-05 12:03:22 +08:00
|
|
|
|
2015-08-28 13:47:28 +08:00
|
|
|
def run(self):
|
|
|
|
pass
|
2014-09-15 22:40:33 +08:00
|
|
|
|
2015-08-28 13:47:28 +08:00
|
|
|
def serve(self, object_map, symbolizer):
|
|
|
|
pass
|
2015-11-27 16:29:13 +08:00
|
|
|
|
|
|
|
def check_ident(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_log(self):
|
|
|
|
return ""
|
|
|
|
|
|
|
|
def clear_log(self):
|
|
|
|
pass
|