Re: [Twisted-Python] Questions about adding documentation

2009-08-01 Thread Glyph Lefkowitz
On Sat, Aug 1, 2009 at 11:30 PM, Steve Steiner (listsin) < list...@integrateddevcorp.com> wrote: > Where would we put an "inventory" project for it to be most useful? >> > > As JP mentioned earlier in this thread, some work has already taken place > here:

[Twisted-Python] Weekly Bug Summary

2009-08-01 Thread exarkun
Bug summary __ Summary for 2009-07-26 through 2009-08-02 Bugs opened: 22Bugs closed: 9 Total open bugs: 1144 (+13) |== Type Changes |== Priority Changes |== Component Changes |Defect: +8 |High:+0 |Conch:+1 |Enhancement: +5 |N

[Twisted-Python] ANNOUNCING Tahoe, the Lofty-Atmospheric Filesystem, v1.5

2009-08-01 Thread Zooko Wilcox-O'Hearn
Dear people of the twisted mailing list: This release announcement is relevant to this list because Tahoe-LAFS is built on Twisted's networking and concurrency framework. Also, we strive to emulate the UQDS. Regards, Zooko The Tahoe-LAFS team is pleased to announce the immediate availabili

Re: [Twisted-Python] Questions about adding documentation

2009-08-01 Thread Steve Steiner (listsin)
I get it, really. I do tend to use a lot of words to get things across. Sorry ;-). Duly noted ;-). Where would we put an "inventory" project for it to be most useful? As JP mentioned earlier in this thread, some work has already taken place here:

Re: [Twisted-Python] what's a workaround for Ticket #3472 (sendmail has no timeout)?

2009-08-01 Thread Glyph Lefkowitz
On Sat, Aug 1, 2009 at 2:54 PM, Dave Britton wrote: > What would be the best way for me to work around this? Fix the bug :). Then, I hope, contribute a patch... (see http://twistedmatrix.com/trac/wiki/TwistedDevelopment for that part). > Specifically, when I use twisted.mail.smtp sendmail()

Re: [Twisted-Python] AssertionError: '' for not in import cache

2009-08-01 Thread Konrads Smelkovs
Aand... i've solved it with help of idnar from #twisted: set PYTHONPATH="C:\Documents and Settings\Konrads\My Documents\nfscraper\src" on Windows is not the same as PYTHONPATH=C:\Documents and Settings\Konrads\My Documents\nfscraper\src. Note the doube quotes. Double quotes make sys.path look like

[Twisted-Python] what's a workaround for Ticket #3472 (sendmail has no timeout)?

2009-08-01 Thread Dave Britton
Trying to implement a custom mail service I have run into the problem that this ticket describes: Ticket #3472 (new defect ) Opened 10 months ago Last modified 10 months ago twisted.mail.smtp sendmail() should [have] parameters to be passed for the retry and timeout logic supported by SMTPClie

[Twisted-Python] AssertionError: '' for not in import cache

2009-08-01 Thread Konrads Smelkovs
Hello, I am running latest Twisted Python release 8.2.0 on Windows / Python 2.6. When running trial on my unittests, I get an AssertionError not in import cache: C:\Documents and Settings\Konrads\My Documents\nfscraper\src>tree /f Folder PATH listing Volume serial number is A899-B4C8 C:. └───nfs

Re: [Twisted-Python] getPage using ssl proxy

2009-08-01 Thread Konrads Smelkovs
I found answer to my own question: class NoVerifyClientContextFactory: """A context factory for SSL clients.""" isClient = 1 method = SSL.SSLv3_METHOD def getContext(self): def x(*args): return True ctx=SSL.Context(self.method) #print dir(ctx)