示例#1
0
 def __init__(self):
     Program.__init__(self,
                      'Casino 3',
                      'casino3',
                      Converter,
                      Worker,
                      importer_class=Importer)
 def __init__(self):
     Program.__init__(self, 'Casino 3', 'casino3', Converter, Worker,
                       importer_class=Importer)
示例#3
0
 def __init__(self):
     Program.__init__(self, 'PAP', 'pap', Converter, Worker, Exporter,
                      Importer)
 def __init__(self):
     autorun = True if sys.platform == 'win32' else False
     Program.__init__(self, 'Monaco', 'monaco', Converter, Worker,
                       Exporter, Importer, autorun)
示例#5
0
 def __init__(self):
     autorun = True if sys.platform == 'win32' else False
     Program.__init__(self, 'Monaco', 'monaco', Converter, Worker, Exporter,
                      Importer, autorun)
示例#6
0
 def __init__(self):
     Program.__init__(self, 'XPP', 'xpp',
                      Converter, Worker, Exporter, Importer)
示例#7
0
 def __init__(self):
     Program.__init__(self, 'PROZA', 'proza',
                      Converter, Worker, Exporter, Importer)
 def __init__(self):
     autorun = False if sys.platform == 'darwin' else True
     Program.__init__(self, 'WinXRay', 'winxray', Converter, Worker,
                       Exporter, Importer, autorun=autorun)
示例#9
0
 def __init__(self):
     Program.__init__(self, 'Dummy', 'dummy', DummyConverter, DummyWorker,
                      DummyExporter, DummyImporter)
示例#10
0
 def __init__(self):
     Program.__init__(self, 'Casino 2', 'casino2', Converter, Worker,
                       Exporter, Importer, autorun=False)
示例#11
0
 def __init__(self):
     Program.__init__(self, 'XPP', 'xpp', Converter, Worker, Exporter,
                      Importer)
示例#12
0
 def __init__(self):
     Program.__init__(self, 'NISTMonte', 'nistmonte', Converter, Worker,
                      Exporter, Importer)
示例#13
0
 def __init__(self):
     Program.__init__(self, "PAP", "pap", Converter, Worker, Exporter, Importer)