本文整理汇总了Python中_FFM.FFM._Export_Module方法的典型用法代码示例。如果您正苦于以下问题:Python FFM._Export_Module方法的具体用法?Python FFM._Export_Module怎么用?Python FFM._Export_Module使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类_FFM.FFM
的用法示例。
在下文中一共展示了FFM._Export_Module方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Address_not_in_Network
# 需要导入模块: from _FFM import FFM [as 别名]
# 或者: from _FFM.FFM import _Export_Module [as 别名]
self.requester = requester
# end def __init__
# end class Address_Already_Used
class Address_not_in_Network (Error, ValueError) :
"""Address is not in Network"""
def __init__ (self, address, net_address, msg) :
self.__super.__init__ (msg)
self.address = address
self.net_address = net_address
# end def __init__
# end class Address_not_in_Network
class No_Free_Address_Range (Error, ValueError) :
"""There is no free subrange available"""
def __init__ (self, net_address, mask_len, message) :
self.__super.__init__ (message)
self.net_address = net_address
self.mask_len = mask_len
# end def __init__
# end class No_Free_Address_Range
if __name__ != "__main__" :
FFM._Export_Module ()
### __END__ FFM.Error