show/hide this revision's text 3 Moving my own answer from the question to an answer.

In Python 2.6 (and earlier) the hex() and oct() built-in functions can be overloaded in a class by defining __hex__ and __oct__ special functions. However there is not a __bin__ special function for overloading the behaviour of Python 2.6's new bin() built-in function.

I want to know if there is any way of flexibly overloading bin(), and if not I was wondering why the inconsistent interface?

I do know that the __index__ special function can be used, but this isn't flexible as it can only return an integer. My particular use case is from the bitstring module, where leading zero bits are considered significant:

>>> a = BitString(length=12)       # Twelve zero bits
>>> hex(a)
'0x000'
>>> oct(a)
'0o0000'
>>> bin(a)
'0b0' <------ I want it to output '0b000000000000'

I suspect that there's no way of achieving this, but I thought it wouldn't hurt to ask!

Update:

I think the short answer is 'No, bin() can't be overloaded like oct() and hex().'

As to why, I think the answer must lie with Python 3.0, which uses __index__ to overload hex(), oct() and bin(), and has removed __oct__ and __hex__ altogether. This is reasonable enough for most people, although it's a bit annoying for me.

So the Python 2.6 bin() 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.

My particular solution is going to be to remove support for hex() and oct() for the sake of consistency and rely on class properties instead. It would have had to change for Python 3 in any case.

show/hide this revision's text 2 Added possible answer.

In Python 2.6 (and earlier) the hex() and oct() built-in functions can be overloaded in a class by defining __hex__ and __oct__ special functions. However there is not a __bin__ special function for overloading the behaviour of Python 2.6's new bin() built-in function.

I want to know if there is any way of flexibly overloading bin(), and if not I was wondering why the inconsistent interface?

I do know that the __index__ special function can be used, but this isn't flexible as it can only return an integer. My particular use case is from the bitstring module, where leading zero bits are considered significant:

>>> a = BitString(length=12)       # Twelve zero bits
>>> hex(a)
'0x000'
>>> oct(a)
'0o0000'
>>> bin(a)
'0b0' <------ I want it to output '0b000000000000'

I suspect that there's no way of achieving this, but I thought it wouldn't hurt to ask!

Update:

I think the short answer is 'No, bin() can't be overloaded like oct() and hex().'

As to why, I think the answer must lie with Python 3.0, which uses __index__ to overload hex(), oct() and bin(), and has removed __oct__ and __hex__ altogether. This is reasonable enough for most people, although it's a bit annoying for me.

So the Python 2.6 bin() 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.

My particular solution is going to be to remove support for hex() and oct() for the sake of consistency and rely on class properties instead. It would have had to change for Python 3 in any case.

show/hide this revision's text 1

Can bin() be overloaded like oct() and hex() in Python 2.6?

In Python 2.6 (and earlier) the hex() and oct() built-in functions can be overloaded in a class by defining __hex__ and __oct__ special functions. However there is not a __bin__ special function for overloading the behaviour of Python 2.6's new bin() built-in function.

I want to know if there is any way of flexibly overloading bin(), and if not I was wondering why the inconsistent interface?

I do know that the __index__ special function can be used, but this isn't flexible as it can only return an integer. My particular use case is from the bitstring module, where leading zero bits are considered significant:

>>> a = BitString(length=12)       # Twelve zero bits
>>> hex(a)
'0x000'
>>> oct(a)
'0o0000'
>>> bin(a)
'0b0' <------ I want it to output '0b000000000000'

I suspect that there's no way of achieving this, but I thought it wouldn't hurt to ask!