Exemplo n.º 1
0
 def createProcessingInstruction(self, target, data):
     return ProcessingInstruction(self, target, BeautifulSoup.ProcessingInstruction(data))
Exemplo n.º 2
0
 def createProcessingInstruction(self, target, data):
     from .ProcessingInstruction import ProcessingInstruction
     return ProcessingInstruction(self, target,
                                  bs4.ProcessingInstruction(data))