src/pyams_utils/interfaces/inherit.py
branchdev-tf
changeset 427 63284c98cdc1
parent 292 b338586588ad
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.inherit module
    14 
    14 
    15 # import standard library
    15 This module defines interfaces which are used by the :py:mod:`inherit <pyams_utils.inherit>`
       
    16 module
       
    17 """
    16 
    18 
    17 # import interfaces
       
    18 from pyramid.interfaces import ILocation
    19 from pyramid.interfaces import ILocation
    19 
    20 
    20 # import packages
       
    21 from zope.interface import Attribute
    21 from zope.interface import Attribute
    22 from zope.schema import Bool
    22 from zope.schema import Bool
       
    23 
       
    24 __docformat__ = 'restructuredtext'
    23 
    25 
    24 from pyams_utils import _
    26 from pyams_utils import _
    25 
    27 
    26 
    28 
    27 class IInheritInfo(ILocation):
    29 class IInheritInfo(ILocation):