def create_block(self, parent, comment):
     if self.__allow_block or parent == None:
         return C._Block(parent, comment)
     else:
         return None
 def create_block(self, parent, comment):
     return C._Block(parent, comment)