コード例 #1
0
 def writeSExpr(self, l):
     self.writeOut(sexpr.sexpr2str(l))
コード例 #2
0
ファイル: dispatch.py プロジェクト: siggame/Megaminer-7
 def stringReceived(self, string):
     expr = str2sexpr(string)
     for command in expr:
         result = self.app.run(command)
         if result:
             self.sendString(sexpr2str(result))
コード例 #3
0
ファイル: dispatch.py プロジェクト: NortySpock/Megaminer-7
 def stringReceived(self, string):
   expr = str2sexpr(string)
   for command in expr:
     result = self.app.run(command)
     if result:
       self.sendString(sexpr2str(result))
コード例 #4
0
 def sendToRedirect(self, l):
     self.client.send(sexpr.sexpr2str(l))
コード例 #5
0
ファイル: LogicFilter.py プロジェクト: simbu95/Backgammon
 def writeSExpr(self, l):
     self.writeOut(sexpr.sexpr2str(l))
コード例 #6
0
ファイル: GameServer.py プロジェクト: simbu95/Backgammon
 def sendToRedirect(self, l):
     self.client.send(sexpr.sexpr2str(l))