Beispiel #1
0
 def complete(self, prefix):
     proc_obj = self.proc
     low, high = Mframe.frame_low_high(proc_obj, None)
     ary = [str(low + i) for i in range(high - low + 1)]
     # FIXME: add in Thread names
     return Mcomplete.complete_token(ary, prefix)
Beispiel #2
0
 def complete(self, prefix):
     proc_obj = self.proc
     low, high = Mframe.frame_low_high(proc_obj, None)
     ary = [str(low+i) for i in range(high-low+1)]
     # FIXME: add in Thread names
     return Mcomplete.complete_token(ary, prefix)