[Twisted-Python] Two-way telnet client problem

2009-04-08 Thread Greg Taylor
Hello all, I'm still pretty new with Twisted, so the documentation is a little bit cryptic and strange to wade through. I'm writing a MUD server that I'd like to add InterMUD Protocol (IMC) to. This basically allows any of the games running the MUD server to connect to an IMC server that lets play

RE: [Twisted-Python] RE: Question about Descriptors and SelectReactor

2009-04-08 Thread Alec Matusis
> Longer answer: Looks like maybe you want to contribute a patch for this > ticket :) > > http://twistedmatrix.com/trac/ticket/2234 I will look at this at some point (really swamped with work). But my question is: are you going to use python's select.epoll() that was introduced in python 2

[Twisted-Python] Re: Can't quit a Tkinter application on MacOS X when using Twisted; fix? workaround?

2009-04-08 Thread Russell E. Owen
In article , "Russell E. Owen" wrote: > I am trying to convert a cross-platform Python/Tkinter application to > use Twisted and have run into a problem: at least on MacOS X I can no > longer quit the application. > > """Script showing failure-to-quit bug..."" > import Tkinter > import twis

Re: [Twisted-Python] How to hook at StandardIO factory to a twistd app

2009-04-08 Thread Itamar Shtull-Trauring
> Hi Twisted! > > Could a kind soul provide me an example of how to connect my StandardIO > factory to a twistd app? Here is an overview of my code > > class MyProtocol(basic.LineReceiver): > # Blah Blah > > class MyFactory( stdio.StandardIO ): > def __init__(self, protocol): >

[Twisted-Python] Twisted mirror down?

2009-04-08 Thread Chris Foster
Who/where/how do we report a problem with http://tmrc.mit.edu/mirror/twisted/Twisted/8.2/Twisted-8.2.0.tar.bz2 ? ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

RE: [Twisted-Python] RE: Question about Descriptors and SelectReactor

2009-04-08 Thread andrewfr_ice
Hi Glyph and Folks: AM>I would be actually quite curious to know the rationale of choosing AM>select() over epoll() these days. epoll() scales like O(1) with the AM>number of file descriptors, it is very performant, stable, and has no AM>limitation on the overall number of fds on linux (except

Re: [Twisted-Python] How to hook at StandardIO factory to a twistd app

2009-04-08 Thread Alex Clemesha
On Wed, Apr 8, 2009 at 9:14 AM, wrote: > Hi Twisted! > > Could a kind soul provide me an example of how to connect my StandardIO > factory to a twistd app?  Here is an overview of my code > > class MyProtocol(basic.LineReceiver): >    # Blah Blah > > class MyFactory( stdio.StandardIO ): >    def

[Twisted-Python] How to hook at StandardIO factory to a twistd app

2009-04-08 Thread akrherz
Hi Twisted! Could a kind soul provide me an example of how to connect my StandardIO factory to a twistd app? Here is an overview of my code class MyProtocol(basic.LineReceiver): # Blah Blah class MyFactory( stdio.StandardIO ): def __init__(self, protocol): self.protocol = pro