コード例 #1
0
ファイル: example-ext.py プロジェクト: elly/twisted-ts6
 def sendLine(self, line):
     IrcdConn.sendLine(self,line)
     print '-> %s' % line
コード例 #2
0
ファイル: example-ext.py プロジェクト: elly/twisted-ts6
 def lineReceived(self, line):
     print '<- %s' % line
     IrcdConn.lineReceived(self, line)
コード例 #3
0
ファイル: example-ext.py プロジェクト: elly/twisted-ts6
 def burstStart(self):
     print 'twisted-seven: burst starting'
     IrcdConn.burstStart(self)
コード例 #4
0
ファイル: example-ext.py プロジェクト: mmattice/tx-ts6
 def sendLine(self, line):
     IrcdConn.sendLine(self,line)
     print '%17.6f -> %s' % (time.time(), line)
コード例 #5
0
ファイル: example-ext.py プロジェクト: mmattice/tx-ts6
 def lineReceived(self, line):
     print '%17.6f <- %s' % (time.time(), line)
     IrcdConn.lineReceived(self, line)
コード例 #6
0
 def burstStart(self):
     print 'twisted-seven: burst starting'
     IrcdConn.burstStart(self)
コード例 #7
0
 def lineReceived(self, line):
     print '%17.6f <- %s' % (time.time(), line)
     IrcdConn.lineReceived(self, line)
コード例 #8
0
 def sendLine(self, line):
     IrcdConn.sendLine(self, line)
     print '%17.6f -> %s' % (time.time(), line)
コード例 #9
0
 def lineReceived(self, line):
     print '<- %s' % line
     IrcdConn.lineReceived(self, line)
コード例 #10
0
 def sendLine(self, line):
     IrcdConn.sendLine(self, line)
     print '-> %s' % line