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 skip.montanaro
Recipients skip.montanaro, vinay.sajip
Date 2017-03-31.21:48:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490996894.83.0.00767163134546.issue29955@psf.upfronthosting.co.za>
In-reply-to
Content
One example demonstrating that the datetime module at least prefers a decimal point:

>>> import dateutil.parser
>>> t = '1993-04-21 08:03:00,123'
>>> dateutil.parser.parse(t)
datetime.datetime(1993, 4, 21, 8, 3, 0, 123000)
>>> dateutil.parser.parse(t).isoformat()
'1993-04-21T08:03:00.123000'

Looking at datetime.py, it appears the dot is hard-coded there. Maybe there would be value in the right hand (logging) and the left hand (datetime) doing things the same way?
History
Date User Action Args
2017-03-31 21:48:14skip.montanarosetrecipients: + skip.montanaro, vinay.sajip
2017-03-31 21:48:14skip.montanarosetmessageid: <1490996894.83.0.00767163134546.issue29955@psf.upfronthosting.co.za>
2017-03-31 21:48:14skip.montanarolinkissue29955 messages
2017-03-31 21:48:14skip.montanarocreate