
27 Apr
2005
27 Apr
'05
12:36 a.m.
On Mon, 25 Apr 2005 17:21:54 -0400 Dave Gray dgray@omniti.com wrote:
I'm trying to get a simple webserver working using twisted. It works, to some extent, serves pages and all, but it blocks until the reactor.callLater(...) is done... what am I doing wrong?
Dave
# CODE
...snip...
d = defer.Deferred() d.addCallback(requestDebug) d.callback(request)
...snip...
Note that this code is more or less equivalent to requestDebug(request)