Oh i see, thanks for explaining Curt. I should have dug a little deeper
myself, but usually its me doing something stupid and not a bug. I assumed
it was my fault =) I'll open a ticket.
On 29 December 2011 16:15, Curt Hagenlocher wrote:
> This looks like a bug in IronPython when deriving a class
This looks like a bug in IronPython when deriving a class from int. Here's
a simple repro; file a bug!
In IronPython 2.7.1,
>>> class Integer(int):
... def __init__(self, value):
... int.__init__(value)
...
>>> Integer(10)
10
>>> Integer('10')
Traceback (most recent call last):
File