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 Alexander Bolshakov
Recipients Alexander Bolshakov
Date 2020-03-26.14:14:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585232088.22.0.568073689149.issue40076@roundup.psfhosted.org>
In-reply-to
Content
isoformat function does not conform to the ISO 8601 and drops microseconds part if its value is 000000.

The issue can be reproduced using the following code snippet:

for i in range(1,10000000):
     timestamp=datetime.datetime.utcnow().isoformat()
     if len(timestamp)!=26:
         print(timestamp)
History
Date User Action Args
2020-03-26 14:14:48Alexander Bolshakovsetrecipients: + Alexander Bolshakov
2020-03-26 14:14:48Alexander Bolshakovsetmessageid: <1585232088.22.0.568073689149.issue40076@roundup.psfhosted.org>
2020-03-26 14:14:48Alexander Bolshakovlinkissue40076 messages
2020-03-26 14:14:47Alexander Bolshakovcreate