On May 3, 2010, at 12:25 PM, Jonathan Lange wrote:
>>> I am still keen to do this.
>>>
>>> Does anyone have any thoughts, objections or recommendations?
>>
>> This sounds great.
>
I also think this sounds great.
Thanks for stepping forward again, Jonathan.
I would like to volunteer to be as
Hey,
Can anyone tell me which sprint days (if any) Twisted is organizing
something on? If nothing is planned yet, does anyone have any preferences?
Thanks,
Laurens
___
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.
So, there's a todo item in IRCClient, to handle lines that are longer
than the RFC maximum length (510 characters including the sender,
recipient and command, plus `\n` and `\r`).
I had thought to have a method sitting between the
IRCClient.sendLine() and the method which actually calls out to the
If you want an ORM in Twisted look for STORM twisted integration. Overall,
it works (I tried). Some quirks are there, e.g. without twisted you would do
something like resultset[10:20].sort(Sort.ASC) but with twsited you have to
do (assuming inlineCallbacks)
res= yield resultset[10:20]
res = yield
On Fri, May 7, 2010 at 12:53 PM, Konrads Smelkovs
wrote:
> If you want an ORM in Twisted look for STORM twisted integration. Overall,
> it works (I tried). Some quirks are there, e.g. without twisted you would do
> something like resultset[10:20].sort(Sort.ASC) but with twsited you have to
> do (a
> (yield resultset[10:20]).sort(Sort.ASC)
>
> assuming a new enough version of Python.
I wonder if it a good idea to subclass Deferred and define __call__()
for it, making it attach callbacks to itself.
Theoretically should work in earlier versions and make the syntax look
more transparent.
_
On 01:34 pm, mithra...@mithrandi.net wrote:
On Fri, May 7, 2010 at 12:53 PM, Konrads Smelkovs
wrote:
If you want an ORM in Twisted look for STORM twisted integration.
Overall,
it works (I tried). Some quirks are there, e.g. without twisted you
would do
something like resultset[10:20].sort(Sort
On 03:37 pm, drwxrwxr.x+twistedm...@gmail.com wrote:
>>(yield resultset[10:20]).sort(Sort.ASC)
>>
>>assuming a new enough version of Python.
>
>I wonder if it a good idea to subclass Deferred and define __call__()
>for it, making it attach callbacks to itself.
>Theoretically should work in earlier