예제 #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)