コード例 #1
0
ファイル: Document.py プロジェクト: Prithvirajbilla/thug
 def createProcessingInstruction(self, target, data):
     return ProcessingInstruction(self, target, BeautifulSoup.ProcessingInstruction(data))
コード例 #2
0
 def createProcessingInstruction(self, target, data):
     from .ProcessingInstruction import ProcessingInstruction
     return ProcessingInstruction(self, target,
                                  bs4.ProcessingInstruction(data))