Metadata-Version: 1.1
Name: backports.datetime_timestamp
Version: 1.0.1
Summary: backports.datetime_timestamp
Home-page: https://bitbucket.org/jaraco/backports.datetime_timestamp
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Description: backports.datetime_timestamp
        ============================
        
        Backport of the `datetime.timestamp()
        <http://docs.python.org/3.3/library/datetime.html#datetime.datetime.timestamp>`_ method added in Python 3.3.
        
            from backports.datetime_timestamp import timestamp
            import datetime
        
            dt = datetime.datetime.utcnow()
            # instead of dt.timestamp(), use
            timestamp(dt)
        
        
        1.0.1
        -----
        
        Fixed TypeError on import.
        
        1.0
        ---
        
        Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
