Exemple #1
0
 def createProcessingInstruction(self, target, data):
     return ProcessingInstruction(self, target, BeautifulSoup.ProcessingInstruction(data))
Exemple #2
0
 def createProcessingInstruction(self, target, data):
     from .ProcessingInstruction import ProcessingInstruction
     return ProcessingInstruction(self, target,
                                  bs4.ProcessingInstruction(data))