コード例 #1
0
ファイル: executer.py プロジェクト: the16stpythonist/JTShell
 def __init__(self, shell):
     Processer.__init__(self, shell)
     self.name = "Executer" + str(self.id)
     self.processlist = shell.processlist
     self.id += 1
コード例 #2
0
ファイル: analyzer.py プロジェクト: the16stpythonist/JTShell
 def __init__(self, shell):
     Processer.__init__(self, shell)
     self.name = "Analyzer" + str(self.id)
     self.id += 1
コード例 #3
0
ファイル: parser.py プロジェクト: the16stpythonist/JTShell
 def __init__(self, shell):
     Processer.__init__(self, shell)
     self._write("process", "created new ShellParser object with the internal id: {0}".format(self.id))
     self.name = "Parser" + str(self.id)
     self.id += 1