Re: [Ironpython-users] PyPDF error

2011-12-29 Thread Chris
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

Re: [Ironpython-users] PyPDF error

2011-12-29 Thread Curt Hagenlocher
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