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 rhettinger
Recipients belopolsky, pitrou, rhettinger
Date 2008-05-30.18:34:13
SpamBayes Score 0.2369493
Marked as misclassified No
Message-id <1212172454.7.0.273992347953.issue3008@psf.upfronthosting.co.za>
In-reply-to
Content
Better to just build-out bin() and be done with it.

FWIW, the action on ints and floats is similar to how str() handles 
numeric inputs:
  str(3)   --> '3'
  str(3.0) --> '3.0'
  bin(3)   --> '0b11'
  bin(3.0) --> '0b11.0'
History
Date User Action Args
2008-05-30 18:34:14rhettingersetspambayes_score: 0.236949 -> 0.2369493
recipients: + rhettinger, belopolsky, pitrou
2008-05-30 18:34:14rhettingersetspambayes_score: 0.236949 -> 0.236949
messageid: <1212172454.7.0.273992347953.issue3008@psf.upfronthosting.co.za>
2008-05-30 18:34:13rhettingerlinkissue3008 messages
2008-05-30 18:34:13rhettingercreate