Re: [Twisted-Python] IRCClient method naming advice

2012-01-28 Thread Jonathan Jacobs
On Sat, Jan 28, 2012 at 07:51, Matthew Pounsett wrote: > > I've found that the IRCClient protocol doesn't deal well with having its > connection interrupted.  If the TCP session goes away due to timeout or some > other interruption, it doesn't appear to notice.  As a result, I'm looking at > ad

Re: [Twisted-Python] IRCClient method naming advice

2012-01-28 Thread Matthew Pounsett
On 2012/01/28, at 04:20, Jonathan Jacobs wrote: > "Heartbeat" functionality was implemented in IRCClient and released in > Twisted 11.1.0, see ticket #5047 > , by default it sends a > PING every 120 seconds. Ahh.. my problem is that my package manager (

[Twisted-Python] How to Connect a IPv6 server through Twisted

2012-01-28 Thread Peng Xiao -X (penxiao - Digital China at Cisco)
Hi experts I want to establish a connection between my twisted client and an IPv6 server, how can I achieve that? Which version of Twisted should I use? I know how to use IPv4 through "reactor.connectTCP(self.Addr, PORT, self)". Very thanks Best Regards, Xiao Peng ___

[Twisted-Python] Weekly Bug Summary

2012-01-28 Thread exarkun
Bug summary __ Summary for 2012-01-22 through 2012-01-29 Opened Closed Total Change Enhancements: 6 4795 +2 Defects: 2 0522 +2 Tasks: 1 0 7

[Twisted-Python] Problem passing objects with perspective broker

2012-01-28 Thread Fourat ZOUARI
Hi, Whenever i try to pass an object (aClass) with a property with a second object (bClass) Am getting: *Unpersistable('Unpersistable data: instance of class amodule.bClass deemed insecure')* The aClass is copyable and unjellied, the bClass is not. Here's my code: server.py: from twisted.app

Re: [Twisted-Python] Problem passing objects with perspective broker

2012-01-28 Thread David Ripton
On 01/29/12 00:57, Fourat ZOUARI wrote: > Whenever i try to pass an object (aClass) with a property with a second > object (bClass) Am getting: > > *Unpersistable('Unpersistable data: instance of class amodule.bClass > deemed insecure')* > > > The aClass is copyable and unjellied, the bCla

Re: [Twisted-Python] Problem passing objects with perspective broker

2012-01-28 Thread Fourat ZOUARI
I didnt make bClass as copyable and unjellyed it just for the question, in fact, the example i gave was the bare minimum of my source code to let people clearly view the issue. In the real problem, aClass has many references to other objects and if i were to set them all as copyable and then unjel