![](https://secure.gravatar.com/avatar/91ea940d7d8cae2a7da321bf6a13f14c.jpg?s=120&d=mm&r=g)
April 26, 2005
5:36 p.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)