[Twisted-Python] Problems with trac account registration (was Re: Extending twisted.words.protocols.irc)

2012-01-25 Thread exarkun
On 25 Jan, 11:34 pm, m...@conundrum.com wrote: > >On 2012/01/25, at 14:44, Kevin Horn wrote: >>Probably the best way to submit code is to open a ticket on the >>tracker, with an attached patch as a unified diff against the current >>twisted trunk. > >Can whoever is responsible for the tracker sof

Re: [Twisted-Python] Extending twisted.words.protocols.irc

2012-01-25 Thread Matthew Pounsett
On 2012/01/25, at 14:44, Kevin Horn wrote: > Probably the best way to submit code is to open a ticket on the tracker, with > an attached patch as a unified diff against the current twisted trunk. Can whoever is responsible for the tracker software have a look at its mail queue? I'm not receiv

Re: [Twisted-Python] Extending twisted.words.protocols.irc

2012-01-25 Thread exarkun
On 08:21 pm, m...@conundrum.com wrote: > >On 2012/01/25, at 14:44, Kevin Horn wrote: >>Probably the best way to submit code is to open a ticket on the >>tracker, with an attached patch as a unified diff against the current >>twisted trunk. >>[...] >>See also: http://twistedmatrix.com/trac/wiki/Co

Re: [Twisted-Python] Extending twisted.words.protocols.irc

2012-01-25 Thread Matthew Pounsett
On 2012/01/25, at 14:44, Kevin Horn wrote: > Probably the best way to submit code is to open a ticket on the tracker, with > an attached patch as a unified diff against the current twisted trunk. > [...] > See also: http://twistedmatrix.com/trac/wiki/ContributingToTwistedLabs Excellent. Thanks

Re: [Twisted-Python] http.Request and JSON

2012-01-25 Thread Glyph Lefkowitz
On Jan 25, 2012, at 5:28 AM, Gerrat wrote: > Tristan Seligmann mithrandi.net> writes: > >> >> On Tue, Jun 30, 2009 at 10:44 AM, Reza Lotun gmail.com> wrote: >>> To be safer, I do a request.content.getvalue() since content is a >>> cStringIO object and you can never be sure if somewhere along t

Re: [Twisted-Python] Extending twisted.words.protocols.irc

2012-01-25 Thread Kevin Horn
On Wed, Jan 25, 2012 at 1:06 PM, Matthew Pounsett wrote: > > I've written some methods for twisted.words.protocols.irc.IRCClient that > seem like they (or something like them) should be part of the main > distribution. What's the preferred way to pass those along for > consideration? Posting her

[Twisted-Python] Extending twisted.words.protocols.irc

2012-01-25 Thread Matthew Pounsett
I've written some methods for twisted.words.protocols.irc.IRCClient that seem like they (or something like them) should be part of the main distribution. What's the preferred way to pass those along for consideration? Posting here? Open a ticket on the tracker? If the latter, should I send

Re: [Twisted-Python] Twisted Sprint at PyCon 2012

2012-01-25 Thread Laurens Van Houtven
I can do it :) On Jan 25, 2012 3:11 PM, wrote: > Hello all, > > The past few years have seen the Twisted sprint at PyCon grow to a very > impressive size. With expectations that this will be the largest PyCon > yet, I have no reason to expect that the trend will be reversed this > year. > > I ha

[Twisted-Python] Twisted Sprint at PyCon 2012

2012-01-25 Thread exarkun
Hello all, The past few years have seen the Twisted sprint at PyCon grow to a very impressive size. With expectations that this will be the largest PyCon yet, I have no reason to expect that the trend will be reversed this year. I have "run" the sprint for the past two years, though in practi

Re: [Twisted-Python] Multiple callbacks

2012-01-25 Thread Laurens Van Houtven
Note that that's just pythons late binding semantics, nothing twistedy going on here :) On Jan 25, 2012 2:24 PM, "Аркадий Левин" wrote: > Hi, you need add "grid" to lambda arguments, > > f = lambda _, grip=grip:self.gotDataBin(_, grid) > > On Wed, Jan 25, 2012 at 6:04 PM, Tech Aficionado1743 > w

Re: [Twisted-Python] http.Request and JSON

2012-01-25 Thread Gerrat
Tristan Seligmann mithrandi.net> writes: > > On Tue, Jun 30, 2009 at 10:44 AM, Reza Lotun gmail.com> wrote: > > To be safer, I do a request.content.getvalue() since content is a > > cStringIO object and you can never be sure if somewhere along the > > chain of processing someone hasn't done a .r

Re: [Twisted-Python] Multiple callbacks

2012-01-25 Thread Аркадий Левин
Hi, you need add "grid" to lambda arguments, f = lambda _, grip=grip:self.gotDataBin(_, grid) On Wed, Jan 25, 2012 at 6:04 PM, Tech Aficionado1743 wrote: > Hello, can anyone help ? > i can't understand why, in the piece of code below (S1), > the parameter (grid) passed to the callback is the sam