Hi all,

It's us again!
With this object:
from System.IO import MemoryStream

class MockStream(MemoryStream):
    def __init__(self):
        MemoryStream.__init__(self)
        self.closed = False

    def Close(self):
        print 'Into close'
        MemoryStream.Close(self)
        print 'Past close'
        self.closed = True

IronPython 1.1:
>>> import mockstream
>>> m = mockstream.MockStream()
>>> m.Close()
Into close
Past close
>>>

IronPython 2.0 latest code drop:
>>> import mockstream
>>> m = mockstream.MockStream()
>>> m.Close()
Into close
....
repeated to StackOverflowException

We'll raise this one and the issue we reported earlier as soon as codeplex
starts behaving itself again.

Thanks
Glenn & Michael
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to