embedded/mx/DateTime/__init__.py
author Laure Bourgois <Laure.Bourgois@logilab.fr>
Wed, 18 Feb 2009 16:59:29 +0100
changeset 815 ec7460e13eee
parent 0 b97547f5f1fa
permissions -rw-r--r--
OWLABOX view doesn't layout anymore tbox. Indeed, it is better to separate abox from tbox.

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

    Copyright (c) 1998-2000, Marc-Andre Lemburg; mailto:mal@lemburg.com
    Copyright (c) 2000-2007, eGenix.com Software GmbH; mailto:info@egenix.com
    See the documentation for further information on copyrights,
    or contact the author. All Rights Reserved.
"""
from DateTime import *
from DateTime import __version__

## mock strptime implementation
from datetime import datetime

def strptime(datestr, formatstr, datetime=datetime):
    """mocked strptime implementation"""
    date = datetime.strptime(datestr, formatstr)
    return DateTime(date.year, date.month, date.day,
                    date.hour, date.minute, date.second)

# don't expose datetime directly
del datetime