This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wshaari
Recipients wshaari
Date 2012-08-06.07:41:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344238877.43.0.388724812742.issue15563@psf.upfronthosting.co.za>
In-reply-to
Content
In the code below the time stamp 1341183050 should be 01 July 2012.  however datetime is converting it back to 7 July 2012, the reverse too is wrong, is that just the way i am using the code?

[g_geadm@plcig2 ~]$ ipython
Python 2.6.5 (r265:79063, Jul 14 2010, 11:36:05)
Type "copyright", "credits" or "license" for more information.


In [2]: import datetime
In [3]: import time
In [4]: datetime.datetime.fromtimestamp(1341183050)
Out[4]: datetime.datetime(2012, 7, 2, 1, 50, 50)
time.mktime(dt.timetuple())

In [5]: dt=datetime.datetime(2012, 7, 2, 1, 50, 50)
In [6]: time.mktime(dt.timetuple())
Out[6]: 1341183050.0

In [7]: dt=datetime.datetime(2012, 7, 1, 22, 50, 50)
In [8]: time.mktime(dt.timetuple())
Out[8]: 1341172250.0

In [9]: datetime.datetime.fromtimestamp(1341172250.0)
Out[9]: datetime.datetime(2012, 7, 1, 22, 50, 50)
History
Date User Action Args
2012-08-06 07:41:17wshaarisetrecipients: + wshaari
2012-08-06 07:41:17wshaarisetmessageid: <1344238877.43.0.388724812742.issue15563@psf.upfronthosting.co.za>
2012-08-06 07:41:16wshaarilinkissue15563 messages
2012-08-06 07:41:16wshaaricreate