src/pyams_utils/interfaces/timezone.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.timezone module
       
    14 
       
    15 This module provides timezone utility interface and schema field
       
    16 """
       
    17 
       
    18 from zope.interface import Interface, implementer
       
    19 from zope.schema import Choice
       
    20 from zope.schema.interfaces import IChoice
    14 
    21 
    15 
    22 
    16 # import standard library
    23 __docformat__ = 'restructuredtext'
    17 
       
    18 # import interfaces
       
    19 from zope.schema.interfaces import IChoice
       
    20 
       
    21 # import packages
       
    22 from zope.interface import implementer, Interface
       
    23 from zope.schema import Choice
       
    24 
    24 
    25 from pyams_utils import _
    25 from pyams_utils import _
    26 
    26 
    27 
    27 
    28 class ITimezone(IChoice):
    28 class ITimezone(IChoice):