Re: [Twisted-Python] Proposal -- Code of Conduct

2015-08-12 Thread David Reid
What needs to happen to move this proposal forward? -David On Sun, Jul 19, 2015 at 10:28 PM, Kevin Turner wrote: > I was chatting with some people at the Community Leadership Summit today > about the Recurse Center's social rules > , which reminde

Re: [Twisted-Python] Proposal -- Code of Conduct

2015-06-23 Thread David Reid
I definitely meant "I don't think that should block adoption". -David On Tue, Jun 23, 2015 at 7:12 PM, Glyph wrote: > > On Jun 23, 2015, at 1:49 PM, David Reid wrote: > > So while it'd be nice for the PSF CoC to be updated such that it was > enforceable I th

Re: [Twisted-Python] Proposal -- Code of Conduct

2015-06-23 Thread David Reid
Jun 23, 2015 at 1:00 PM, Jason J. W. Williams < jasonjwwilli...@gmail.com> wrote: > Apologies...editing while on a call. > > On Tue, Jun 23, 2015 at 12:51 PM, Steve Waterbury > wrote: > > On 06/23/2015 03:31 PM, Jason J. W. Williams wrote: > >> > >> On Tue

Re: [Twisted-Python] Proposal -- Code of Conduct

2015-06-23 Thread David Reid
I'm going to come out strongly against using the PSF CoC. It is woefully inadequate, it includes no mechanisms for reporting, and as any PSF member who has been on certain mailing lists knows it is actually completely unenforceable. -David On Tue, Jun 23, 2015 at 11:47 AM, Stephen Thorne wrote:

[Twisted-Python] Looking for anyone interested in maintaining treq.

2015-02-05 Thread David Reid
I'm starting a new job soon which doesn't involve Python. I also have a newborn at home so my free time is pretty much spoken for. If anyone is interested in maintaining treq I'm now accepting applications. If anyone has an alternative to plug this would also be an OK time for that. -dreid _

Re: [Twisted-Python] Twisted 14.0.0pre5 Announcement

2014-04-28 Thread David Reid
Sorry for the delay, I've tested that treq works with pre5 in the following scenarios. Python 2.7, no pyopenssl Python 2.7, pyopenssl==0.14 PyPy 2.2.1, no pyopenssl PyPy 2.2.1, pyopenssl==0.14 This is in addition to the testing that treq regularly receives on Twisted Trunk, which has a build cur

Re: [Twisted-Python] is twisted compatible with pickle?

2013-03-28 Thread David Reid
dataReceived gets called with any data that is available on the socket. That might not be all data you sent on the other side. To ensure complete "messages" are delivered your application has to specify some framing, such as Netstrings. See: http://twistedmatrix.com/documents/current/api/twisted

Re: [Twisted-Python] Twisted Names strings

2013-01-17 Thread David Reid
Honestly, if you have comprehensive automated testing and plan to upgrade Twisted regularly or to try and support the latest release it is worth the effort to setup testing against Twisted trunk. https://github.com/dreid/treq/blob/master/.travis.yml shows how I do this with travis-ci. -David On

Re: [Twisted-Python] git repo maintenance

2012-10-22 Thread David Reid
On Mon, Oct 22, 2012 at 10:55 AM, Duncan McGreggor < oubiw...@twistedmatrix.com> wrote: > On Sat, Oct 20, 2012 at 4:24 PM, Duncan McGreggor > wrote: > > Hey all, > > > > At the sprint today, Glyph mentioned that the github repo hasn't been > > updated recently and needs someone to maintain it reg

Re: [Twisted-Python] Adding mock as a test suite dependency

2012-10-22 Thread David Reid
On Mon, Oct 22, 2012 at 9:57 AM, Laurens Van Houtven <_...@lvh.cc> wrote: > So, mock does have an autospec mode, which is not the default, but does > result in eg methods undefined on the parent raising AttributeError. > It does, but it won't for instance know that for: mock_agent = mock.Mock

Re: [Twisted-Python] sending large files from web2 http server

2009-03-06 Thread David Reid
On Thu, Mar 5, 2009 at 7:45 AM, Jean-Paul Calderone wrote: > On Thu, 05 Mar 2009 16:20:27 +0100, Markus Wanner > wrote: > >> Hi, >> >> I'm trying to stream longish data via web2, but experience sudden stalls >> in data transfer, followed by a connection abort after a certain >> timeout. I can't c