def get_module_completion(self, objtxt):
     """Return module completion list associated to object name"""
     return moduleCompletion(objtxt)
 def get_module_completion(self, objtxt):
     """Return module completion list associated to object name"""
     # FIXME: This executes on the local machine, so it may suggest modules
     # that are not there on the robot!
     return moduleCompletion(objtxt)
Пример #3
0
 def getmodcomplist(self, name):
     """Return module completion list for object named *name*"""
     if self.ipython_shell:
         return self.ipython_shell.modcompletion(name)
     else:
         return moduleCompletion(name)
Пример #4
0
 def get_module_completion(self, objtxt):
     """Return module completion list associated to object name"""
     return moduleCompletion(objtxt)