Re: [Twisted-Python] Distributing apilinks.py

2014-05-05 Thread Tom Prince
Eventually, apilinks should just go away. I think I have convinced Michael (pydoctor's maintainer) that pydoctor should just genereate an objects.inv that sphinx can read. Then the regular :py:*: annoations can be used, rather than the apilinks ones (which interpert <> backwards anyway). That does

Re: [Twisted-Python] Distributing apilinks.py

2014-05-05 Thread Adi Roiban
Hi Tom, Many, many thanks for pushing this forward! IRequest.getSession.html and extlinks is a workaround, but I hope that we can fix the source problem soon so that we don't have to stick with the workaround for to long. Is there a ticket in pydoctor for the generation of objects.inv ? Michael

[Twisted-Python] Serial interface for software program

2014-05-05 Thread anatoly techtonik
Hello, network hackers, Recently I've got a Raspberry Pi and a friend showed me its serial interface and helped to setup it. I was stunned. What I saw - you open serial terminal, and you jump in into the middle of boot section. Just open a terminal and you see what's going on inside of R.Pi. Any t

Re: [Twisted-Python] overly specific ImportError assert for python 3?

2014-05-05 Thread exarkun
On 02:17 am, gl...@twistedmatrix.com wrote: cyli was working on and encountered this peculiar failure on her branch (and not on trunk): . The interestin

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Laurens Van Houtven
Hi Anatoly, Do you know about manhole? I made a video that also demos axiom, but it should show you what manhole does :) https://www.youtube.com/watch?v=3-UZiO-AnLc Essentially it's "repl in a running process". hth lvh On Mon, May 5, 2014 at 4:43 AM, anatoly techtonik wrote: > Hello, netwo

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Itamar Turner-Trauring
If Spyder *just* uses Qt, it's a single-threaded event loop. There's a 3rd party event loop for Twisted that runs on top of Qt (qt4reactor), which would allow Twisted and Qt code to run in the same thread. -Itamar ___ Twisted-Python mailing list Twis

Re: [Twisted-Python] overly specific ImportError assert for python 3?

2014-05-05 Thread Glyph
On May 5, 2014, at 4:43 AM, exar...@twistedmatrix.com wrote: > On 02:17 am, gl...@twistedmatrix.com wrote: >> cyli was working on and >> encountered this peculiar failure on her branch (and not on trunk): >>

Re: [Twisted-Python] Distributing apilinks.py

2014-05-05 Thread Glyph
On May 5, 2014, at 1:07 AM, Tom Prince wrote: > Eventually, apilinks should just go away. I think I have convinced > Michael (pydoctor's maintainer) that pydoctor should just genereate an > objects.inv that sphinx can read. Then the regular :py:*: annoations can > be used, rather than the apilink

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Daniel Sank
> There's a 3rd party event loop for Twisted that runs on top of Qt (qt4reactor), which would > allow Twisted and Qt code to run in the same thread. Speaking of which, why isn't that thing officially part of twisted? Super useful. Daniel On Mon, May 5, 2014 at 10:24 AM, Itamar Turner-Trauring

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread exarkun
On 06:49 pm, sank.dan...@gmail.com wrote: There's a 3rd party event loop for Twisted that runs on top of Qt (qt4reactor), which would allow Twisted and Qt code to run in the same thread. Speaking of which, why isn't that thing officially part of twisted? Super useful. The PyQt team insist

Re: [Twisted-Python] overly specific ImportError assert for python 3?

2014-05-05 Thread Dustin J. Mitchell
Using 'pip freeze' to print versions can help, as can either using requirements.txt or 'pip install -U' to do the installs. On Mon, May 5, 2014 at 2:46 PM, Glyph wrote: > > On May 5, 2014, at 4:43 AM, exar...@twistedmatrix.com wrote: > >> On 02:17 am, gl...@twistedmatrix.com wrote: >>> cyli was w

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Itamar Turner-Trauring
On 05/05/2014 03:06 PM, exar...@twistedmatrix.com wrote: However, I'm not even sure if the GUI reactors *should* be distributed as part of the main Twisted package. They are already first-class reactors via the plugin system. Independent releases let them track changes in the GUI library th

Re: [Twisted-Python] tor hidden service endpoint parser returns a deferred

2014-05-05 Thread David Stainton
OK... I decided that txtorcon's endpoint constructor should only take string arguments besides the reactor arg... because serverFromString passes only str args to the endpoint constructor. I wrote the endpoint parser to be as simple as possible. The endpoint's `listen` method now handles the tor c

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Glyph
On May 5, 2014, at 6:02 PM, Itamar Turner-Trauring wrote: > On 05/05/2014 03:06 PM, exar...@twistedmatrix.com wrote: >> >> However, I'm not even sure if the GUI reactors *should* be distributed as >> part of the main Twisted package. They are already first-class reactors via >> the plugin sy

Re: [Twisted-Python] tor hidden service endpoint parser returns a deferred

2014-05-05 Thread Glyph
On May 5, 2014, at 6:52 PM, David Stainton wrote: > OK... I decided that txtorcon's endpoint constructor should only take > string arguments besides the reactor arg... > because serverFromString passes only str args to the endpoint constructor. I strongly suggest that this is wrong. The endpoi