Python 2.3, one of the latest Twisted version:

I noted that under Linux there is not way to Control-C the reactor loop. After digging a little I found that following change helpes:

[EMAIL PROTECTED] internet]# diff base.py{,.ori}
>
302d301
<       print "1",sysEvtTriggers
305d303
<       print "2",`self._eventTriggers`
307,308c305
<         for callable, args, kw in sysEvtTriggers[1]:
<           print "3"
---
>
>         for callable, args, kw in sysEvtTriggers[0]:
317d313
<           print "4"
320d315
<           print "5",`eventType`


Of course it is quick work around, not a permanent fix, but it really helps.


Please advice, Andy -- http://mail.python.org/mailman/listinfo/python-list

Reply via email to