Message8072
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. |
|
Date |
User |
Action |
Args |
2013-07-23 17:51:20 | dcoles | set | recipients:
+ dcoles |
2013-07-23 17:51:20 | dcoles | set | messageid: <1374601880.6.0.81783986702.issue2071@psf.upfronthosting.co.za> |
2013-07-23 17:51:20 | dcoles | link | issue2071 messages |
2013-07-23 17:51:20 | dcoles | create | |
|