[issue3083] Add alternate (#) formatting for bin, oct, hex output for str.format()

2008-07-15 Thread Eric Smith
Eric Smith <[EMAIL PROTECTED]> added the comment: Implemented in trunk in r64958 and r64984; in py3k in r64960 and r64985. -- resolution: -> accepted status: open -> closed type: -> feature request ___ Python tracker <[EMAIL PROTECTED]>

[issue3083] Add alternate (#) formatting for bin, oct, hex output for str.format()

2008-06-11 Thread Eric Smith
New submission from Eric Smith <[EMAIL PROTECTED]>: Per Guido in http://mail.python.org/pipermail/python-3000/2008-May/013912.html, add this to the PEP 3101 (Advanced String Formatting) implementation. This will add the prefixes 0b, 0o, and 0x. -- assignee: eric.smith components: Interp