Can bin() be overloaded like oct() and hex() in Python 2.6? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T07:05:00Zhttp://stackoverflow.com/feeds/question/1002116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1002116/can-bin-be-overloaded-like-oct-and-hex-in-python-2-66Can bin() be overloaded like oct() and hex() in Python 2.6?Scott Griffiths2009-06-16T15:08:55Z2009-07-06T16:01:13Z
<p>In Python 2.6 (and earlier) the <code>hex()</code> and <code>oct()</code> built-in functions can be overloaded in a class by defining <code>__hex__</code> and <code>__oct__</code> special functions. However there is not a <code>__bin__</code> special function for overloading the behaviour of Python 2.6's new <code>bin()</code> built-in function.</p>
<p>I want to know if there is any way of flexibly overloading <code>bin()</code>, and if not I was wondering why the inconsistent interface?</p>
<p>I do know that the <code>__index__</code> special function can be used, but this isn't flexible as it can only return an integer. My particular use case is from the <a href="http://code.google.com/p/python-bitstring/" rel="nofollow">bitstring</a> module, where leading zero bits are considered significant:</p>
<pre><code>>>> a = BitString(length=12) # Twelve zero bits
>>> hex(a)
'0x000'
>>> oct(a)
'0o0000'
>>> bin(a)
'0b0' <------ I want it to output '0b000000000000'
</code></pre>
<p>I suspect that there's no way of achieving this, but I thought it wouldn't hurt to ask!</p>
http://stackoverflow.com/questions/1002116/can-bin-be-overloaded-like-oct-and-hex-in-python-2-6/1002214#10022141Answer by michaelmior for Can bin() be overloaded like oct() and hex() in Python 2.6?michaelmior2009-06-16T15:23:38Z2009-06-16T15:23:38Z<p>The bin function receives it's value from the object's <code>__index__</code> function. So for an object, you can define the value converted to binary, but you can't define the format of the string.</p>
http://stackoverflow.com/questions/1002116/can-bin-be-overloaded-like-oct-and-hex-in-python-2-6/1002694#10026940Answer by mikej for Can bin() be overloaded like oct() and hex() in Python 2.6?mikej2009-06-16T16:49:54Z2009-06-16T16:49:54Z<p>You could achieve the same behaviour as for hex and oct by overriding/replacing the built in bin() function with your own implementation that attempted to call <strong>bin</strong> on the object being passed and fell back to the standard bin() function if the object didn't provide <strong>bin</strong>. However, on the basis that explicit is better than implicit, coding your application to depend on a custom version of bin() is probably not a good idea so maybe just give the function a different name e.g.</p>
<pre><code>def mybin(n):
try:
return n.__bin__()
except AttributeError:
return bin(n)
</code></pre>
<p>As for why the inconsistency in the interface, I'm not sure. Maybe it's because bin() was added more recently so it's a slight oversight?</p>
http://stackoverflow.com/questions/1002116/can-bin-be-overloaded-like-oct-and-hex-in-python-2-6/1011888#10118883Answer by Glyph for Can bin() be overloaded like oct() and hex() in Python 2.6?Glyph2009-06-18T10:04:34Z2009-06-18T10:04:34Z<p>As you've already discovered, you can't override <code>bin()</code>, but it doesn't sound like you need to do that. You just want a 0-padded binary value. Unfortunately in python 2.5 and previous, you couldn't use "%b" to indicate binary, so you can't use the "%" string formatting operator to achieve the result you want.</p>
<p>Luckily python 2.6 does offer what you want, in the form of the new <a href="http://docs.python.org/library/string.html#string-formatting" rel="nofollow">str.format()</a> method. I believe that this particular bit of line-noise is what you're looking for:</p>
<pre><code>>>> '{0:010b}'.format(19)
'0000010011'
</code></pre>
<p>The syntax for this mini-language is under "<a href="http://docs.python.org/library/string.html#format-specification-mini-language" rel="nofollow">format specification mini-language</a>" in the docs. To save you some time, I'll explain the string that I'm using:</p>
<ol>
<li>parameter zero (i.e. <code>19</code>) should be formatted, using</li>
<li>a magic "<code>0</code>" to indicate that I want 0-padded, right-aligned number, with</li>
<li>10 digits of precision, in</li>
<li>binary format.</li>
</ol>
<p>You can use this syntax to achieve a variety of creative versions of alignment and padding.</p>
http://stackoverflow.com/questions/1002116/can-bin-be-overloaded-like-oct-and-hex-in-python-2-6/1087788#10877882Answer by Scott Griffiths for Can bin() be overloaded like oct() and hex() in Python 2.6?Scott Griffiths2009-07-06T16:01:13Z2009-07-06T16:01:13Z<p>I think the short answer is 'No, <code>bin()</code> can't be overloaded like <code>oct()</code> and <code>hex()</code>.'</p>
<p>As to why, the answer must lie with Python 3.0, which uses <code>__index__</code> to overload <code>hex()</code>, <code>oct()</code> and <code>bin()</code>, and has removed the <code>__oct__</code> and <code>__hex__</code> special functions altogether.</p>
<p>So the Python 2.6 <code>bin()</code> looks very much like it's really a Python 3.0 feature that has been back-ported without much consideration that it's doing things the new Python 3 way rather than the old Python 2 way. I'd also guess that it's unlikely to get fixed, even if it is considered to be a bug.</p>