示例#1
0
 def dispatch_visit(self, node):
     if is_commentable(node):
         self.handle_visit_commentable(node)
     HTMLTranslator.dispatch_visit(self, node)
示例#2
0
文件: websupport.py 项目: th0/test2
 def dispatch_visit(self, node):
     if is_commentable(node) and hasattr(node, 'uid'):
         self.handle_visit_commentable(node)
     HTMLTranslator.dispatch_visit(self, node)