Re: [Twisted-Python] xmlrpc - Possable failure to understand async concept

2009-04-23 Thread Nathan
lity except via > reactor.callFromThread()) The above email makes a great FAQ item, IMO. I know there's already docs covering this, but this issue comes up s many times (it took me a month to wrap my head around it initially) that it wouldn't hurt to hit the issue from many directions in many styles. ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

[Twisted-Python] Installing twisted on Snow Leopard with custom 32-bit Python from python.org

2009-09-03 Thread Nathan
Python installation. How can I get twisted installed where the Python installation that I got from python.org can use it? ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Installing twisted on Snow Leopard with custom 32-bit Python from python.org

2009-09-04 Thread Nathan
On Fri, Sep 4, 2009 at 4:21 AM, Ronald Oussoren wrote: > > On Friday, 04 September, 2009, at 08:22AM, "Nathan" > wrote: >>I've installed the 32-bit Python on Snow Leopard (for various reasons >>unrelated to twisted) and would like to get twisted working with

Re: [Twisted-Python] Reviewer who understands basic numeric algorithms wanted

2009-09-21 Thread Nathan
as in college. http://www.linkedin.com/pub/travis-oliphant/3/151/b1a ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

[Twisted-Python] Conferences / training?

2009-10-18 Thread Nathan
train or having us all go out to some conference (OSCON?) where some Twisted training goes on. I'm not in a rush -- I could wait up to a year if I had to, but I thought I ought to start putting feelers out. We're located in Utah, by the way. ~ Nathan ___

Re: [Twisted-Python] Regarding Twisted Matrix

2009-10-26 Thread Nathan
h is what people on this list tend to mention whenever threading comes up. Perhaps you need to switch to the "twisted way" to create your thread? http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.threads.html ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Twisted 9, do you want it

2009-11-05 Thread Nathan
branches/ on the trac source browser and couldn't a 9.0 NEWS file... ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

[Twisted-Python] deferred list behaviour

2009-12-15 Thread Nathan
items 0, 1, and 2 in each list correspond to each other? ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] deferred list behaviour

2009-12-15 Thread Nathan
results list in >>the call back has [(True, (something,)), (False, (something,)), (True, >>(something))] is it guaranteed that items 0, 1, and 2 in each list >>correspond to each other? > > Yep. Perfect, that's what I thought. ~ Nathan ___

Re: [Twisted-Python] PyCon 2010 sprint report

2010-03-02 Thread Nathan
started work on getting the first > 10.0 pre-release out the door. Awesome! ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

[Twisted-Python] trial newbie

2010-07-21 Thread Nathan
[OK] ------- Ran 1 tests in 0.023s PASSED (successes=1) Anyone know what's going on? I installed/upgraded version 10.1.0 by downloading the tarball and running "sudo python setup.py install"

Re: [Twisted-Python] trial newbie

2010-07-21 Thread Nathan
On Wed, Jul 21, 2010 at 6:29 PM, Lucas Taylor wrote: > On 7/21/10 7:30 PM, Nathan wrote: > >> Anyone know what's going on?  I installed/upgraded version 10.1.0 by >> downloading the tarball and running "sudo python setup.py install" > > http://twistedmatrix

[Twisted-Python] Get trial to use the docstring?

2010-08-05 Thread Nathan
Test00Prerequisites test_00banner ... [OK] test_01os ... [OK] ... ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Get trial to use the docstring?

2010-08-05 Thread Nathan
s and write a test for my patch. I found twisted/trial/test/test_reporter.py -- how do I run just the tests in that file? Does trial run on itself? ~ Nathan [1] Traceback (most recent call last): File "/Library/Python/2.6/site-packages/Twisted-10.1.0_r29921-py2.6-macosx-10.6-universal.egg/twis

[Twisted-Python] State of "insults"?

2010-10-13 Thread Nathan
it is designed to work with Twisted and seems to have a decent selection of widgets, so I wouldn't have to implement too many basic widgets. ~ Nathan ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] State of "insults"?

2010-10-14 Thread Nathan
selection of widgets, so I wouldn't >>have to implement too many basic widgets. > > I have a couple back-burner projects in which I'm using insults, and I > don't see changing to anything else.  However, if you'd like another > option to conside

[Twisted-Python] TDD using Trial

2009-08-30 Thread Nathan Lundquist
Hello everyone. I was wondering if any tutorials existed for setting up unit tests for use with trial. I've done a fair share of googling and only found tickets suggesting that more documentation be made available for trial. I've been attempting to make sense of the tests that ship with twisted

Re: [Twisted-Python] TDD using Trial

2009-09-01 Thread Nathan Lundquist
PM, Tim Allen wrote: > >> On Sun, Aug 30, 2009 at 01:40:34PM -0500, Nathan Lundquist wrote: >>> I was wondering if any tutorials existed for setting up unit tests >>> for >>> use with trial. I've done a fair share of googling and only found >>>

[Twisted-Python] getpeername from verify callback

2012-10-18 Thread Nathan Mower
ocket BIOs? Thanks, Nathan -- from OpenSSL import SSL from twisted.internet import reactor, ssl from twisted.internet.protocol import ClientFactory from twisted.protocols.basic import LineReceiver class VerifyContextFactory(ssl.ClientContextFactory):

Re: [Twisted-Python] getpeername from verify callback

2012-10-19 Thread Nathan Mower
On Oct 19, 2012, at 12:28 AM, Glyph wrote: > On Oct 18, 2012, at 9:41 PM, Nathan Mower wrote: > >> The following sample code worked until Twisted began to prefer memory BIOs >> over socket BIOs. Now it produces this error... >> >> exceptions.AttributeE

Re: [Twisted-Python] getpeername from verify callback

2012-10-19 Thread Nathan Mower
Thank you, Glyph. On Oct 19, 2012, at 1:14 AM, Glyph wrote: > > On Oct 18, 2012, at 11:56 PM, Adi Roiban wrote: > >> On 19 October 2012 09:28, Glyph wrote: >>> On Oct 18, 2012, at 9:41 PM, Nathan Mower >>> wrote: >>> >>>> The foll