[Twisted-Python] clientfactory cleanup slow-down (after many http requests)

2016-08-06 Thread Randomcoder
Hello, I've been working on a small Twisted program. The program makes HTTP requests to a large number of feeds. Twisted is used to speed up the entire process. After the feeds are fetched, they're parsed. Finally they should be written to a database (to simplify the code, that part is left out).

Re: [Twisted-Python] RFC: IPv6 multicast join/ticket 6597

2016-08-06 Thread Jason Litzinger
An update for those interested. I've been hoping for a solution to test IPv6 multicast using only the loopback interface. Unfortunately, the only working (on Linux) solution I've found is to manually add a route for the multicast prefix used in the tests. E.g. ip -6 route add ff01::/16 dev lo W

Re: [Twisted-Python] clientfactory cleanup slow-down (after many http requests)

2016-08-06 Thread Glyph Lefkowitz
> On Aug 6, 2016, at 03:48, Randomcoder wrote: > > Hello, > > I've been working on a small Twisted program. Cool, thanks for using Twisted. > The program makes HTTP requests to a large number of feeds. > Twisted is used to speed up the entire process. > After the feeds are fetched, they're pa

[Twisted-Python] twisted.python.dist as a public API

2016-08-06 Thread Adi Roiban
Hi, Why is twisted.python.dist3.py a public module? Are there any external projects which need to get the list of the modules ported to Python3? -- Why is twisted.python.dist a public module? The docstring starts with `Don't use this outside of Twisted.' but why not named it t

Re: [Twisted-Python] twisted.python.dist as a public API

2016-08-06 Thread Glyph Lefkowitz
> On Aug 6, 2016, at 16:31, Adi Roiban wrote: > > Hi, > > Why is twisted.python.dist3.py a public > module? Negligence on the part of a code reviewer :). > Are there any external projects which need to get the list of the modules > ported to Python3? No.