Message8082

Author dcoles
Recipients dcoles
Date 2013-08-21.02:42:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377052964.39.0.154064649804.issue2075@psf.upfronthosting.co.za>
In-reply-to
Content
Output:

$ jython2.7 -c 'print("{:#018x}".format(14))'
0000000000000000xe


Expected behavior:

$ python -c 'print("{:#018x}".format(14))'
0x000000000000000e


Notice that this does not appear to be an issue with '%' formatting strings:

$ jython2.7 -c 'print("%#018x"%14)'
0x000000000000000e
History
Date User Action Args
2013-08-21 02:42:44dcolessetrecipients: + dcoles
2013-08-21 02:42:44dcolessetmessageid: <1377052964.39.0.154064649804.issue2075@psf.upfronthosting.co.za>
2013-08-21 02:42:44dcoleslinkissue2075 messages
2013-08-21 02:42:43dcolescreate