This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients endolith, eric.smith, mark.dickinson
Date 2012-05-01.11:09:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335870546.24.0.445419739616.issue14694@psf.upfronthosting.co.za>
In-reply-to
Content
I agree with Mark.

This can also be done slightly more efficiently with plain format():

>>> format(324, "016b")
'0000000101000100'
>>> format(324, "016o")
'0000000000000504'
>>> format(324, "016x")
'0000000000000144'

And with either format() or str.format(), you can add the appropriate prefix:
>>> format(324, "#016b")
'0b00000101000100'
>>> format(324, "#016o")
'0o00000000000504'
>>> format(324, "#016x")
'0x00000000000144'

I don't see ever adding all of the possible options to bin(), etc.
History
Date User Action Args
2012-05-01 11:09:06eric.smithsetrecipients: + eric.smith, mark.dickinson, endolith
2012-05-01 11:09:06eric.smithsetmessageid: <1335870546.24.0.445419739616.issue14694@psf.upfronthosting.co.za>
2012-05-01 11:09:05eric.smithlinkissue14694 messages
2012-05-01 11:09:05eric.smithcreate