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 baloan
Recipients baloan, christian.heimes, wangchun, zseil
Date 2008-11-17.20:57:08
SpamBayes Score 0.02556452
Marked as misclassified No
Message-id <1226955429.17.0.877896538493.issue1982@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, microsecond support is fine. Elaborating on my initial comment.

The following should assert:

a_datetime = datetime.now()
a_datetime.replace(microsecond = 1)

iso_str = adatetime.isoformat()
b_datetime = datetime.strptime(iso_str, "%Y%m%dT%H%M%S.%f")

assert(a_datetime = b_datetime)

The datetime shall be an invariant. 

Fixed from my point of view, Andreas
History
Date User Action Args
2008-11-17 20:57:09baloansetrecipients: + baloan, zseil, christian.heimes, wangchun
2008-11-17 20:57:09baloansetmessageid: <1226955429.17.0.877896538493.issue1982@psf.upfronthosting.co.za>
2008-11-17 20:57:08baloanlinkissue1982 messages
2008-11-17 20:57:08baloancreate