Re: [Twisted-Python] untwisting twistd

2009-07-01 Thread Mikhail
ted.application import service import reverse application = service.Application("Reverser") reverserService = reverse.ReverserService(() reverserServise.setServiceParent(application) if __name__ == '__main__': from twisted.SOMETHING import run

Re: [Twisted-Python] untwisting twistd

2009-07-02 Thread Mikhail
re's any disagreement about the fact > that it would be nice for the twistd feature to be more flexible in > the ways suggested, but it's a non-trivial undertaking. > Yes, that is probably why it is called twisted :) Mikhail ___ Twi

Re: [Twisted-Python] untwisting twistd

2009-07-07 Thread Mikhail
Thanks Jared, this is exactly what I was missing! ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Twistd .tac + wxpython

2009-08-20 Thread Mikhail
ithout GUI) I needed a part of the functionality provided by twistd and at the same time the possibility to crate a single file executable. I ended subclassing ProcessOption and ApplicationRunner as Jared recommended here http://twistedmatrix.com/pipermail/twisted-python/2009-

Re: [Twisted-Python] Twistd .tac + wxpython

2009-08-20 Thread Mikhail
n. > What GUI library would you recommend instead of wx? Regards, Mikhail ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] deciding to use twisted or not

2009-08-27 Thread Mikhail
Cary's ProcessProtocol approach, and if that doesn't work, Glyph's LoopingCall with a read() approach. > You can also use pyinotify to watch your log file changes. http://trac.dbzteam.org/pyinotify Regards, Mikhail ___ Tw

Re: [Twisted-Python] Volunteer for twisted code Reviews and Commits

2009-11-09 Thread Mikhail
e shows that you are using 0.11dev - this is not good. During 0.11 development they fixed a lot of performance/memory problems. The current version is 0.11.5. You definitely should upgrade. Regards, Mikhail ___ Twisted-Python mailing list Twisted-Pyt

Re: [Twisted-Python] sleeping in inlineCallbacks

2009-10-07 Thread Mikhail Terekhov
ix.com/documents/current/api/twisted.internet.defer.Deferred.html#setTimeout IMHO it solves similar problem. -- Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Deferred on PyPI

2009-12-09 Thread Mikhail Terekhov
ly case when separation of Deferreds would benefit Twisted community as a whole would be inclusion of it into the standard library, but this is not going to happen soon ... Bottom line - I wouldn't blame Twisted developers for the lack of enthusiasm in this case. Regards, -- Mikhail Terekhov

Re: [Twisted-Python] web vs web2 clarification

2009-12-10 Thread Mikhail Terekhov
Borland's, Netscape's and Microsoft's software but how many know/use Joel's? ;) Regards, -- Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] web vs web2 clarification

2009-12-10 Thread Mikhail Terekhov
t is > rarely ever a wise project management decision. > That is all true but it is very close to Joel's reasoning, kind of a manager's point of view. It is too business/money oriented and doesn't exhaust all the reasons why people write software in open source world in

Re: [Twisted-Python] Lore to Sphinx Conversion Progress Report 2

2009-12-18 Thread Mikhail Terekhov
On Fri, Dec 18, 2009 at 1:46 PM, Kevin Horn wrote: > > I'm also happy to send a copy of the code I have so far to anyone who's > interested...just send me an email off list, and I'll send you a tarball. > What about putting it into Twisted's SVN, i.e. into sandbox

Re: [Twisted-Python] Lore to Sphinx Conversion Progress Report 2

2009-12-18 Thread Mikhail Terekhov
nsize.net periodically just for people to look at, > though. > May be then attach it to some ticket in Trac? Regards, -- Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

[Twisted-Python] 9.0.0 question

2010-01-20 Thread Mikhail Terekhov
internet.error.ReactorNotRunning: Can't stop reactor that isn't running. terek...@linux:/home/terekhov/python/twisted/9.0/Twisted-9.0.0/doc/names/examples > At the same time echo client/server example from the twisted core works as expected. Any hint would be a

Re: [Twisted-Python] 9.0.0 question

2010-01-21 Thread Mikhail Terekhov
On Thu, Jan 21, 2010 at 3:58 AM, wrote: > On 03:43 am, gl...@twistedmatrix.com wrote: >> >>On Jan 20, 2010, at 3:20 PM, Mikhail Terekhov wrote: >>>Hi, >>> >>>I've switched recently from 8.2 to 9.0 and noticed that some of my >>>client s

Re: [Twisted-Python] 9.0.0 question

2010-01-22 Thread Mikhail Terekhov
stop() was called before reactor.run(), it's not called > *after* reactor.run().  So the reactor never stops. > That is nice :) Regards, -- Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] 9.0.0 question

2010-01-22 Thread Mikhail Terekhov
till can't get it. Here is your explanation for convenience: > It doesn't. It raises an exception. The reason the example hangs is > that since reactor.stop() was called before reactor.run(), it's not called > *after* reactor.run(). So the reacto

Re: [Twisted-Python] 9.0.0 question

2010-01-23 Thread Mikhail Terekhov
On Fri, Jan 22, 2010 at 8:04 PM, Tristan Seligmann wrote: > On Sat, Jan 23, 2010 at 1:40 AM, Mikhail Terekhov wrote: >> So why reactor never stops if it was never run? What it is doing? > > You call reactor.stop(); this does nothing but produce a delayed > exception. You the

Re: [Twisted-Python] multiprocessing capability?

2010-02-24 Thread Mikhail Terekhov
tolerant parallelism in small to medium > scale with high reliability, this might be an option. > Are you working on the twisted's interface to Spread or on python-Spread interface like http://zope.org/Members/tim_one/spread ? Regards, -- Mikhail Terekhov

Re: [Twisted-Python] http://twistedmatrix.com/ trac installation updated

2010-03-16 Thread Mikhail Terekhov
On Mon, Mar 15, 2010 at 6:36 PM, Tim Allen wrote: > On Mon, Mar 15, 2010 at 09:30:05AM -0500, Mikhail Terekhov wrote: >> On Sun, Mar 14, 2010 at 1:44 AM, Glyph Lefkowitz >> wrote: >> > >> > On Mar 11, 2010, at 3:05 PM, exar...@twistedmatrix.com wrote: >&g

Re: [Twisted-Python] Twisted 16.7.0rc1 Release Candidate Announcement

2017-01-03 Thread Terekhov, Mikhail
On 12/29/16 08:27, Glyph Lefkowitz wrote: On Dec 28, 2016, at 15:20, John Santos > wrote: Seems to require a new Python module, Automat. Good catch, that probably should have been announced at least a little :). (Not mentioned in the NEWS file, INSTALL, etc.) Despit

Re: [Twisted-Python] Twisted Plugins - Implementation Discussion

2011-04-21 Thread Mikhail Terekhov
o invent yet another scripting language for info files or good old python is not good enough? BTW are bento and waf sources included in that 50% reduction? -- Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] SURVEY: Have you submitted a patch to Twisted and it never got in?

2011-07-01 Thread Mikhail Terekhov
m a trusted "lieutenants" (like in Linux kernel case) and creating patches is not very different in svn, git etc. Regards, Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Moving Twisted off Trac and SVN to somewhere nicer

2011-07-01 Thread Mikhail Terekhov
ier to new developers is not whether we > use git or subversion or what have you, but the high quality of code > required (coding standard, tests, passing code review). A DVCS may well > encourage more users, but I'm skeptical it will have a major impact. > > +1 -- Mikhail

Re: [Twisted-Python] Twisted on PyPI

2013-05-26 Thread Mikhail Terekhov
erent rename than Twisted-Web. > > Looking at the project pages on pypi, those don't appear to be > installable anyway. I think that it might make sense to just remove > them, at this point. > +1 -- Mikhail Terekhov ___ Twisted-Pyt

Re: [Twisted-Python] logging

2013-06-18 Thread Mikhail Terekhov
t more detailed design etc. > > Do all the systems you mentioned have the same set of log levels, or will > there be some need to harmonize them? > IMHO the level of consensus in the set of log levels is not all that bad. The ones used in Python logging together with abilit

Re: [Twisted-Python] Setting socket options before connect

2013-07-19 Thread Mikhail Terekhov
itation that it will only accept an *already* connected socket. > There isn't something that will accept a socket and then do the connection > part for you. Sorry it is not exactly about the subject, but what is the current API that accepts already connected socket? Some time ago I was look

Re: [Twisted-Python] Twisted and Qt5

2013-08-11 Thread Mikhail Terekhov
o change the license on my own. I am using this as my base: > https://github.com/ghtdak/qtreactor > > > > May be you could create a pull request to this repository? -- Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Py

Re: [Twisted-Python] Twisted and Qt5

2013-08-12 Thread Mikhail Terekhov
gt; hear the results. > — > What about creating a branch? -- Mikhail Terekhov ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python