On 16 May 2002, Jonathan Corbet said: > A quick grep turns up one get_session_manager() call in my stuff. I > probably wouldn't grumble for more than an hour or so if I had to replace > it with a call into publish.py instead. Especially if it helps get more > documentation written :) There will still be a get_session_manager() function -- you'll just have to import it from a different place, most likely from quixote import get_session_manager just like the other global convenience get_foo() functions. You don't have to get the global session manager all that often, but when you do it's nice for it to be a single function call. Greg