""" DateTime - Date and time handling routines and types

    (c) 1998, Copyright Marc-Andre Lemburg; All Rights Reserved.
    See the documentation for further information on copyrights,
    or contact the author (mal@lemburg.com).
"""
__package_info__ = """
BEGIN PYTHON-PACKAGE-INFO 1.0
Title:			mxDateTime - Date and time handling routines and types
Current-Version:	1.0.1
Home-Page:		http://starship.skyport.net/~lemburg/mxDateTime.html
Primary-Site:		http://starship.skyport.net/~lemburg/mxDateTime-1.0.1.zip

This package contains two new types for Python, DateTime and
DateTimeDelta. These can be used to handle and store date/time
values and provide some basic arithmetic. For full documentation
see the home page.
END PYTHON-PACKAGE-INFO
"""
from DateTime import *
from DateTime import __version__

# Lazy import submodules
import LazyModule

ISO = LazyModule.LazyModule('ISO',locals(),globals())
ARPA = LazyModule.LazyModule('ARPA',locals(),globals())
ODMG = LazyModule.LazyModule('ODMG',locals(),globals())
Locale = LazyModule.LazyModule('Locale',locals(),globals())
Feasts = LazyModule.LazyModule('Feasts',locals(),globals())

del LazyModule
