Python pyasn1.type.constraint 模块,ValueRangeConstraint() 实例源码
我们从Python开源项目中,提取了以下6个代码示例,用于说明如何使用pyasn1.type.constraint.ValueRangeConstraint()。
def _vno_component(tag_value, name="pvno"):
return _sequence_component(
name, tag_value, univ.Integer(),
subtypeSpec=constraint.ValueRangeConstraint(5, 5))
def withRange(cls, minimum, maximum):
"""Creates a subclass with value range constraint.
"""
class X(cls):
subtypeSpec = cls.subtypeSpec + constraint.ValueRangeConstraint(minimum, maximum)
X.__name__ = cls.__name__
return X
def withRange(cls, maximum):
"""Creates a subclass with value range constraint.
"""
class X(cls):
subtypeSpec = cls.subtypeSpec + constraint.ValueRangeConstraint(minimum, maximum)
X.__name__ = cls.__name__
return X