Message8072

Author dcoles
Recipients dcoles
Date 2013-07-23.17:51:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374601880.6.0.81783986702.issue2071@psf.upfronthosting.co.za>
In-reply-to
Content
Steps to reproduce:

Jython 2.7b1+ (, May 9 2013, 17:33:05) 
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.7.0_25
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> d = datetime.datetime.now()
>>> d.strftime("%H:%M:%S.%f")
'17:47:35.%f'


Expected results:

Python 2.7.5 (default, Jul 12 2013, 16:58:06) 
[GCC 4.8.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> d = datetime.datetime.now()
>>> d.strftime("%H:%M:%S.%f")
'17:48:32.770720'


Similar to issue1689, except that "%f" is part of datetime library in Python 2.7.
History
Date User Action Args
2013-07-23 17:51:20dcolessetrecipients: + dcoles
2013-07-23 17:51:20dcolessetmessageid: <1374601880.6.0.81783986702.issue2071@psf.upfronthosting.co.za>
2013-07-23 17:51:20dcoleslinkissue2071 messages
2013-07-23 17:51:20dcolescreate