示例#1
0
文件: explorer.py 项目: cjbe/artiq
 def __init__(self, init):
     DictSyncTreeSepModel.__init__(self, "/", ["Experiment"], init)
示例#2
0
文件: datasets.py 项目: cntnly/artiq
 def __init__(self,  init):
     DictSyncTreeSepModel.__init__(self, ".", ["Dataset", "Value"], init)
示例#3
0
 def __init__(self, init):
     DictSyncTreeSepModel.__init__(self, "/", ["Experiment"], init)
示例#4
0
 def __init__(self,  init):
     DictSyncTreeSepModel.__init__(self, ".",
                                   ["Dataset", "Persistent", "Value"],
                                   init)
示例#5
0
文件: explorer.py 项目: cr1901/artiq
 def __setitem__(self, k, v):
     DictSyncTreeSepModel.__setitem__(self, k, v)
     if self.explorer is not None:
         if k == self.explorer.selected_key:
             self.explorer.update_selection(k, k)
示例#6
0
文件: explorer.py 项目: cr1901/artiq
 def __init__(self, init):
     self.explorer = None
     DictSyncTreeSepModel.__init__(self,
         "/",
         ["Experiment"],
         init)