Message8827

Author jeff.allen
Recipients Arfrever, fwierzbicki, jeff.allen, santa4nt, seletz, zyasoft
Date 2014-06-27.13:03:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403874213.75.0.267570604926.issue2028@psf.upfronthosting.co.za>
In-reply-to
Content
I'm taking my usual approach of inspecting and commenting what we've got, ahead of any change. I notice we are also divergent in our handling of field numbering. CPython:
>>> list("hello {!r:#12x} and {!s:8.3f} world!"._formatter_parser())
[('hello ', '', '#12x', 'r'), (' and ', '', '8.3f', 's'), (' world!', None, None, None)]
>>>

Jython:
>>> list("hello {!r:#12x} and {!s:8.3f} world!"._formatter_parser())
[('hello ', '0', '#12x', 'r'), (' and ', '1', '8.3f', 's'), (' world!', None, None, None)]
>>>

Not the cause of this bug, I know.
History
Date User Action Args
2014-06-27 13:03:33jeff.allensetmessageid: <1403874213.75.0.267570604926.issue2028@psf.upfronthosting.co.za>
2014-06-27 13:03:33jeff.allensetrecipients: + jeff.allen, fwierzbicki, zyasoft, Arfrever, santa4nt, seletz
2014-06-27 13:03:33jeff.allenlinkissue2028 messages
2014-06-27 13:03:33jeff.allencreate