6 """Extention of DesktopService for DLV2."""
8 def __init__(self, exe_path):
9 super(DLV2DesktopService, self).__init__(exe_path)
12 def _get_output(self, output, error):
13 """Returns a new DLV2AnwerSets from given output and error."""
17 """Calls start_async method of a superclass."""
19 callback, programs, options)
21 def start_sync(self, programs, options):
22 """Calls start_sync method of a superclass and returns its output
24 return super(DLV2DesktopService, self).start_sync(programs, options)