私はひどくひどく、twisted.internet.protocol.Protocol
オブジェクトのdataReceived
メソッド内で自分のコードをデバッグするのに問題があります。TwistedでProtocol.dataReceivedをデバッグする方法
は、私がdataReceived
にErrback
を追加する方法を見つけることができませんでした。この
class Printer(Protocol):
def dataReceived(self, data):
print data # Works perfectly
print toto # should trigger some error since "toto" is not defined
...
response.deliverBody(Printer())
のようないくつかのコードを考えます。方法はありますか?その振る舞いをデバッグする別の方法は?
ご協力いただきありがとうございます。