def handleArticleCommentThreaded(commentId): w.session() a.session() comment = handleArticleComment(commentId) w.session.remove() a.session.remove() return comment
def handleUserThreaded(userId): w.session() a.session() user = handleUser(userId) w.session.remove() a.session.remove() return user
def handleArticleThreaded(articleId): w.session() a.session() article = handleArticle(articleId) w.session.remove() a.session.remove() return article
def handleForumPostThreaded(postId): w.session() a.session() wpost = handleForumPost(postId) w.session.remove() a.session.remove() return wpost
def handleForumThreadsThreaded(threadId): w.session() a.session() wthread = handleForumThread(threadId) w.session.remove() a.session.remove() return wthread