src/pyams_utils/interfaces/size.py
branchdev-tf
changeset 427 63284c98cdc1
parent 1 3f89629b9e54
equal deleted inserted replaced
426:2022e4da3ad9 427:63284c98cdc1
     8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
    10 # FOR A PARTICULAR PURPOSE.
    10 # FOR A PARTICULAR PURPOSE.
    11 #
    11 #
    12 
    12 
    13 __docformat__ = 'restructuredtext'
    13 """PyAMS_utils.interfaces.size module
    14 
    14 
       
    15 This module provides a simple interface for objects handling length attribute
       
    16 """
    15 
    17 
    16 # import standard library
       
    17 
       
    18 # import interfaces
       
    19 
       
    20 # import packages
       
    21 from zope.interface import Interface
    18 from zope.interface import Interface
    22 from zope.schema import Int
    19 from zope.schema import Int
       
    20 
       
    21 __docformat__ = 'restructuredtext'
    23 
    22 
    24 
    23 
    25 class ILength(Interface):
    24 class ILength(Interface):
    26     """Length interface"""
    25     """Length interface"""
    27 
    26