本文整理汇总了Python中netzob.Common.Models.Types.AbstractType.AbstractType.supportedUnitSizes方法的典型用法代码示例。如果您正苦于以下问题:Python AbstractType.supportedUnitSizes方法的具体用法?Python AbstractType.supportedUnitSizes怎么用?Python AbstractType.supportedUnitSizes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类netzob.Common.Models.Types.AbstractType.AbstractType
的用法示例。
在下文中一共展示了AbstractType.supportedUnitSizes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: unitSize
# 需要导入模块: from netzob.Common.Models.Types.AbstractType import AbstractType [as 别名]
# 或者: from netzob.Common.Models.Types.AbstractType.AbstractType import supportedUnitSizes [as 别名]
def unitSize(self, unitSize):
if unitSize is None:
raise TypeError("Unitsize cannot be None.")
if unitSize not in AbstractType.supportedUnitSizes():
raise ValueError("This unitSize is not supported, please refer to the list of supported type in AbstractType.supportedUnitSizes()")
self.__unitSize = unitSize
示例2: unitSize
# 需要导入模块: from netzob.Common.Models.Types.AbstractType import AbstractType [as 别名]
# 或者: from netzob.Common.Models.Types.AbstractType.AbstractType import supportedUnitSizes [as 别名]
def unitSize(self, unitSize):
if unitSize is None:
raise TypeError("Unitsize cannot be None")
if unitSize not in AbstractType.supportedUnitSizes():
raise TypeError("Specified unitsize is not supported, refers to AbstractType.supportedUnitSizes() for the list.")
self.__unitSize = unitSize