On Mon, Jan 03, 2005 at 03:25:26PM +0300, Oleg Broytmann wrote: > @published > def myfunc(request): > process(request) Even better - call it "with_request" instead of "published", and combine it with a real "published" decorator that had been being discussed a week ago: @published @with_request def myfunc(request): ... Oleg. -- Oleg Broytmann http://phd.pp.ru/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.