本文整理汇总了Python中multiboot.patchinfo.PatchInfo.has_boot_image方法的典型用法代码示例。如果您正苦于以下问题:Python PatchInfo.has_boot_image方法的具体用法?Python PatchInfo.has_boot_image怎么用?Python PatchInfo.has_boot_image使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类multiboot.patchinfo.PatchInfo
的用法示例。
在下文中一共展示了PatchInfo.has_boot_image方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: PatchInfo
# 需要导入模块: from multiboot.patchinfo import PatchInfo [as 别名]
# 或者: from multiboot.patchinfo.PatchInfo import has_boot_image [as 别名]
from multiboot.autopatchers.standard import StandardPatcher
from multiboot.patchinfo import PatchInfo
patchinfo = PatchInfo()
patchinfo.matches = r"^gapps-kk-[0-9]{8}\.zip$"
patchinfo.name = 'Gummy Google Apps'
patchinfo.autopatchers = [StandardPatcher]
patchinfo.has_boot_image = False